Skip to content

Commit dd58df8

Browse files
committed
move core tokio feature flags to root
1 parent b64a950 commit dd58df8

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ stacker = "0.1.20"
126126
strum = "0.27.2"
127127
tempfile = "3.18"
128128
thrift = "0.17.0"
129-
tokio = { version = "1.47", default-features = false }
129+
tokio = { version = "1.47", default-features = false, features = ["sync", "rt-multi-thread"] }
130130
toml = "0.8"
131131
tracing = "0.1.41"
132132
tracing-subscriber = "0.3.20"

crates/catalog/rest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ reqwest = { workspace = true }
3838
serde = { workspace = true }
3939
serde_derive = { workspace = true }
4040
serde_json = { workspace = true }
41-
tokio = { workspace = true, features = ["sync"] }
41+
tokio = { workspace = true }
4242
typed-builder = { workspace = true }
4343
uuid = { workspace = true, features = ["v4"] }
4444

crates/iceberg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ serde_json = { workspace = true }
7474
serde_repr = { workspace = true }
7575
serde_with = { workspace = true }
7676
strum = { workspace = true, features = ["derive"] }
77-
tokio = { workspace = true, optional = false, features = ["sync", "rt-multi-thread"] }
77+
tokio = { workspace = true, optional = false }
7878
typed-builder = { workspace = true }
7979
typetag = { workspace = true }
8080
url = { workspace = true }

crates/sqllogictest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ sqllogictest = { workspace = true }
3939
toml = { workspace = true }
4040
serde = { workspace = true }
4141
tracing = { workspace = true }
42-
tokio = { workspace = true, features = ["rt-multi-thread"] }
42+
tokio = { workspace = true }
4343

4444
[dev-dependencies]
4545
libtest-mimic = { workspace = true }

crates/storage/opendal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ futures = { workspace = true }
5555
async-trait = { workspace = true }
5656
iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
5757
reqwest = { workspace = true }
58-
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
58+
tokio = { workspace = true, features = ["macros"] }

0 commit comments

Comments
 (0)