diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index 32712b71..7e24c154 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -26,6 +26,7 @@ hyper-native-tls = ["hyper", "hyper-tls"] hyper-rustls = ["hyper", "hyper-rustls-crate"] isahc = ["isahc-crate", "futures-lite"] reqwest-native-tls = ["reqwest", "reqwest/native-tls"] +reqwest-native-tls-alpn = ["reqwest", "reqwest/native-tls-alpn"] reqwest-native-tls-vendored = ["reqwest", "reqwest/native-tls-vendored"] reqwest-rustls-manual-roots = ["reqwest", "reqwest/rustls-tls-manual-roots"] reqwest-rustls-webpki-roots = ["reqwest", "reqwest/rustls-tls-webpki-roots"] @@ -43,7 +44,7 @@ hyper = { version = "0.14.2", optional = true, features = ["client", "http1", "h hyper-rustls-crate = { package = "hyper-rustls", version = "0.22.1", optional = true, default-features = false } hyper-tls = { version = "0.5.0", optional = true } isahc-crate = { package = "isahc", version = "1.3.1", optional = true } -reqwest = { version = "0.11.3", optional = true, default-features = false } +reqwest = { version = "0.11.4", optional = true, default-features = false } ruma-api = { version = "0.17.1", path = "../ruma-api" } ruma-client-api = { version = "0.11.0", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-common = { version = "0.5.4", path = "../ruma-common" }