]> git.lizzy.rs Git - rust.git/blob - crates/syntax/Cargo.toml
Merge #10467
[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 = "2018"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 itertools = "0.10.0"
15 rowan = "0.14.0"
16 rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
17 rustc-hash = "1.1.0"
18 once_cell = "1.3.1"
19 indexmap = "1.4.0"
20 smol_str = "0.1.15"
21
22 stdx = { path = "../stdx", version = "0.0.0" }
23 text_edit = { path = "../text_edit", version = "0.0.0" }
24 parser = { path = "../parser", version = "0.0.0" }
25 profile = { path = "../profile", version = "0.0.0" }
26
27 [dev-dependencies]
28 rayon = "1"
29 expect-test = "1.1"
30 proc-macro2 = "1.0.8"
31 quote = "1.0.2"
32 ungrammar = "=1.14.6"
33
34 test_utils = { path = "../test_utils" }
35 sourcegen = { path = "../sourcegen" }