gardesk/garchomp / 1ea8621

Browse files

add mlua and notify dependencies

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
1ea8621e1951ba15502e19cf720f58bd8ccca8be
Parents
edf0251
Tree
446a1b9

2 changed files

StatusFile+-
M Cargo.toml 4 0
M garchomp/Cargo.toml 2 0
Cargo.tomlmodified
@@ -40,5 +40,9 @@ anyhow = "1"
4040
 # Unix
4141
 nix = { version = "0.30", features = ["poll"] }
4242
 
43
+# Config
44
+mlua = { version = "0.10", features = ["lua54", "vendored"] }
45
+notify = "7"
46
+
4347
 # Internal
4448
 garchomp-ipc = { path = "garchomp-ipc" }
garchomp/Cargo.tomlmodified
@@ -21,4 +21,6 @@ tracing-subscriber = { workspace = true }
2121
 thiserror = { workspace = true }
2222
 anyhow = { workspace = true }
2323
 nix = { workspace = true }
24
+mlua = { workspace = true }
25
+notify = { workspace = true }
2426
 ctrlc = "3"