Skip to content

Commit

Permalink
chore: make tokio-util optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Jul 16, 2024
1 parent 9dcb157 commit b0f18dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ resolver = "2"
version = "0.1.0"

[features]
tokio = ["dep:tokio"]
tokio = ["dep:tokio", "dep:tokio-util"]

[dependencies]
arrow = "52"
async-lock = "3"
crossbeam-skiplist = "0.1"
futures-core = "0.3"
futures-channel = "0.3"
futures-core = "0.3"
futures-executor = "0.3"
futures-io = "0.3"
futures-util = "0.3"
Expand All @@ -21,7 +21,7 @@ parquet = { version = "52", features = ["async"] }
pin-project-lite = "0.2"
thiserror = "1"
tokio = { version = "1", optional = true }
tokio-util = { version = "0.7", features = ["compat"] }
tokio-util = { version = "0.7", features = ["compat"], optional = true }
tracing = "0.1"
ulid = "1"

Expand Down

0 comments on commit b0f18dc

Please sign in to comment.