rust-analyzer/crates/ra_assists/Cargo.toml

20 lines
460 B
TOML
Raw Normal View History

2019-02-03 18:26:35 +00:00
[package]
edition = "2018"
name = "ra_assists"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2019-02-03 18:26:35 +00:00
[dependencies]
2019-07-20 17:04:34 +00:00
format-buf = "1.0.0"
2019-09-01 20:18:15 +00:00
once_cell = "1.0.1"
2019-02-03 18:26:35 +00:00
join_to_string = "0.1.3"
itertools = "0.8.0"
2019-04-21 14:47:55 +00:00
arrayvec = "0.4.10"
2019-02-03 18:26:35 +00:00
ra_syntax = { path = "../ra_syntax" }
ra_text_edit = { path = "../ra_text_edit" }
ra_fmt = { path = "../ra_fmt" }
2019-02-03 18:26:35 +00:00
ra_db = { path = "../ra_db" }
hir = { path = "../ra_hir", package = "ra_hir" }
test_utils = { path = "../test_utils" }