Skip to content

Commit feefadd

Browse files
committed
added required tokio features
1 parent fb1c71a commit feefadd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ object_store = { version = "0.12", optional = true }
2020
# object_store which uses reqwest.
2121
reqwest = { version = "0.12", default-features = false, optional = true }
2222
thiserror = "1"
23-
tokio = { version = "1.43.0", optional = true }
23+
tokio = { version = "1.43.0", optional = true, features = ["fs", "io-util"] }
2424
weezl = "0.1.0"
2525

2626
[dev-dependencies]
2727
tiff = "0.9.1"
2828
tokio = { version = "1.9", features = ["macros", "fs", "rt-multi-thread", "io-util"] }
2929

3030
[features]
31-
default = ["object_store", "reqwest", "tokio"]
31+
default = ["object_store", "reqwest"]
3232
tokio = ["dep:tokio"]
3333
reqwest = ["dep:reqwest"]
3434
object_store = ["dep:object_store"]

0 commit comments

Comments
 (0)