]> git.proxmox.com Git - rustc.git/blame - src/tools/rust-analyzer/crates/syntax/Cargo.toml
New upstream version 1.66.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / crates / syntax / Cargo.toml
CommitLineData
064997fb
FG
1[package]
2name = "syntax"
3version = "0.0.0"
4description = "Comment and whitespace preserving parser for the Rust language"
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/rust-lang/rust-analyzer"
7edition = "2021"
8rust-version = "1.57"
9
10[lib]
11doctest = false
12
13[dependencies]
14cov-mark = "2.0.0-pre.1"
2b03887a
FG
15itertools = "0.10.5"
16rowan = "0.15.10"
064997fb
FG
17rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
18rustc-hash = "1.1.0"
2b03887a 19once_cell = "1.15.0"
064997fb
FG
20indexmap = "1.9.1"
21smol_str = "0.1.23"
22
23stdx = { path = "../stdx", version = "0.0.0" }
24text-edit = { path = "../text-edit", version = "0.0.0" }
25parser = { path = "../parser", version = "0.0.0" }
26profile = { path = "../profile", version = "0.0.0" }
27
28[dev-dependencies]
29rayon = "1.5.3"
30expect-test = "1.4.0"
2b03887a 31proc-macro2 = "1.0.47"
064997fb
FG
32quote = "1.0.20"
33ungrammar = "1.16.1"
34
35test-utils = { path = "../test-utils" }
36sourcegen = { path = "../sourcegen" }
37
38[features]
39in-rust-tree = []