diff --git a/Cargo.lock b/Cargo.lock index ce11098..52f67af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1136,7 +1136,7 @@ dependencies = [ "rustls-pki-types", "tokio", "tokio-rustls", - "webpki-roots 0.26.11", + "webpki-roots", "zerocopy", "zstd", ] @@ -2451,15 +2451,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "webpki-roots" -version = "0.26.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" -dependencies = [ - "webpki-roots 1.0.6", -] - [[package]] name = "webpki-roots" version = "1.0.6" diff --git a/lnc-network/Cargo.toml b/lnc-network/Cargo.toml index e00851d..8f1dd54 100644 --- a/lnc-network/Cargo.toml +++ b/lnc-network/Cargo.toml @@ -23,7 +23,7 @@ zerocopy = { workspace = true } tokio-rustls = { version = "0.26", default-features = false, features = ["ring"], optional = true } rustls = { version = "0.23", default-features = false, features = ["ring", "std"], optional = true } rustls-pki-types = { version = "1.14", optional = true } -webpki-roots = { version = "0.26", optional = true } +webpki-roots = { version = "1.0", optional = true } # Compression support (optional features) lz4_flex = { version = "0.13", optional = true }