about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/Cargo.nix6
-rw-r--r--tvix/Cargo.toml4
-rw-r--r--tvix/nix-compat/Cargo.toml2
3 files changed, 4 insertions, 8 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix
index 4cb07f1a13e0..5671624ceceb 100644
--- a/tvix/Cargo.nix
+++ b/tvix/Cargo.nix
@@ -6627,7 +6627,6 @@ rec {
           {
             name = "futures";
             packageId = "futures";
-            usesDefaultFeatures = false;
           }
           {
             name = "itertools";
@@ -7043,8 +7042,6 @@ rec {
           {
             name = "futures";
             packageId = "futures";
-            usesDefaultFeatures = false;
-            features = [ "executor" ];
           }
           {
             name = "hex-literal";
@@ -14790,7 +14787,6 @@ rec {
           {
             name = "futures";
             packageId = "futures";
-            usesDefaultFeatures = false;
           }
           {
             name = "hyper-util";
@@ -15346,7 +15342,6 @@ rec {
           {
             name = "futures";
             packageId = "futures";
-            usesDefaultFeatures = false;
           }
           {
             name = "magic";
@@ -15576,7 +15571,6 @@ rec {
           {
             name = "futures";
             packageId = "futures";
-            usesDefaultFeatures = false;
           }
           {
             name = "hyper-util";
diff --git a/tvix/Cargo.toml b/tvix/Cargo.toml
index 556a2719c030..7387bf2424f2 100644
--- a/tvix/Cargo.toml
+++ b/tvix/Cargo.toml
@@ -46,6 +46,7 @@ async-process = "2.2.4"
 async-stream = "0.3.5"
 async-tempfile = "0.4.0"
 axum = "0.7.5"
+# https://github.com/liufuyang/bigtable_rs/pull/86
 bigtable_rs = { git = "https://github.com/liufuyang/bigtable_rs", rev = "1818355a5373a5bc2c84287e3a4e3807154ac8ef" }
 bitflags = "2.6.0"
 blake3 = "1.5.4"
@@ -66,7 +67,7 @@ erased-serde = "0.4.5"
 expect-test = "1.5.0"
 fastcdc = "3.1.0"
 fuse-backend-rs = "0.11.0"
-futures = { version = "0.3.30", default-features = false }
+futures = "0.3.30"
 genawaiter = { version = "0.99.1", default-features = false }
 glob = "0.3.1"
 hex-literal = "0.4.1"
@@ -155,6 +156,7 @@ vm-memory = "0.10"
 vmm-sys-util = "0.11"
 vu128 = "1.1.0"
 walkdir = "2.5.0"
+# https://github.com/jneem/wu-manber/pull/1
 wu-manber = { git = "https://github.com/tvlfyi/wu-manber.git" }
 xattr = "1.3.1"
 zstd = "0.13.2"
diff --git a/tvix/nix-compat/Cargo.toml b/tvix/nix-compat/Cargo.toml
index ac56bb59cab2..58137e4de2e1 100644
--- a/tvix/nix-compat/Cargo.toml
+++ b/tvix/nix-compat/Cargo.toml
@@ -39,7 +39,7 @@ optional = true
 
 [dev-dependencies]
 criterion = { workspace = true, features = ["html_reports"] }
-futures = { workspace = true, features = ["executor"] }
+futures = { workspace = true }
 hex-literal = { workspace = true }
 lazy_static = { workspace = true }
 mimalloc = { workspace = true }