From 98475f2f1842334465f5c27da7bd5497f87f58f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 03:26:03 +0000 Subject: [PATCH] chore(deps): bump env_logger from 0.10.2 to 0.11.5 (#5) --- Cargo.lock | 46 +++++++++++++--------------------------- asport-client/Cargo.toml | 2 +- asport-server/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 33 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 97ccd08..b5d5fb2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -384,16 +384,26 @@ dependencies = [ "syn", ] +[[package]] +name = "env_filter" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" +dependencies = [ + "log", +] + [[package]] name = "env_logger" -version = "0.10.2" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" dependencies = [ + "anstream", + "anstyle", + "env_filter", "humantime", - "is-terminal", "log", - "termcolor", ] [[package]] @@ -492,12 +502,6 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" -[[package]] -name = "hermit-abi" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" - [[package]] name = "humantime" version = "2.1.0" @@ -514,17 +518,6 @@ dependencies = [ "hashbrown", ] -[[package]] -name = "is-terminal" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" -dependencies = [ - "hermit-abi 0.4.0", - "libc", - "windows-sys 0.52.0", -] - [[package]] name = "is_terminal_polyfill" version = "1.70.1" @@ -612,7 +605,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi", "libc", "wasi", "windows-sys 0.52.0", @@ -1140,15 +1133,6 @@ dependencies = [ "walkdir", ] -[[package]] -name = "termcolor" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" -dependencies = [ - "winapi-util", -] - [[package]] name = "thiserror" version = "1.0.63" diff --git a/asport-client/Cargo.toml b/asport-client/Cargo.toml index 2ed3b23..60c2705 100644 --- a/asport-client/Cargo.toml +++ b/asport-client/Cargo.toml @@ -17,7 +17,7 @@ bytes = { version = "1.7.1", default-features = false, features = ["std"] } clap = { version = "4.5.16", default-features = false, features = ["color", "derive", "error-context", "help", "std", "suggestions", "usage"] } config = { version = "0.14.0", default-features = false, features = ["async", "convert-case", "json", "json5", "ron", "toml", "yaml"] } crossbeam-utils = { version = "0.8.20", default-features = false, features = ["std"] } -env_logger = { version = "0.10.2", default-features = false, features = ["auto-color", "humantime"] } +env_logger = { version = "0.11.5", default-features = false, features = ["auto-color", "humantime"] } humantime = { version = "2.1.0", default-features = false } log = { version = "0.4.22", default-features = false, features = ["serde", "std"] } once_cell = { version = "1.19.0", default-features = false, features = ["parking_lot", "std"] } diff --git a/asport-server/Cargo.toml b/asport-server/Cargo.toml index 855d6ab..89d5336 100644 --- a/asport-server/Cargo.toml +++ b/asport-server/Cargo.toml @@ -18,7 +18,7 @@ bytes = { version = "1.7.1", default-features = false, features = ["std"] } clap = { version = "4.5.16", default-features = false, features = ["color", "derive", "error-context", "help", "std", "suggestions", "usage"] } config = { version = "0.14.0", default-features = false, features = ["async", "convert-case", "json", "json5", "ron", "toml", "yaml"] } crossbeam-utils = { version = "0.8.20", default-features = false, features = ["std"] } -env_logger = { version = "0.10.2", default-features = false, features = ["auto-color", "humantime"] } +env_logger = { version = "0.11.5", default-features = false, features = ["auto-color", "humantime"] } humantime = { version = "2.1.0", default-features = false } log = { version = "0.4.22", default-features = false, features = ["serde", "std"] } parking_lot = { version = "0.12.3", default-features = false, features = ["send_guard"] }