]> git.lizzy.rs Git - rust.git/blob - crates/syntax/Cargo.toml
Update completions test output
[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 itertools = "0.10.0"
15 rowan = "0.10.3"
16 rustc_lexer = { version = "697.0.0", package = "rustc-ap-rustc_lexer" }
17 rustc-hash = "1.1.0"
18 arrayvec = "0.5.1"
19 once_cell = "1.3.1"
20 indexmap = "1.4.0"
21 # This crate transitively depends on `smol_str` via `rowan`.
22 # ideally, `serde` should be enabled by `rust-analyzer`, but we enable it here
23 # to reduce number of compilations
24 smol_str = { version = "0.1.15", features = ["serde"] }
25 serde = { version = "1.0.106", features = ["derive"] }
26
27 stdx = { path = "../stdx", version = "0.0.0" }
28 text_edit = { path = "../text_edit", version = "0.0.0" }
29 parser = { path = "../parser", version = "0.0.0" }
30 test_utils = { path = "../test_utils", version = "0.0.0" }
31 profile = { path = "../profile", version = "0.0.0" }
32
33 [dev-dependencies]
34 walkdir = "2.3.1"
35 rayon = "1"
36 expect-test = "1.1"