Skip to content

Commit

Permalink
feat: Use more permissive range for async crates
Browse files Browse the repository at this point in the history
  • Loading branch information
cdata committed Jul 13, 2023
1 parent bd7de77 commit 45ba6f8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ clap = { version = "4.2.1", features = ["cargo"] }
ctr = "0.9.2"
md-5 = "0.10.5"
memmap2 = "0.5.8"
tokio = { version = "1.29.1", features = ["io-util", "rt", "macros"] }
futures-test = { version = "0.3.28" }
tokio = { version = "1", features = ["io-util", "rt", "macros"] }
futures-test = { version = "0.3" }

[dependencies]
futures = { version = "0.3.28", optional = true }
tokio = { version = "1.29.1", features = ["io-util"], optional = true }
tokio-stream = { version = "0.1.14", optional = true }
async-stream = { version = "0.3.5", optional = true }
futures = { version = "0.3", optional = true }
tokio = { version = "1", features = ["io-util"], optional = true }
tokio-stream = { version = "0.1", optional = true }
async-stream = { version = "0.3", optional = true }

0 comments on commit 45ba6f8

Please sign in to comment.