You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cargo.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ thiserror = "1.0.59"
98
98
time = { version = "0.3.36", features = ["parsing", "formatting", "serde"] }
99
99
toml = "0.8.14"
100
100
toml_edit = { version = "0.22.14", features = ["serde"] }
101
-
tracing = "0.1.40"# be compatible with rustc_log: https://github.com/rust-lang/rust/blob/e51e98dde6a/compiler/rustc_log/Cargo.toml#L9
101
+
tracing = { version = "0.1.40", default-features = false, features = ["std"] }# be compatible with rustc_log: https://github.com/rust-lang/rust/blob/e51e98dde6a/compiler/rustc_log/Cargo.toml#L9
102
102
tracing-chrome = "0.7.2"
103
103
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
104
104
unicase = "2.7.0"
@@ -197,7 +197,7 @@ tempfile.workspace = true
197
197
time.workspace = true
198
198
toml.workspace = true
199
199
toml_edit.workspace = true
200
-
tracing.workspace = true
200
+
tracing = { workspace = true, features = ["attributes"] }
0 commit comments