Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-db/Cargo.toml')
| -rw-r--r-- | crates/ide-db/Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml index b714816018..fca06b69d1 100644 --- a/crates/ide-db/Cargo.toml +++ b/crates/ide-db/Cargo.toml @@ -15,14 +15,13 @@ 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 either.workspace = true itertools.workspace = true arrayvec.workspace = true -indexmap.workspace = true memchr = "2.7.5" salsa.workspace = true salsa-macros.workspace = true @@ -53,5 +52,9 @@ line-index.workspace = true [dev-dependencies] expect-test = "1.5.1" +[features] +default = [] +in-rust-tree = [] + [lints] workspace = true |