tokio-xmpp: Bump rustls-native-certs and webpki-roots
skip-changelog: This is just a dependency bump.
This commit is contained in:
parent
e70dd957f4
commit
a58fb7e2f9
2 changed files with 3 additions and 3 deletions
|
|
@ -17,8 +17,8 @@ futures = "0.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros", "io-util"] }
|
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros", "io-util"] }
|
||||||
tokio-stream = { version = "0.1", features = ["sync"] }
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
||||||
webpki-roots = { version = "0.26", optional = true }
|
webpki-roots = { version = "1", optional = true }
|
||||||
rustls-native-certs = { version = "0.7", optional = true }
|
rustls-native-certs = { version = "0.8", optional = true }
|
||||||
rxml = { version = "0.13.1", features = ["compact_str"] }
|
rxml = { version = "0.13.1", features = ["compact_str"] }
|
||||||
rand = "0.9"
|
rand = "0.9"
|
||||||
syntect = { version = "5", optional = true }
|
syntect = { version = "5", optional = true }
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@ where
|
||||||
|
|
||||||
#[cfg(feature = "rustls-native-certs")]
|
#[cfg(feature = "rustls-native-certs")]
|
||||||
{
|
{
|
||||||
root_store.add_parsable_certificates(rustls_native_certs::load_native_certs()?);
|
root_store.add_parsable_certificates(rustls_native_certs::load_native_certs().certs);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_mut, reason = "This config is mutable when using ktls")]
|
#[allow(unused_mut, reason = "This config is mutable when using ktls")]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue