Skip to content

Commit

Permalink
Relax minimum dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TannerRogalsky committed Dec 12, 2024
1 parent 465b2ef commit bc588ed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ rustls-tls-webpki-roots = [
__rustls-tls = ["dep:rustls"]

[dependencies]
thiserror = "1.0"
http = "1.1"
httparse = "1.3"
thiserror = "1"
http = "1"
httparse = "1"
futures-util = { version = "0.3", default-features = false, features = [
"sink",
"std",
Expand All @@ -40,7 +40,7 @@ futures-util = { version = "0.3", default-features = false, features = [

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio-tungstenite = "0.24"
tokio = { version = "1.36", default-features = false, features = ["net"] }
tokio = { version = "1", default-features = false, features = ["net"] }
native-tls = { version = "0.2", default-features = false, optional = true }
rustls = { version = "0.23", default-features = false, optional = true }

Expand All @@ -66,5 +66,5 @@ features = [
assert-impl = "0.1"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1.36", features = ["full"] }
tokio = { version = "1", features = ["full"] }
rand = "0.8"

0 comments on commit bc588ed

Please sign in to comment.