2021-06-14 04:24:58 -05:00
|
|
|
[package]
|
2022-04-29 09:29:24 -05:00
|
|
|
name = "ide-diagnostics"
|
2021-06-14 04:24:58 -05:00
|
|
|
version = "0.0.0"
|
|
|
|
description = "TBD"
|
2023-02-13 05:55:14 -06:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2021-06-14 04:24:58 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-14 05:15:05 -05:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2023-11-16 14:27:35 -06:00
|
|
|
either.workspace = true
|
|
|
|
itertools.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-04 02:37:58 -06:00
|
|
|
tracing.workspace = true
|
2023-07-17 08:49:15 -05:00
|
|
|
once_cell = "1.17.0"
|
2021-06-14 05:15:05 -05:00
|
|
|
|
2023-02-13 05:55:14 -06:00
|
|
|
# local deps
|
|
|
|
profile.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
syntax.workspace = true
|
|
|
|
text-edit.workspace = true
|
|
|
|
cfg.workspace = true
|
|
|
|
hir.workspace = true
|
|
|
|
ide-db.workspace = true
|
2021-06-14 05:15:05 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-19 06:00:45 -05:00
|
|
|
expect-test = "1.4.0"
|
2021-06-14 05:15:05 -05:00
|
|
|
|
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
|
2022-07-22 19:06:11 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
in-rust-tree = []
|
2024-01-03 03:35:07 -06:00
|
|
|
|
|
|
|
[lints]
|
2024-02-04 02:37:58 -06:00
|
|
|
workspace = true
|