diff --git a/Cargo.lock b/Cargo.lock index e9d92774467..6014c10c408 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1371,7 +1371,6 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ "futures-core", "futures-sink", - "nanorand", "spin", ] @@ -2533,15 +2532,6 @@ dependencies = [ "version_check", ] -[[package]] -name = "nanorand" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" -dependencies = [ - "getrandom", -] - [[package]] name = "native-tls" version = "0.2.12" diff --git a/Cargo.toml b/Cargo.toml index 7f1a09b73f4..df589c838cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -99,7 +99,7 @@ enumset = "1.0.13" flate2 = "1.0.35" fnv = "1.0.7" futures = { version = "0.3", default-features = false, features = ["std"] } -flume = "0.11.1" +flume = { version = "0.11.1", default-features = false } globset = "0.4.15" hash32 = "0.3.1" hashbrown = "0.14.5" diff --git a/relay-threading/Cargo.toml b/relay-threading/Cargo.toml index 0dc237890b2..7e0038ab985 100644 --- a/relay-threading/Cargo.toml +++ b/relay-threading/Cargo.toml @@ -10,14 +10,14 @@ license-file = "../LICENSE.md" publish = false [dependencies] -flume = { workspace = true, default-features = false } -futures = { workspace = true, default-features = false } +flume = { workspace = true } +futures = { workspace = true } tokio = { workspace = true } pin-project-lite = { workspace = true } [dev-dependencies] criterion = { workspace = true, features = ["async_tokio"] } -futures = { workspace = true, default-features = false, features = ["executor"] } +futures = { workspace = true, features = ["executor"] } tokio = { workspace = true, features = ["rt", "rt-multi-thread", "time", "sync", "macros"] } [[bench]]