2020-02-06 05:43:56 -06:00
|
|
|
[package]
|
2022-04-29 09:29:24 -05:00
|
|
|
name = "ide-db"
|
2020-08-13 09:39:16 -05:00
|
|
|
version = "0.0.0"
|
2020-08-24 06:06:30 -05:00
|
|
|
description = "TBD"
|
2023-02-13 05:55:14 -06:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-02-06 05:43:56 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-12 15:39:57 -05:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2023-11-16 14:27:35 -06:00
|
|
|
tracing.workspace = true
|
|
|
|
rayon.workspace = true
|
2022-03-22 11:36:41 -05:00
|
|
|
fst = { version = "0.4.7", default-features = false }
|
2024-01-03 03:35:07 -06:00
|
|
|
rustc-hash.workspace = true
|
2023-02-13 05:55:14 -06:00
|
|
|
once_cell = "1.17.0"
|
2023-11-16 14:27:35 -06:00
|
|
|
either.workspace = true
|
|
|
|
itertools.workspace = true
|
2024-01-03 03:35:07 -06:00
|
|
|
arrayvec.workspace = true
|
2023-11-16 14:27:35 -06:00
|
|
|
indexmap.workspace = true
|
|
|
|
memchr = "2.6.4"
|
2023-06-05 04:04:23 -05:00
|
|
|
triomphe.workspace = true
|
|
|
|
nohash-hasher.workspace = true
|
2020-02-06 05:43:56 -06:00
|
|
|
|
2023-02-13 05:55:14 -06:00
|
|
|
# local deps
|
|
|
|
base-db.workspace = true
|
|
|
|
limit.workspace = true
|
|
|
|
parser.workspace = true
|
|
|
|
profile.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
syntax.workspace = true
|
|
|
|
text-edit.workspace = true
|
2024-01-03 03:35:07 -06:00
|
|
|
span.workspace = true
|
2020-08-13 10:42:52 -05:00
|
|
|
# ide should depend only on the top-level `hir` package. if you need
|
2022-04-29 09:29:24 -05:00
|
|
|
# something from some `hir-xxx` subpackage, reexport the API via `hir`.
|
2023-02-13 05:55:14 -06:00
|
|
|
hir.workspace = true
|
2020-10-24 03:07:10 -05:00
|
|
|
|
2023-06-05 04:04:23 -05:00
|
|
|
line-index.workspace = true
|
|
|
|
|
2020-10-24 03:07:10 -05:00
|
|
|
[dev-dependencies]
|
2022-07-19 06:00:45 -05:00
|
|
|
expect-test = "1.4.0"
|
2023-02-20 02:14:12 -06:00
|
|
|
oorandom = "11.1.3"
|
2023-11-16 14:27:35 -06:00
|
|
|
xshell.workspace = true
|
2023-02-13 05:55:14 -06:00
|
|
|
|
|
|
|
# local deps
|
|
|
|
test-utils.workspace = true
|
2024-01-03 03:35:07 -06:00
|
|
|
test-fixture.workspace = true
|
2023-02-13 05:55:14 -06:00
|
|
|
sourcegen.workspace = true
|
2024-01-03 03:35:07 -06:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|