about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/Cargo.nix1
-rw-r--r--tvix/cli/Cargo.toml2
2 files changed, 2 insertions, 1 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix
index 07be275e56..130a89a1ae 100644
--- a/tvix/Cargo.nix
+++ b/tvix/Cargo.nix
@@ -8473,6 +8473,7 @@ rec {
           {
             name = "tvix-store";
             packageId = "tvix-store";
+            usesDefaultFeatures = false;
           }
           {
             name = "wu-manber";
diff --git a/tvix/cli/Cargo.toml b/tvix/cli/Cargo.toml
index 577ee8bb9e..94b010cc1e 100644
--- a/tvix/cli/Cargo.toml
+++ b/tvix/cli/Cargo.toml
@@ -10,7 +10,7 @@ path = "src/main.rs"
 [dependencies]
 nix-compat = { path = "../nix-compat" }
 tvix-castore = { path = "../castore" }
-tvix-store = { path = "../store", features = []}
+tvix-store = { path = "../store", default-features = false, features = []}
 tvix-eval = { path = "../eval" }
 bytes = "1.4.0"
 clap = { version = "4.0", features = ["derive", "env"] }