Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/hir-def/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/hir-ty/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/hir/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/ide-assists/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/ide-db/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/parser/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/project-model/Cargo.toml | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml index a7f1e174dc..63223f8312 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -156,7 +156,7 @@ smol_str = "0.3.2" temp-dir = "0.1.16" text-size = "1.1.1" toml = "0.9.8" -tracing = "0.1.41" +tracing = { version = "0.1.41", default-features = false, features = ["std"] } tracing-tree = "0.4.0" tracing-subscriber = { version = "0.3.20", default-features = false, features = [ "registry", diff --git a/crates/hir-def/Cargo.toml b/crates/hir-def/Cargo.toml index abb4819a76..4add777b6b 100644 --- a/crates/hir-def/Cargo.toml +++ b/crates/hir-def/Cargo.toml @@ -23,7 +23,7 @@ indexmap.workspace = true itertools.workspace = true la-arena.workspace = true rustc-hash.workspace = true -tracing.workspace = true +tracing = { workspace = true, features = ["attributes"] } smallvec.workspace = true triomphe.workspace = true rustc_apfloat = "0.2.3" diff --git a/crates/hir-ty/Cargo.toml b/crates/hir-ty/Cargo.toml index 378a0f0382..902fcd9c2f 100644 --- a/crates/hir-ty/Cargo.toml +++ b/crates/hir-ty/Cargo.toml @@ -21,7 +21,7 @@ smallvec.workspace = true ena = "0.14.3" either.workspace = true oorandom = "11.1.5" -tracing.workspace = true +tracing = { workspace = true, features = ["attributes"] } rustc-hash.workspace = true scoped-tls = "1.0.1" la-arena.workspace = true diff --git a/crates/hir/Cargo.toml b/crates/hir/Cargo.toml index dfa3938432..a83997522d 100644 --- a/crates/hir/Cargo.toml +++ b/crates/hir/Cargo.toml @@ -18,7 +18,7 @@ either.workspace = true arrayvec.workspace = true itertools.workspace = true smallvec.workspace = true -tracing.workspace = true +tracing = { workspace = true, features = ["attributes"] } triomphe.workspace = true indexmap.workspace = true diff --git a/crates/ide-assists/Cargo.toml b/crates/ide-assists/Cargo.toml index 385b0e1eb7..dcccf13fb7 100644 --- a/crates/ide-assists/Cargo.toml +++ b/crates/ide-assists/Cargo.toml @@ -18,7 +18,7 @@ cov-mark = "2.0.0" itertools.workspace = true either.workspace = true smallvec.workspace = true -tracing.workspace = true +tracing = { workspace = true, features = ["attributes"] } # local deps stdx.workspace = true diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml index b714816018..ac28e323c6 100644 --- a/crates/ide-db/Cargo.toml +++ b/crates/ide-db/Cargo.toml @@ -15,7 +15,7 @@ doctest = false [dependencies] cov-mark = "2.0.0" crossbeam-channel.workspace = true -tracing.workspace = true +tracing = { workspace = true, features = ["attributes"] } rayon.workspace = true fst = { version = "0.4.7", default-features = false } rustc-hash.workspace = true diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 8384d5bec2..2bdf8d76fb 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -16,7 +16,7 @@ doctest = false drop_bomb = "0.1.5" ra-ap-rustc_lexer.workspace = true rustc-literal-escaper.workspace = true -tracing = { workspace = true, optional = true } +tracing.workspace = true edition.workspace = true winnow = { version = "0.7.13", default-features = false } @@ -27,7 +27,7 @@ expect-test = "1.5.1" stdx.workspace = true [features] -default = ["tracing"] +default = [] in-rust-tree = [] [lints] diff --git a/crates/project-model/Cargo.toml b/crates/project-model/Cargo.toml index ec44369fa9..7e0b1f75f7 100644 --- a/crates/project-model/Cargo.toml +++ b/crates/project-model/Cargo.toml @@ -22,7 +22,7 @@ serde.workspace = true serde_derive.workspace = true temp-dir.workspace = true toml.workspace = true -tracing.workspace = true +tracing = { workspace = true, features = ["attributes"] } triomphe.workspace = true la-arena.workspace = true itertools.workspace = true |