2018-08-10 22:33:29 +03:00
|
|
|
[package]
|
2018-12-06 20:49:36 +03:00
|
|
|
edition = "2018"
|
2018-09-16 12:54:24 +03:00
|
|
|
name = "ra_syntax"
|
2018-08-10 22:33:29 +03:00
|
|
|
version = "0.1.0"
|
2019-02-11 10:20:04 +02:00
|
|
|
authors = ["rust-analyzer developers"]
|
2018-08-10 22:33:29 +03:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-11-05 15:51:38 +03:00
|
|
|
description = "Comment and whitespace preserving parser for the Rust langauge"
|
|
|
|
repository = "https://github.com/rust-analyzer/rust-analyzer"
|
2018-08-10 22:33:29 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2018-12-27 12:32:18 +00:00
|
|
|
arrayvec = "0.4.10"
|
2018-08-10 22:33:29 +03:00
|
|
|
unicode-xid = "0.1.0"
|
2018-12-27 12:32:23 +00:00
|
|
|
itertools = "0.8.0"
|
2018-08-10 22:33:29 +03:00
|
|
|
drop_bomb = "0.1.4"
|
2018-12-27 13:14:24 +00:00
|
|
|
parking_lot = "0.7.0"
|
2019-01-26 19:39:31 +03:00
|
|
|
rowan = "0.3.3"
|
2019-01-11 13:21:18 +03:00
|
|
|
|
2019-02-05 23:10:49 +01:00
|
|
|
# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here
|
2019-01-11 13:21:18 +03:00
|
|
|
# to reduce number of compilations
|
|
|
|
text_unit = { version = "0.1.6", features = ["serde"] }
|
|
|
|
smol_str = { version = "0.1.9", features = ["serde"] }
|
|
|
|
|
2018-12-10 22:09:12 +01:00
|
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
2019-02-21 13:37:32 +03:00
|
|
|
ra_parser = { path = "../ra_parser" }
|
2018-08-10 22:33:29 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-11-05 15:56:07 +03:00
|
|
|
test_utils = { path = "../test_utils" }
|
2018-08-13 17:42:43 +03:00
|
|
|
walkdir = "2.2.0"
|