diff --git a/Cargo.lock b/Cargo.lock index bfb8c0e..f19f845 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -542,6 +542,12 @@ dependencies = [ "webpki 0.21.4", ] +[[package]] +name = "rustls-pki-types" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "048a63e5b3ac996d78d402940b5fa47973d2d080c6c6fffa1d0f19c4445310b7" + [[package]] name = "ryu" version = "1.0.16" @@ -903,11 +909,11 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "0.21.1" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940" +checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" dependencies = [ - "webpki 0.21.4", + "rustls-pki-types", ] [[package]] diff --git a/dns-transport/Cargo.toml b/dns-transport/Cargo.toml index ca5b109..56fafea 100644 --- a/dns-transport/Cargo.toml +++ b/dns-transport/Cargo.toml @@ -27,7 +27,7 @@ rustls = { version = "0.19", optional = true } webpki = { version = "0.22.4", optional = true } -webpki-roots = { version = "0.21.0", optional = true } +webpki-roots = { version = "0.26.1", optional = true } cfg-if = "1"