rust-analyzer/crates/ide-db/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
TOML
Raw Normal View History

2020-02-06 11:43:56 +00:00
[package]
2022-04-29 14:29:24 +00:00
name = "ide-db"
2020-08-13 14:39:16 +00:00
version = "0.0.0"
description = "TBD"
2020-07-14 01:57:26 +00:00
license = "MIT OR Apache-2.0"
2021-10-21 15:49:28 +00:00
edition = "2021"
rust-version = "1.65"
2020-02-06 11:43:56 +00:00
[lib]
doctest = false
[dependencies]
2021-06-12 20:39:57 +00:00
cov-mark = "2.0.0-pre.1"
2022-06-10 14:30:09 +00:00
tracing = "0.1.35"
rayon = "1.5.3"
2022-03-22 16:36:41 +00:00
fst = { version = "0.4.7", default-features = false }
2020-02-18 13:57:41 +00:00
rustc-hash = "1.1.0"
2022-10-02 17:04:47 +00:00
once_cell = "1.15.0"
2022-07-03 06:42:41 +00:00
either = "1.7.0"
itertools = "0.10.5"
2022-03-22 16:36:41 +00:00
arrayvec = "0.7.2"
2022-07-03 07:02:15 +00:00
indexmap = "1.9.1"
memchr = "2.5.0"
2020-02-06 11:43:56 +00:00
2020-08-24 08:25:19 +00:00
stdx = { path = "../stdx", version = "0.0.0" }
parser = { path = "../parser", version = "0.0.0" }
2020-08-24 08:25:19 +00:00
syntax = { path = "../syntax", version = "0.0.0" }
2022-04-29 14:29:24 +00:00
text-edit = { path = "../text-edit", version = "0.0.0" }
base-db = { path = "../base-db", version = "0.0.0" }
2020-08-24 08:25:19 +00:00
profile = { path = "../profile", version = "0.0.0" }
2020-08-13 15:42:52 +00:00
# ide should depend only on the top-level `hir` package. if you need
2022-04-29 14:29:24 +00:00
# something from some `hir-xxx` subpackage, reexport the API via `hir`.
2020-08-24 08:25:19 +00:00
hir = { path = "../hir", version = "0.0.0" }
2021-07-10 20:49:17 +00:00
limit = { path = "../limit", version = "0.0.0" }
2020-10-24 08:07:10 +00:00
[dev-dependencies]
2022-04-29 14:29:24 +00:00
test-utils = { path = "../test-utils" }
2021-10-12 06:59:39 +00:00
sourcegen = { path = "../sourcegen" }
2022-06-10 14:30:09 +00:00
xshell = "0.2.2"
expect-test = "1.4.0"