rust/crates/ra_assists/Cargo.toml

19 lines
441 B
TOML
Raw Normal View History

2019-02-03 19:26:35 +01:00
[package]
edition = "2018"
name = "ra_assists"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2019-02-03 19:26:35 +01:00
[dependencies]
2019-04-21 16:47:55 +02:00
lazy_static = "1.3.0"
2019-02-03 19:26:35 +01:00
join_to_string = "0.1.3"
itertools = "0.8.0"
2019-04-21 16:47:55 +02:00
arrayvec = "0.4.10"
2019-02-03 19:26:35 +01:00
ra_syntax = { path = "../ra_syntax" }
ra_text_edit = { path = "../ra_text_edit" }
ra_fmt = { path = "../ra_fmt" }
2019-02-03 19:26:35 +01:00
ra_db = { path = "../ra_db" }
hir = { path = "../ra_hir", package = "ra_hir" }
test_utils = { path = "../test_utils" }