From a87a8719138a9ef2ccc315e0f8f64e71d0b02083 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Sat, 8 Jul 2023 21:42:32 +0200 Subject: [PATCH] Bump webpki-roots to v0.24 (#2597) --- Cargo.lock | 12 ++++++------ sqlx-core/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3185b261..623ca400 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2553,9 +2553,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.1" +version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" +checksum = "b19faa85ecb5197342b54f987b142fb3e30d0c90da40f80ef4fa9a726e6676ed" dependencies = [ "ring", "rustls-webpki", @@ -2573,9 +2573,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.100.1" +version = "0.101.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" +checksum = "15f36a6828982f422756984e47912a7a51dcbc2a197aa791158f8ca61cd8204e" dependencies = [ "ring", "untrusted", @@ -3886,9 +3886,9 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa54963694b65584e170cf5dc46aeb4dcaa5584e652ff5f3952e56d66aff0125" +checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888" dependencies = [ "rustls-webpki", ] diff --git a/sqlx-core/Cargo.toml b/sqlx-core/Cargo.toml index fcb3e1fa..9f5f554d 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -38,7 +38,7 @@ native-tls = { version = "0.2.10", optional = true } rustls = { version = "0.21", default-features = false, features = ["dangerous_configuration", "tls12"], optional = true } rustls-pemfile = { version = "1.0", optional = true } -webpki-roots = { version = "0.23", optional = true } +webpki-roots = { version = "0.24", optional = true } # Type Integrations bit-vec = { workspace = true, optional = true }