From 99bcf6e5ac8ce0829a83d12f76b313d905c7548b Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Sun, 9 Jul 2023 00:20:42 +0000 Subject: [PATCH] Update Rust crate serde_json to 1.0.100 --- rust/Cargo.lock | 4 ++-- rust/sea_battle_backend/Cargo.toml | 2 +- rust/sea_battle_cli_player/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 59a2038..0ed9637 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1767,9 +1767,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.99" +version = "1.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" +checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" dependencies = [ "itoa", "ryu", diff --git a/rust/sea_battle_backend/Cargo.toml b/rust/sea_battle_backend/Cargo.toml index 6b4a84a..750131c 100644 --- a/rust/sea_battle_backend/Cargo.toml +++ b/rust/sea_battle_backend/Cargo.toml @@ -16,7 +16,7 @@ clap = { version = "4.3.11", features = ["derive"] } log = "0.4.19" env_logger = "0.10.0" serde = { version = "1.0.167", features = ["derive"] } -serde_json = "1.0.99" +serde_json = "1.0.100" actix-web = "4.1.0" actix-cors = "0.6.2" actix = "0.13.0" diff --git a/rust/sea_battle_cli_player/Cargo.toml b/rust/sea_battle_cli_player/Cargo.toml index 41d5601..96b00ea 100644 --- a/rust/sea_battle_cli_player/Cargo.toml +++ b/rust/sea_battle_cli_player/Cargo.toml @@ -27,7 +27,7 @@ textwrap = "0.16.0" tokio-tungstenite = { version = "0.19.0", features = ["__rustls-tls", "rustls-tls-native-roots"] } serde_urlencoded = "0.7.1" futures = "0.3.23" -serde_json = "1.0.99" +serde_json = "1.0.100" hostname = "0.3.1" rustls = "0.21.3" hyper-rustls = { version = "0.24.1", features = ["rustls-native-certs"] }