rust/crates/ide-db/Cargo.toml

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

51 lines
1.0 KiB
TOML
Raw Normal View History

2020-02-06 12:43:56 +01:00
[package]
2022-04-29 14:29:24 +00:00
name = "ide-db"
2020-08-13 16:39:16 +02:00
version = "0.0.0"
description = "TBD"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
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"
2022-06-10 16:30:09 +02:00
tracing = "0.1.35"
2023-01-21 09:54:19 +02:00
rayon = "1.6.1"
2022-03-22 17:36:41 +01:00
fst = { version = "0.4.7", default-features = false }
2020-02-18 15:57:41 +02:00
rustc-hash = "1.1.0"
2023-01-21 08:48:46 +02:00
once_cell = "1.17.0"
2022-07-03 09:42:41 +03:00
either = "1.7.0"
itertools = "0.10.5"
2022-03-22 17:36:41 +01:00
arrayvec = "0.7.2"
2023-06-24 17:35:20 -07:00
indexmap = "2.0.0"
memchr = "2.5.0"
2023-05-02 17:12:22 +03:00
triomphe.workspace = true
2023-05-04 16:28:15 -07:00
nohash-hasher.workspace = true
2020-02-06 12:43:56 +01:00
# local deps
base-db.workspace = true
limit.workspace = true
parser.workspace = true
profile.workspace = true
stdx.workspace = true
syntax.workspace = true
2023-01-21 08:48:46 +02:00
text-edit.workspace = true
2020-08-13 17:42:52 +02: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`.
hir.workspace = true
2020-10-24 11:07:10 +03:00
2023-05-03 23:48:59 -07:00
line-index.workspace = true
2023-05-03 19:18:41 -07:00
2020-10-24 11:07:10 +03:00
[dev-dependencies]
expect-test = "1.4.0"
oorandom = "11.1.3"
xshell = "0.2.2"
# local deps
test-utils.workspace = true
sourcegen.workspace = true