Skip to content

Commit 5d1ec04

Browse files
authored
chore: loosen tracing-subscriber bounds (#2033)
1 parent 9dd6fd2 commit 5d1ec04

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,11 @@ minijinja = { version = "2.12.0", features = [
120120
"unstable_machinery",
121121
"custom_syntax",
122122
] }
123-
tracing-subscriber = { version = "0.3.20", features = [
123+
# Ansi colored logging using tracing subscriber is broken since 0.3.20. Rattler-build doesnt really
124+
# care about this because it uses a custom formatter. However, downstream packages might care,
125+
# therefor we explicitly loosen the bounds on tracing-subscriber.
126+
# See: https://github.com/tokio-rs/tracing/issues/3378
127+
tracing-subscriber = { version = "0.3", features = [
124128
"env-filter",
125129
"fmt",
126130
"ansi",

0 commit comments

Comments
 (0)