diff --git a/Cargo.lock b/Cargo.lock index 90b49d12..3af17235 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,17 +313,27 @@ version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "304e6508efa593091e97a9abbc10f90aa7ca635b6d2784feff3c89d41dd12272" +[[package]] +name = "env_filter" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" +dependencies = [ + "log", + "regex", +] + [[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", - "regex", - "termcolor", ] [[package]] @@ -484,12 +494,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 = "hex" version = "0.4.3" @@ -624,17 +628,6 @@ dependencies = [ "unicode-normalization", ] -[[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" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index e5526e33..43585a2e 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "1.0.91" bytes = "1.8.0" clap = "4.5.20" confy = "0.5.1" -env_logger = "0.10.2" +env_logger = "0.11.5" futures = "0.3.31" futures-sink = "0.3.31" futures-util = "0.3.31" diff --git a/devtools/Cargo.toml b/devtools/Cargo.toml index 5eb41620..07559323 100644 --- a/devtools/Cargo.toml +++ b/devtools/Cargo.toml @@ -14,7 +14,7 @@ devices = ["minidsp/devices"] anyhow = "1.0.91" bimap = "0.6.3" clap = "4.5.20" -env_logger = "0.10.2" +env_logger = "0.11.5" futures = "0.3.31" futures-sink = "0.3.31" futures-util = "0.3.31" diff --git a/minidsp/Cargo.toml b/minidsp/Cargo.toml index 561df0e4..1dd20eec 100644 --- a/minidsp/Cargo.toml +++ b/minidsp/Cargo.toml @@ -16,7 +16,7 @@ atomic_refcell = "0.1.13" bimap = "0.6.3" bytes = "1.8.0" clap = { version = "4.5.20", features = ["derive", "env"] } -env_logger = "0.10.2" +env_logger = "0.11.5" futures = "0.3.31" futures-sink = "0.3.31" futures-util = "0.3.31"