]> git.proxmox.com Git - rustc.git/blame - src/tools/rust-analyzer/crates/ide-db/Cargo.toml
New upstream version 1.76.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / crates / ide-db / Cargo.toml
CommitLineData
064997fb
FG
1[package]
2name = "ide-db"
3version = "0.0.0"
4description = "TBD"
9ffffee4
FG
5
6authors.workspace = true
7edition.workspace = true
8license.workspace = true
9rust-version.workspace = true
064997fb
FG
10
11[lib]
12doctest = false
13
14[dependencies]
15cov-mark = "2.0.0-pre.1"
4b012472
FG
16tracing.workspace = true
17rayon.workspace = true
064997fb
FG
18fst = { version = "0.4.7", default-features = false }
19rustc-hash = "1.1.0"
9ffffee4 20once_cell = "1.17.0"
4b012472
FG
21either.workspace = true
22itertools.workspace = true
064997fb 23arrayvec = "0.7.2"
4b012472
FG
24indexmap.workspace = true
25memchr = "2.6.4"
fe692bf9
FG
26triomphe.workspace = true
27nohash-hasher.workspace = true
064997fb 28
9ffffee4
FG
29# local deps
30base-db.workspace = true
31limit.workspace = true
32parser.workspace = true
33profile.workspace = true
34stdx.workspace = true
35syntax.workspace = true
36text-edit.workspace = true
064997fb
FG
37# ide should depend only on the top-level `hir` package. if you need
38# something from some `hir-xxx` subpackage, reexport the API via `hir`.
9ffffee4 39hir.workspace = true
064997fb 40
fe692bf9
FG
41line-index.workspace = true
42
064997fb 43[dev-dependencies]
064997fb 44expect-test = "1.4.0"
9ffffee4 45oorandom = "11.1.3"
4b012472 46xshell.workspace = true
9ffffee4
FG
47
48# local deps
49test-utils.workspace = true
50sourcegen.workspace = true