feat: accept RUST_LOG env filter

This commit is contained in:
Kieran 2026-02-16 22:18:00 +00:00 committed by Chummy
parent 9e456336b2
commit b828873426
3 changed files with 20 additions and 5 deletions

13
Cargo.lock generated
View file

@ -2057,6 +2057,15 @@ dependencies = [
"hashify",
]
[[package]]
name = "matchers"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
dependencies = [
"regex-automata",
]
[[package]]
name = "matchit"
version = "0.8.4"
@ -3940,9 +3949,13 @@ version = "0.3.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex-automata",
"sharded-slab",
"thread_local",
"tracing",
"tracing-core",
]