Skip to content

Commit f04d2dc

Browse files
Merge pull request #13 from TannerRogalsky/relax_deps
Relax minimum dependency versions
2 parents 465b2ef + bc588ed commit f04d2dc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ rustls-tls-webpki-roots = [
2929
__rustls-tls = ["dep:rustls"]
3030

3131
[dependencies]
32-
thiserror = "1.0"
33-
http = "1.1"
34-
httparse = "1.3"
32+
thiserror = "1"
33+
http = "1"
34+
httparse = "1"
3535
futures-util = { version = "0.3", default-features = false, features = [
3636
"sink",
3737
"std",
@@ -40,7 +40,7 @@ futures-util = { version = "0.3", default-features = false, features = [
4040

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

@@ -66,5 +66,5 @@ features = [
6666
assert-impl = "0.1"
6767

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

0 commit comments

Comments
 (0)