2021-06-14 12:24:58 +03:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "ide-diagnostics"
|
2021-06-14 12:24:58 +03:00
|
|
|
version = "0.0.0"
|
|
|
|
description = "TBD"
|
2023-01-16 16:41:47 +01:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 16:33:01 +01:00
|
|
|
rust-version.workspace = true
|
2021-06-14 12:24:58 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-14 13:15:05 +03:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2023-11-15 13:07:36 +02:00
|
|
|
either.workspace = true
|
2023-11-15 12:53:56 +02:00
|
|
|
itertools.workspace = true
|
2023-11-15 13:17:36 +02:00
|
|
|
serde_json.workspace = true
|
2024-01-17 18:27:38 -08:00
|
|
|
tracing.workspace = true
|
2023-06-15 01:47:22 +03:30
|
|
|
once_cell = "1.17.0"
|
2021-06-14 13:15:05 +03:00
|
|
|
|
2023-01-17 10:52:26 +01:00
|
|
|
# local deps
|
|
|
|
stdx.workspace = true
|
|
|
|
syntax.workspace = true
|
|
|
|
text-edit.workspace = true
|
|
|
|
cfg.workspace = true
|
|
|
|
hir.workspace = true
|
|
|
|
ide-db.workspace = true
|
2024-03-19 13:05:50 +01:00
|
|
|
paths.workspace = true
|
2021-06-14 13:15:05 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-19 13:00:45 +02:00
|
|
|
expect-test = "1.4.0"
|
2021-06-14 13:15:05 +03:00
|
|
|
|
2023-01-17 10:52:26 +01:00
|
|
|
# local deps
|
|
|
|
test-utils.workspace = true
|
2023-12-18 14:53:11 +01:00
|
|
|
test-fixture.workspace = true
|
2023-12-29 23:22:29 +09:00
|
|
|
|
|
|
|
[lints]
|
2024-01-17 18:27:38 -08:00
|
|
|
workspace = true
|