From 221f43ea46c8e4ea487cd607117786c059fcaf5c Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Sat, 11 Nov 2023 00:31:52 +0000 Subject: [PATCH] Update Rust crate env_logger to 0.10.1 --- 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 0f0ca02..6808114 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -743,9 +743,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" +checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" dependencies = [ "humantime", "is-terminal", diff --git a/rust/sea_battle_backend/Cargo.toml b/rust/sea_battle_backend/Cargo.toml index 61a521a..c7ba56d 100644 --- a/rust/sea_battle_backend/Cargo.toml +++ b/rust/sea_battle_backend/Cargo.toml @@ -14,7 +14,7 @@ categories = [ "games" ] [dependencies] clap = { version = "4.4.0", features = ["derive"] } log = "0.4.20" -env_logger = "0.10.0" +env_logger = "0.10.1" serde = { version = "1.0.186", features = ["derive"] } serde_json = "1.0.105" actix-web = "4.4.0" diff --git a/rust/sea_battle_cli_player/Cargo.toml b/rust/sea_battle_cli_player/Cargo.toml index e10149a..6e05022 100644 --- a/rust/sea_battle_cli_player/Cargo.toml +++ b/rust/sea_battle_cli_player/Cargo.toml @@ -15,7 +15,7 @@ categories = [ "games" ] sea_battle_backend = { path = "../sea_battle_backend", version = "0.2.0" } clap = { version = "4.4.0", features = ["derive"] } log = "0.4.20" -env_logger = "0.10.0" +env_logger = "0.10.1" tui = "0.19.0" crossterm = "0.27.0" lazy_static = "1.4.0"