rust/crates/ide_db/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2020-02-06 12:43:56 +01:00
[package]
2020-08-13 16:39:16 +02:00
name = "ide_db"
version = "0.0.0"
description = "TBD"
2020-07-14 10:57:26 +09:00
license = "MIT OR Apache-2.0"
2021-10-21 17:49:28 +02:00
edition = "2021"
2021-12-16 01:49:48 +05:00
rust-version = "1.57"
2020-02-06 12:43:56 +01:00
[lib]
doctest = false
[dependencies]
2021-06-12 23:39:57 +03:00
cov-mark = "2.0.0-pre.1"
2021-08-15 20:46:13 +08:00
tracing = "0.1"
2020-10-24 17:10:27 +03:00
rayon = "1.5.0"
2020-03-10 14:55:23 +01:00
fst = { version = "0.4", default-features = false }
2020-02-18 15:57:41 +02:00
rustc-hash = "1.1.0"
2020-03-04 12:14:48 +01:00
once_cell = "1.3.1"
2020-11-28 16:30:39 +02:00
either = "1.6.1"
2020-12-30 10:39:50 -05:00
itertools = "0.10.0"
2021-09-23 15:37:52 +02:00
arrayvec = "0.7"
indexmap = "1.7"
2020-02-06 12:43:56 +01:00
2020-08-24 10:25:19 +02:00
stdx = { path = "../stdx", version = "0.0.0" }
parser = { path = "../parser", version = "0.0.0" }
2020-08-24 10:25:19 +02:00
syntax = { path = "../syntax", version = "0.0.0" }
text_edit = { path = "../text_edit", version = "0.0.0" }
base_db = { path = "../base_db", version = "0.0.0" }
profile = { path = "../profile", version = "0.0.0" }
2020-08-13 17:42:52 +02:00
# ide should depend only on the top-level `hir` package. if you need
2020-02-06 12:43:56 +01:00
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
2020-08-24 10:25:19 +02:00
hir = { path = "../hir", version = "0.0.0" }
2021-07-10 21:49:17 +01:00
limit = { path = "../limit", version = "0.0.0" }
2020-10-24 11:07:10 +03:00
[dev-dependencies]
2021-03-09 22:30:58 +03:00
test_utils = { path = "../test_utils" }
2021-10-12 08:59:39 +02:00
sourcegen = { path = "../sourcegen" }
xshell = "0.1"
2021-10-09 17:17:16 +03:00
expect-test = "1.2.0-pre.1"