diff options
Diffstat (limited to 'tvix/nix_cli/Cargo.toml')
-rw-r--r-- | tvix/nix_cli/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tvix/nix_cli/Cargo.toml b/tvix/nix_cli/Cargo.toml new file mode 100644 index 000000000000..f9de2b97706b --- /dev/null +++ b/tvix/nix_cli/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "nix-cli" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies.clap] +version = "4.0" + +[dependencies.tempfile] +version = "3.2.0" + +[[bin]] +name = "nix-store" + +[features] +integration_tests = [] |