2020-02-06 11:43:56 +00:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "ide-db"
|
2020-08-13 14:39:16 +00:00
|
|
|
version = "0.0.0"
|
2024-08-05 22:23:22 +00:00
|
|
|
repository.workspace = true
|
2024-08-03 15:51:31 +00:00
|
|
|
description = "Core data structure representing IDE state for rust-analyzer."
|
2023-01-16 15:41:47 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 15:33:01 +00:00
|
|
|
rust-version.workspace = true
|
2020-02-06 11:43:56 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-12 20:39:57 +00:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2024-08-09 21:48:03 +00:00
|
|
|
crossbeam-channel.workspace = true
|
2023-11-15 11:00:32 +00:00
|
|
|
tracing.workspace = true
|
2023-11-15 19:14:56 +00:00
|
|
|
rayon.workspace = true
|
2022-03-22 16:36:41 +00:00
|
|
|
fst = { version = "0.4.7", default-features = false }
|
2023-12-18 13:53:11 +00:00
|
|
|
rustc-hash.workspace = true
|
2023-11-15 11:07:36 +00:00
|
|
|
either.workspace = true
|
2023-11-15 10:53:56 +00:00
|
|
|
itertools.workspace = true
|
2023-12-20 11:53:46 +00:00
|
|
|
arrayvec.workspace = true
|
2023-11-15 11:21:34 +00:00
|
|
|
indexmap.workspace = true
|
2023-11-15 19:24:20 +00:00
|
|
|
memchr = "2.6.4"
|
2023-05-02 14:12:22 +00:00
|
|
|
triomphe.workspace = true
|
2023-05-04 23:28:15 +00:00
|
|
|
nohash-hasher.workspace = true
|
2024-04-16 15:10:36 +00:00
|
|
|
bitflags.workspace = true
|
2020-02-06 11:43:56 +00:00
|
|
|
|
2023-01-17 09:52:26 +00: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 06:48:46 +00:00
|
|
|
text-edit.workspace = true
|
2023-12-18 12:30:41 +00:00
|
|
|
span.workspace = true
|
2020-08-13 15:42:52 +00: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`.
|
2023-01-17 09:52:26 +00:00
|
|
|
hir.workspace = true
|
2020-10-24 08:07:10 +00:00
|
|
|
|
2023-05-04 06:48:59 +00:00
|
|
|
line-index.workspace = true
|
2023-05-04 02:18:41 +00:00
|
|
|
|
2020-10-24 08:07:10 +00:00
|
|
|
[dev-dependencies]
|
2022-07-19 11:00:45 +00:00
|
|
|
expect-test = "1.4.0"
|
2023-01-17 09:52:26 +00:00
|
|
|
|
|
|
|
# local deps
|
|
|
|
test-utils.workspace = true
|
2023-12-18 13:53:11 +00:00
|
|
|
test-fixture.workspace = true
|
2023-12-29 14:22:29 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-02-28 14:27:16 +00:00
|
|
|
workspace = true
|