]> git.lizzy.rs Git - rust.git/blob - crates/syntax/Cargo.toml
Merge #9417
[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.13.0-pre.7"
16 rustc_lexer = { version = "721.0.0", package = "rustc-ap-rustc_lexer" }
17 rustc-hash = "1.1.0"
18 arrayvec = "0.7"
19 once_cell = "1.3.1"
20 indexmap = "1.4.0"
21 smol_str = { version = "0.1.15", features = ["serde"] }
22 serde = { version = "1.0.106", features = ["derive"] }
23
24 stdx = { path = "../stdx", version = "0.0.0" }
25 text_edit = { path = "../text_edit", version = "0.0.0" }
26 parser = { path = "../parser", version = "0.0.0" }
27 profile = { path = "../profile", version = "0.0.0" }
28
29 [dev-dependencies]
30 rayon = "1"
31 expect-test = "1.1"
32 proc-macro2 = "1.0.8"
33 quote = "1.0.2"
34 ungrammar = "=1.14"
35
36 test_utils = { path = "../test_utils" }
37 sourcegen = { path = "../sourcegen" }