]> git.lizzy.rs Git - rust.git/blob - crates/syntax/Cargo.toml
Merge #9260
[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 authors = ["rust-analyzer developers"]
8 edition = "2018"
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.13.0-pre.6"
17 rustc_lexer = { version = "721.0.0", package = "rustc-ap-rustc_lexer" }
18 rustc-hash = "1.1.0"
19 arrayvec = "0.7"
20 once_cell = "1.3.1"
21 indexmap = "1.4.0"
22 smol_str = { version = "0.1.15", features = ["serde"] }
23 serde = { version = "1.0.106", features = ["derive"] }
24
25 stdx = { path = "../stdx", version = "0.0.0" }
26 text_edit = { path = "../text_edit", version = "0.0.0" }
27 parser = { path = "../parser", version = "0.0.0" }
28 profile = { path = "../profile", version = "0.0.0" }
29
30 [dev-dependencies]
31 test_utils = { path = "../test_utils" }
32 walkdir = "2.3.1"
33 rayon = "1"
34 expect-test = "1.1"