From 4f182bcf5248362b670454e985361f9b6a1e0395 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Thu, 4 Jan 2024 00:30:29 +0000 Subject: [PATCH] Update Rust crate serde_json to 1.0.110 --- 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 dd2dce5..8ed2c0c 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1808,9 +1808,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.105" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" +checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257" dependencies = [ "itoa", "ryu", diff --git a/rust/sea_battle_backend/Cargo.toml b/rust/sea_battle_backend/Cargo.toml index 0e7aaa3..de3d128 100644 --- a/rust/sea_battle_backend/Cargo.toml +++ b/rust/sea_battle_backend/Cargo.toml @@ -16,7 +16,7 @@ clap = { version = "4.4.12", features = ["derive"] } log = "0.4.20" env_logger = "0.10.1" serde = { version = "1.0.194", features = ["derive"] } -serde_json = "1.0.105" +serde_json = "1.0.110" actix-web = "4.4.1" actix-cors = "0.6.5" actix = "0.13.1" diff --git a/rust/sea_battle_cli_player/Cargo.toml b/rust/sea_battle_cli_player/Cargo.toml index 26751a8..b271896 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.20.1", features = ["__rustls-tls", "rustls-tls-native-roots"] } serde_urlencoded = "0.7.1" futures = "0.3.30" -serde_json = "1.0.105" +serde_json = "1.0.110" hostname = "0.3.1" rustls = "0.21.9" hyper-rustls = { version = "0.24.2", features = ["rustls-native-certs"] }