rust/crates/syntax/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
870 B
TOML
Raw Normal View History

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