]> git.lizzy.rs Git - rust.git/blob - crates/syntax/Cargo.toml
Merge #10775
[rust.git] / crates / syntax / Cargo.toml
1 [package]
2 name = "syntax"
3 version = "0.0.0"
4 description = "Comment and whitespace preserving parser for the Rust language"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-analyzer/rust-analyzer"
7 edition = "2021"
8 rust-version = "1.56"
9
10 [lib]
11 doctest = false
12
13 [dependencies]
14 cov-mark = "2.0.0-pre.1"
15 itertools = "0.10.0"
16 rowan = "0.14.0"
17 rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
18 rustc-hash = "1.1.0"
19 once_cell = "1.3.1"
20 indexmap = "1.7.0"
21 smol_str = "0.1.21"
22
23 stdx = { path = "../stdx", version = "0.0.0" }
24 text_edit = { path = "../text_edit", version = "0.0.0" }
25 parser = { path = "../parser", version = "0.0.0" }
26 profile = { path = "../profile", version = "0.0.0" }
27
28 [dev-dependencies]
29 rayon = "1"
30 expect-test = "1.2.0-pre.1"
31 proc-macro2 = "1.0.8"
32 quote = "1.0.2"
33 ungrammar = "=1.14.9"
34
35 test_utils = { path = "../test_utils" }
36 sourcegen = { path = "../sourcegen" }