diff options
Diffstat (limited to 'tvix/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index d1ffbf326470..e3f4be07e3c7 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -10214,6 +10214,13 @@ rec { crateName = "tvix-build"; version = "0.1.0"; edition = "2021"; + crateBin = [ + { + name = "tvix-build"; + path = "src/bin/tvix-build.rs"; + requiredFeatures = [ ]; + } + ]; # We can't filter paths with references in Nix 2.4 # See https://github.com/NixOS/nix/issues/5410 src = @@ -10226,6 +10233,11 @@ rec { packageId = "bytes"; } { + name = "clap"; + packageId = "clap"; + features = [ "derive" "env" ]; + } + { name = "itertools"; packageId = "itertools 0.12.0"; } @@ -10242,6 +10254,11 @@ rec { packageId = "tokio"; } { + name = "tokio-listener"; + packageId = "tokio-listener"; + features = [ "tonic010" ]; + } + { name = "tonic"; packageId = "tonic 0.10.2"; features = [ "tls" "tls-roots" ]; @@ -10256,6 +10273,11 @@ rec { packageId = "tracing"; } { + name = "tracing-subscriber"; + packageId = "tracing-subscriber"; + features = [ "json" ]; + } + { name = "tvix-castore"; packageId = "tvix-castore"; } |