1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Index: ruff/Cargo.toml
===================================================================
--- ruff.orig/Cargo.toml
+++ ruff/Cargo.toml
@@ -50,7 +50,7 @@ thiserror = { version = "1" }
toml = { version = "0.8" }
tracing = "0.1.37"
tracing-indicatif = "0.3.4"
-tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
+tracing-subscriber = { version = "0.3.17" }
unicode-ident = "1.0"
unicode-width = "0.1"
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }
Index: ruff/crates/ruff_dev/Cargo.toml
===================================================================
--- ruff.orig/crates/ruff_dev/Cargo.toml
+++ ruff/crates/ruff_dev/Cargo.toml
@@ -45,7 +45,7 @@ tempfile = "3.6.0"
toml = { workspace = true, features = ["parse"] }
tracing = { workspace = true }
tracing-indicatif = { workspace = true }
-tracing-subscriber = { workspace = true, features = ["env-filter"] }
+tracing-subscriber = { workspace = true }
imara-diff = "0.1.5"
[features]
Index: ruff/crates/ruff_shrinking/Cargo.toml
===================================================================
--- ruff.orig/crates/ruff_shrinking/Cargo.toml
+++ ruff/crates/ruff_shrinking/Cargo.toml
@@ -15,4 +15,4 @@ ruff_python_parser = { path = "../ruff_p
ruff_text_size = { path = "../ruff_text_size" }
shlex = "1"
tracing = { workspace = true }
-tracing-subscriber = { workspace = true, features = ["env-filter"] }
+tracing-subscriber = { workspace = true }
|