From 28b5a868d34048103ddbd5af4ba9bce6223fe263 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 15 May 2025 11:43:15 +0200 Subject: [PATCH] [ty] Enable 'ansi' feature to fix compile error (#18116) --- Cargo.toml | 2 ++ crates/ty/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 79b8164e39..08432d12f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -162,6 +162,8 @@ tracing-log = { version = "0.2.0" } tracing-subscriber = { version = "0.3.18", default-features = false, features = [ "env-filter", "fmt", + "ansi", + "smallvec" ] } tryfn = { version = "0.2.1" } typed-arena = { version = "2.0.2" } diff --git a/crates/ty/Cargo.toml b/crates/ty/Cargo.toml index f7fcae1212..cd287501fb 100644 --- a/crates/ty/Cargo.toml +++ b/crates/ty/Cargo.toml @@ -33,7 +33,7 @@ jiff = { workspace = true } rayon = { workspace = true } salsa = { workspace = true } tracing = { workspace = true, features = ["release_max_level_debug"] } -tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] } +tracing-subscriber = { workspace = true } tracing-flame = { workspace = true } wild = { workspace = true }