From 4734ed05b6ed82776c91c93fa0cf955c0f455831 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Fri, 30 Aug 2024 00:32:16 +0000 Subject: [PATCH] Update Rust crate rustls-native-certs to 0.8.0 --- rust/Cargo.lock | 17 +++++++++++++++-- rust/sea_battle_cli_player/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 9ea8b95..9dd99ed 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1749,6 +1749,19 @@ dependencies = [ "security-framework", ] +[[package]] +name = "rustls-native-certs" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" +dependencies = [ + "openssl-probe", + "rustls-pemfile", + "rustls-pki-types", + "schannel", + "security-framework", +] + [[package]] name = "rustls-pemfile" version = "2.0.0" @@ -1837,7 +1850,7 @@ dependencies = [ "num-traits", "reqwest", "rustls 0.22.2", - "rustls-native-certs", + "rustls-native-certs 0.8.0", "sea_battle_backend", "serde_json", "serde_urlencoded", @@ -2211,7 +2224,7 @@ dependencies = [ "futures-util", "log", "rustls 0.22.2", - "rustls-native-certs", + "rustls-native-certs 0.7.1", "rustls-pki-types", "tokio", "tokio-rustls 0.25.0", diff --git a/rust/sea_battle_cli_player/Cargo.toml b/rust/sea_battle_cli_player/Cargo.toml index c22a1a3..1274495 100644 --- a/rust/sea_battle_cli_player/Cargo.toml +++ b/rust/sea_battle_cli_player/Cargo.toml @@ -31,4 +31,4 @@ serde_json = "1.0.116" hostname = "0.4.0" rustls = "0.22.2" reqwest = { version = "0.12.4", features = ["json", "rustls-tls"], default-features = false } -rustls-native-certs = {version = "0.7.0"} +rustls-native-certs = {version = "0.8.0"}