mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
955e609867
This doesn't get rid of the once_cell dependency, unfortunately, since we have dependencies that use it, but it's a nice to do cleanup. And when our deps will eventually get rid of once_cell we will get rid of it for free.
60 lines
1.2 KiB
TOML
60 lines
1.2 KiB
TOML
[package]
|
|
name = "hir-def"
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
description = "RPC Api for the `proc-macro-srv` crate of rust-analyzer."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
arrayvec.workspace = true
|
|
bitflags.workspace = true
|
|
cov-mark = "2.0.0-pre.1"
|
|
dashmap.workspace = true
|
|
drop_bomb = "0.1.5"
|
|
either.workspace = true
|
|
fst = { version = "0.4.7", default-features = false }
|
|
indexmap.workspace = true
|
|
itertools.workspace = true
|
|
la-arena.workspace = true
|
|
rustc-hash.workspace = true
|
|
tracing.workspace = true
|
|
smallvec.workspace = true
|
|
hashbrown.workspace = true
|
|
triomphe.workspace = true
|
|
rustc_apfloat = "0.2.0"
|
|
|
|
ra-ap-rustc_parse_format.workspace = true
|
|
ra-ap-rustc_abi.workspace = true
|
|
|
|
# local deps
|
|
stdx.workspace = true
|
|
intern.workspace = true
|
|
base-db.workspace = true
|
|
syntax.workspace = true
|
|
hir-expand.workspace = true
|
|
mbe.workspace = true
|
|
cfg.workspace = true
|
|
tt.workspace = true
|
|
limit.workspace = true
|
|
span.workspace = true
|
|
|
|
|
|
[dev-dependencies]
|
|
expect-test.workspace = true
|
|
|
|
# local deps
|
|
test-utils.workspace = true
|
|
test-fixture.workspace = true
|
|
syntax-bridge.workspace = true
|
|
[features]
|
|
in-rust-tree = ["hir-expand/in-rust-tree"]
|
|
|
|
[lints]
|
|
workspace = true
|