2019-02-03 12:26:35 -06:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_assists"
|
|
|
|
version = "0.1.0"
|
2019-02-11 02:20:04 -06:00
|
|
|
authors = ["rust-analyzer developers"]
|
2019-02-03 12:26:35 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2019-05-07 12:54:33 -05:00
|
|
|
once_cell = "0.2.0"
|
2019-02-03 12:26:35 -06:00
|
|
|
join_to_string = "0.1.3"
|
2019-02-11 11:07:21 -06:00
|
|
|
itertools = "0.8.0"
|
2019-04-21 09:47:55 -05:00
|
|
|
arrayvec = "0.4.10"
|
2019-02-03 12:26:35 -06:00
|
|
|
|
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
2019-02-08 11:58:27 -06:00
|
|
|
ra_fmt = { path = "../ra_fmt" }
|
2019-02-03 12:26:35 -06:00
|
|
|
ra_db = { path = "../ra_db" }
|
|
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
|
|
test_utils = { path = "../test_utils" }
|