2018-08-10 19:33:29 +00:00
|
|
|
[package]
|
2020-08-12 16:26:51 +00:00
|
|
|
name = "syntax"
|
|
|
|
version = "0.0.0"
|
2020-02-09 12:34:56 +00:00
|
|
|
description = "Comment and whitespace preserving parser for the Rust language"
|
2022-04-13 23:54:24 +00:00
|
|
|
repository = "https://github.com/rust-lang/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
|
2018-08-10 19:33:29 +00:00
|
|
|
|
2019-11-17 15:35:05 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2018-08-10 19:33:29 +00:00
|
|
|
[dependencies]
|
2021-06-12 20:39:57 +00:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2023-02-25 12:50:27 +00:00
|
|
|
either = "1.7.0"
|
2022-10-03 06:02:42 +00:00
|
|
|
itertools = "0.10.5"
|
2023-03-25 13:43:08 +00:00
|
|
|
rowan = "0.15.11"
|
2020-02-18 13:57:41 +00:00
|
|
|
rustc-hash = "1.1.0"
|
2023-01-21 06:48:46 +00:00
|
|
|
once_cell = "1.17.0"
|
2023-06-25 00:35:20 +00:00
|
|
|
indexmap = "2.0.0"
|
2023-04-11 12:05:22 +00:00
|
|
|
smol_str.workspace = true
|
2023-05-02 14:12:22 +00:00
|
|
|
triomphe.workspace = true
|
2018-08-10 19:33:29 +00:00
|
|
|
|
2023-09-15 14:40:11 +00:00
|
|
|
rustc-dependencies.workspace = true
|
2023-05-18 08:17:40 +00:00
|
|
|
|
2023-01-17 09:52:26 +00:00
|
|
|
parser.workspace = true
|
|
|
|
profile.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
text-edit.workspace = true
|
2020-08-12 16:26:51 +00:00
|
|
|
|
2018-08-10 19:33:29 +00:00
|
|
|
[dev-dependencies]
|
2023-01-21 07:54:19 +00:00
|
|
|
rayon = "1.6.1"
|
2022-07-19 11:00:45 +00:00
|
|
|
expect-test = "1.4.0"
|
2022-10-15 10:02:10 +00:00
|
|
|
proc-macro2 = "1.0.47"
|
2022-07-02 19:29:06 +00:00
|
|
|
quote = "1.0.20"
|
2022-04-01 15:12:25 +00:00
|
|
|
ungrammar = "1.16.1"
|
2021-07-03 19:11:03 +00:00
|
|
|
|
2023-01-17 09:52:26 +00:00
|
|
|
test-utils.workspace = true
|
|
|
|
sourcegen.workspace = true
|
2022-07-23 00:06:11 +00:00
|
|
|
|
|
|
|
[features]
|
2023-09-15 14:40:11 +00:00
|
|
|
in-rust-tree = ["rustc-dependencies/in-rust-tree"]
|