diff --git a/Cargo.lock b/Cargo.lock index c188cf091b..c0e2647413 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -689,17 +689,27 @@ dependencies = [ "cfg-if", ] +[[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.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" dependencies = [ + "anstream", + "anstyle", + "env_filter", "humantime", - "is-terminal", "log", - "regex", - "termcolor", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 2c38b706ea..46078d4aac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ clap = { version = "4.5", features = ["derive"] } cxx = "1.0.126" envsubst = "0.2.1" either = "1.13.0" -env_logger = "0.10.2" +env_logger = "0.11.2" fail = { version = "0.5", features = ["failpoints"] } fn-error-context = "0.2.0" futures = "0.3.30"