rust/crates/ide_db/Cargo.toml

36 lines
918 B
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 03:57:26 +02:00
license = "MIT OR Apache-2.0"
2020-08-13 16:39:16 +02:00
authors = ["rust-analyzer developers"]
edition = "2018"
2020-02-06 12:43:56 +01:00
[lib]
doctest = false
[features]
wasm = []
[dependencies]
2020-02-18 14:57:41 +01:00
log = "0.4.8"
2020-10-24 16:10:27 +02:00
rayon = "1.5.0"
2020-03-10 14:55:23 +01:00
fst = { version = "0.4", default-features = false }
2020-02-18 14:57:41 +01:00
rustc-hash = "1.1.0"
2020-03-04 12:14:48 +01:00
once_cell = "1.3.1"
2020-11-28 15:30:39 +01:00
either = "1.6.1"
itertools = "0.9.0"
2020-02-06 12:43:56 +01:00
2020-08-24 10:25:19 +02:00
stdx = { path = "../stdx", version = "0.0.0" }
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" }
test_utils = { path = "../test_utils", 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" }
2020-10-24 10:07:10 +02:00
[dev-dependencies]
expect-test = "1.0"