Skip to content

Commit

Permalink
Disallow potentially insecure tokio versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha-tango-kilo committed Nov 11, 2023
1 parent ebf920c commit 3dbc003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ async-std = { version = "1", optional = true }
blocking = { version = "1.2", optional = true }
rayon = { version = "1", optional = true }
smol = { version = "1", optional = true }
tokio = { version = "1", features = ["rt", "fs"], optional = true }
tokio = { version = "1.23", features = ["rt", "fs"], optional = true }
threadpool = { version = "1.7", optional = true }

[dev-dependencies]
tempfile = "3"
# Have to include this so we can get Async{Read,Write}Ext through feature unification
tokio = { version = "1", features = ["io-util"] }
tokio = { version = "1.23", features = ["io-util"] }

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"

0 comments on commit 3dbc003

Please sign in to comment.