Skip to content

Commit

Permalink
Fix minversion tags in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Dec 2, 2023
1 parent a49a7c6 commit 8645740
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ tokio-util = { version = "0.7.10", default-features = false, features = ["rt"] }
bytes = "1.5.0"
http-body-util = "0.1.0"

futures-util = "0.3.16" # Required to fix minimal-versions
tower = "0.4.1" # Required to fix minimal-versions
futures-util = ">= 0.3.16" # Required to fix minimal-versions
tower = ">= 0.4.1" # Required to fix minimal-versions

# Warp example
warp = "0.3.6"
headers = "0.3.5" # Required to fix minimal-versions
serde_urlencoded = "0.7.1" # Required to fix minimal-versions
headers = ">= 0.3.5" # Required to fix minimal-versions
serde_urlencoded = ">= 0.7.1" # Required to fix minimal-versions

# For testing unix signals
[target.'cfg(unix)'.dev-dependencies]
Expand Down

0 comments on commit 8645740

Please sign in to comment.