Skip to content

Commit f109f22

Browse files
committed
add tokio sync dependency
1 parent 12b0ebf commit f109f22

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ num_enum = "0.7.3"
1818
object_store = { version = "0.12", optional = true }
1919
reqwest = { version = "0.12", default-features = false, optional = true }
2020
thiserror = "1"
21-
tokio = { version = "1.43.0", optional = true, default-features = false, features = [
22-
"io-util",
23-
"sync",
24-
] }
21+
tokio = { version = "1.43.0", default-features = false, features = ["sync"] }
2522
weezl = "0.1.0"
2623

2724
[dev-dependencies]
@@ -37,7 +34,7 @@ tokio-test = "0.4.4"
3734

3835
[features]
3936
default = ["object_store", "reqwest"]
40-
tokio = ["dep:tokio"]
37+
tokio = ["tokio/io-util"]
4138
reqwest = ["dep:reqwest"]
4239
object_store = ["dep:object_store"]
4340

0 commit comments

Comments
 (0)