about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/Cargo.lock1
-rw-r--r--tvix/Cargo.nix7
-rw-r--r--tvix/store/Cargo.toml1
3 files changed, 2 insertions, 7 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock
index 9666780c2b..b82bbfd99c 100644
--- a/tvix/Cargo.lock
+++ b/tvix/Cargo.lock
@@ -4536,7 +4536,6 @@ dependencies = [
  "sha2",
  "sled",
  "tempfile",
- "test-case",
  "thiserror",
  "tokio",
  "tokio-listener",
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix
index 1145b82544..693b5de316 100644
--- a/tvix/Cargo.nix
+++ b/tvix/Cargo.nix
@@ -6809,11 +6809,12 @@ rec {
         ];
         features = {
           "async" = [ "tokio" ];
+          "default" = [ "async" "wire" ];
           "pin-project-lite" = [ "dep:pin-project-lite" ];
           "tokio" = [ "dep:tokio" ];
           "wire" = [ "tokio" "pin-project-lite" ];
         };
-        resolvedDefaultFeatures = [ "async" "pin-project-lite" "tokio" "wire" ];
+        resolvedDefaultFeatures = [ "async" "default" "pin-project-lite" "tokio" "wire" ];
       };
       "nom" = rec {
         crateName = "nom";
@@ -14674,10 +14675,6 @@ rec {
             packageId = "tempfile";
           }
           {
-            name = "test-case";
-            packageId = "test-case";
-          }
-          {
             name = "tokio-retry";
             packageId = "tokio-retry";
           }
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml
index a62d578370..b549eeb7f5 100644
--- a/tvix/store/Cargo.toml
+++ b/tvix/store/Cargo.toml
@@ -61,7 +61,6 @@ tonic-build = "0.11.0"
 async-process = "2.1.0"
 rstest = "0.19.0"
 rstest_reuse = "0.6.0"
-test-case = "3.3.1"
 tempfile = "3.3.0"
 tokio-retry = "0.3.0"