]> git.lizzy.rs Git - rust.git/blob - crates/ra_syntax/Cargo.toml
update salsa
[rust.git] / crates / ra_syntax / Cargo.toml
1 [package]
2 edition = "2018"
3 name = "ra_syntax"
4 version = "0.1.0"
5 authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
6 license = "MIT OR Apache-2.0"
7 description = "Comment and whitespace preserving parser for the Rust langauge"
8 repository = "https://github.com/rust-analyzer/rust-analyzer"
9
10 [dependencies]
11 arrayvec = "0.4.10"
12 unicode-xid = "0.1.0"
13 itertools = "0.8.0"
14 drop_bomb = "0.1.4"
15 parking_lot = "0.7.0"
16 rowan = "0.3.1"
17
18 # ideally, `serde` should be enabled by `ra_lsp_serder`, but we enable it here
19 # to reduce number of compilations
20 text_unit = { version = "0.1.6", features = ["serde"] }
21 smol_str = { version = "0.1.9", features = ["serde"] }
22
23 ra_text_edit = { path = "../ra_text_edit" }
24
25 [dev-dependencies]
26 test_utils = { path = "../test_utils" }
27 walkdir = "2.2.0"