rust-analyzer/crates/ide_db/Cargo.toml

31 lines
705 B
TOML
Raw Normal View History

2020-02-06 11:43:56 +00:00
[package]
2020-08-13 14:39:16 +00:00
name = "ide_db"
version = "0.0.0"
2020-07-14 01:57:26 +00:00
license = "MIT OR Apache-2.0"
2020-08-13 14:39:16 +00:00
authors = ["rust-analyzer developers"]
edition = "2018"
2020-02-06 11:43:56 +00:00
[lib]
doctest = false
[features]
wasm = []
[dependencies]
2020-02-18 13:57:41 +00:00
log = "0.4.8"
rayon = "1.3.0"
2020-03-10 13:55:23 +00:00
fst = { version = "0.4", default-features = false }
2020-02-18 13:57:41 +00:00
rustc-hash = "1.1.0"
2020-03-04 11:14:48 +00:00
once_cell = "1.3.1"
2020-03-23 11:34:56 +00:00
either = "1.5.3"
2020-02-06 11:43:56 +00:00
stdx = { path = "../stdx" }
2020-08-12 16:26:51 +00:00
syntax = { path = "../syntax" }
2020-08-12 15:03:06 +00:00
text_edit = { path = "../text_edit" }
2020-08-13 14:25:38 +00:00
base_db = { path = "../base_db" }
2020-08-12 14:32:36 +00:00
profile = { path = "../profile" }
2020-03-04 10:38:55 +00:00
test_utils = { path = "../test_utils" }
2020-08-13 15:42:52 +00:00
# ide should depend only on the top-level `hir` package. if you need
2020-02-06 11:43:56 +00:00
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
2020-08-13 14:36:55 +00:00
hir = { path = "../hir" }