Update `webpki-roots` to 0.26

This commit is contained in:
Constantin Nickel 2023-12-07 08:18:36 +01:00 committed by Sebastian Dröge
parent c25abd8bd7
commit b55f84ac18
2 changed files with 4 additions and 4 deletions

View File

@ -93,7 +93,7 @@ version = "0.6"
[dependencies.webpki-roots]
optional = true
version = "0.25"
version = "0.26"
[dependencies.gio]
optional = true

View File

@ -66,9 +66,9 @@ where
root_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,
ta.subject.as_ref(),
ta.subject_public_key_info.as_ref(),
ta.name_constraints.as_deref(),
)
},
));