Skip to content

Commit

Permalink
Require tokio 1.29
Browse files Browse the repository at this point in the history
We want a later version than 1.0 since earlier versions have various
bugs, and also dependency versions which are insufficient to rule out
bugs in lower crates.

Emprically, 1.30 requires a newer Rust than our MSRV.
Therefore, request 1.29.

Signed-off-by: Ian Jackson <[email protected]>
  • Loading branch information
ijackson committed Oct 24, 2023
1 parent 069891c commit f1445bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pathdiff = "0.2"
serde_derive = "1.0.8"
float-cmp = "0.9"
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util", "time"]}
tokio = { version = "1.29", features = ["rt-multi-thread", "macros", "fs", "io-util", "time"]}
warp = "=0.3.1"
futures = "0.3.15"
reqwest = "0.11.10"
Expand Down

0 comments on commit f1445bc

Please sign in to comment.