diff --git a/Cargo.toml b/Cargo.toml index bb219de..a9679fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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", @@ -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 } @@ -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"