From f11c6d610ce002774df714cf2c998989643dccfa Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 9 Dec 2023 13:14:16 +0200 Subject: chore(tvix/nix_cli): drop crate The only thing this was doing was invoking nix-store --add, which is not gonna help us populate the tvix-store at all (and we now have `tvix-store import`). This is also (rightfully) causing clippy warnings, because of some fields being unused. It's more of a skeleton, and rather than shelling out to Nix for some usecases, we might introduce a "compatible" Nix CLI frontend for a subset of commands. Drop this for now, to decrease the noise and confusion. Change-Id: I2fd399e9320260f08893b685561755af9c7c961c Reviewed-on: https://cl.tvl.fyi/c/depot/+/10226 Autosubmit: flokli Tested-by: BuildkiteCI Reviewed-by: tazjin --- tvix/nix_cli/Cargo.toml | 18 ------------------ 1 file changed, 18 deletions(-) delete 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 deleted file mode 100644 index f9de2b97706b..000000000000 --- a/tvix/nix_cli/Cargo.toml +++ /dev/null @@ -1,18 +0,0 @@ -[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 = [] -- cgit 1.4.1