From 31443d21eed5986d8b2968951e3e38283008b892 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 11 Aug 2022 19:10:23 +0300 Subject: chore(tvix): move nix-store CLI scaffolding to subfolder For some reason a top-level Rust project ended up in this location, which is incompatible with the actual project structure that's being prepared for merge right now. Change-Id: I9d919ad72fc7e4e4d8cbb9899e7f8d90fa7ca87a Reviewed-on: https://cl.tvl.fyi/c/depot/+/6060 Tested-by: BuildkiteCI Reviewed-by: flokli Autosubmit: tazjin --- tvix/nix_cli/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tvix/nix_cli/Cargo.toml (limited to 'tvix/nix_cli/Cargo.toml') diff --git a/tvix/nix_cli/Cargo.toml b/tvix/nix_cli/Cargo.toml new file mode 100644 index 0000000000..b1d1d339b4 --- /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" -- cgit 1.4.1