@@ -27,7 +27,7 @@ rust-version = "1.63.0"
27
27
default = [" smallvec" , " fmt" , " ansi" , " tracing-log" , " std" ]
28
28
alloc = [" tracing-core/alloc" , " portable-atomic-util?/alloc" ]
29
29
std = [" alloc" , " tracing-core/std" ]
30
- env-filter = [" matchers" , " once_cell" , " tracing" , " std" , " thread_local" ]
30
+ env-filter = [" matchers" , " once_cell" , " tracing" , " std" , " thread_local" , " dep:regex-automata " ]
31
31
fmt = [" registry" , " std" ]
32
32
ansi = [" fmt" , " nu-ansi-term" ]
33
33
registry = [" sharded-slab" , " thread_local" , " std" ]
@@ -47,7 +47,9 @@ tracing-core = { path = "../tracing-core", version = "0.2", default-features = f
47
47
48
48
# only required by the `env-filter` feature
49
49
tracing = { optional = true , path = " ../tracing" , version = " 0.2" , default-features = false }
50
- matchers = { optional = true , version = " 0.1.0" }
50
+ matchers = { optional = true , version = " 0.2.0" }
51
+ # required to have matchers::BuildError implement std::error::Error
52
+ regex-automata = { optional = true , version = " 0.4" , default-features = false , features = [" std" ] }
51
53
smallvec = { optional = true , version = " 1.9.0" }
52
54
once_cell = { optional = true , version = " 1.13.0" }
53
55
0 commit comments