Upgrade deps (#230)

This commit is contained in:
Nikolay Kim 2023-10-16 20:06:16 +06:00 committed by GitHub
parent 38cadcee92
commit fbd6a4f44d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 37 additions and 22 deletions

View file

@ -42,4 +42,4 @@ tls_rust = { version = "0.21", package = "rustls", optional = true }
ntex = { version = "0.7.0", features = ["openssl", "rustls", "tokio"] }
env_logger = "0.10"
rustls-pemfile = "1.0"
webpki-roots = "0.23"
webpki-roots = "0.25"

View file

@ -10,15 +10,13 @@ async fn main() -> io::Result<()> {
// rustls config
let mut cert_store = RootCertStore::empty();
cert_store.add_server_trust_anchors(webpki_roots::TLS_SERVER_ROOTS.0.iter().map(
|ta| {
OwnedTrustAnchor::from_subject_spki_name_constraints(
ta.subject,
ta.spki,
ta.name_constraints,
)
},
));
cert_store.add_trust_anchors(webpki_roots::TLS_SERVER_ROOTS.iter().map(|ta| {
OwnedTrustAnchor::from_subject_spki_name_constraints(
ta.subject,
ta.spki,
ta.name_constraints,
)
}));
let config = ClientConfig::builder()
.with_safe_defaults()
.with_root_certificates(cert_store)