diff options
Diffstat (limited to 'tvix/nix_cli/Cargo.toml')
-rw-r--r-- | tvix/nix_cli/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tvix/nix_cli/Cargo.toml b/tvix/nix_cli/Cargo.toml new file mode 100644 index 000000000000..b1d1d339b45f --- /dev/null +++ b/tvix/nix_cli/Cargo.toml @@ -0,0 +1,14 @@ +[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 = "3.0.5" +[dependencies.tempfile] +version = "3.2.0" + +[[bin]] +name = "nix-store" |