diff --git a/Cargo.lock b/Cargo.lock index 209cc0fd..ce1b1678 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -344,17 +344,27 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +[[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]] @@ -455,12 +465,6 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[package]] -name = "hermit-abi" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" - [[package]] name = "home" version = "0.5.5" @@ -525,17 +529,6 @@ dependencies = [ "serde", ] -[[package]] -name = "is-terminal" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" -dependencies = [ - "hermit-abi", - "rustix", - "windows-sys 0.48.0", -] - [[package]] name = "is_terminal_polyfill" version = "1.70.1" diff --git a/cargo-typify/Cargo.toml b/cargo-typify/Cargo.toml index 35f23bd1..3d27a14d 100644 --- a/cargo-typify/Cargo.toml +++ b/cargo-typify/Cargo.toml @@ -16,7 +16,7 @@ typify = { version = "0.2.0", path = "../typify" } clap = { version = "4.5.23", features = ["derive"] } color-eyre = "0.6" -env_logger = "0.10" +env_logger = "0.11" rustfmt-wrapper = "0.2.1" semver = "1.0.23" serde_json = "1.0.133" diff --git a/typify-impl/Cargo.toml b/typify-impl/Cargo.toml index 95796835..6edf0352 100644 --- a/typify-impl/Cargo.toml +++ b/typify-impl/Cargo.toml @@ -23,7 +23,7 @@ unicode-ident = "1.0.14" [dev-dependencies] -env_logger = "0.10.2" +env_logger = "0.11.5" expectorate = "1.1.0" paste = "1.0.15" rustfmt-wrapper = "0.2.1" diff --git a/typify/Cargo.toml b/typify/Cargo.toml index 04e1f2de..62889fe4 100644 --- a/typify/Cargo.toml +++ b/typify/Cargo.toml @@ -19,7 +19,7 @@ typify-impl = { version = "0.2.0", path = "../typify-impl" } [dev-dependencies] chrono = { version = "0.4.39", features = ["serde"] } -env_logger = "0.10.2" +env_logger = "0.11.5" expectorate = "1.1.0" glob = "0.3.1" quote = "1.0.37"