summaryrefslogtreecommitdiff
path: root/utils/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'utils/Cargo.toml')
-rw-r--r--utils/Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/utils/Cargo.toml b/utils/Cargo.toml
new file mode 100644
index 0000000..9e43816
--- /dev/null
+++ b/utils/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = "nixos-wsl-utils"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+anyhow = { version = "1.0.75", features = ["backtrace"] }
+nix = { version = "0.25.0", features = ["process"] }
+log = "0.4.20"
+kernlog = "0.3.1"
+clap = { version = "4.1.4", features = ["derive"] }
+
+[[bin]]
+name = "systemd-shim"
+path = "src/shim.rs"
+
+[[bin]]
+name = "split-path"
+path = "src/split_path.rs"