2019-02-03 18:26:35 +00:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_assists"
|
|
|
|
version = "0.1.0"
|
2019-02-11 08:20:04 +00:00
|
|
|
authors = ["rust-analyzer developers"]
|
2019-02-03 18:26:35 +00:00
|
|
|
|
2019-11-17 15:35:05 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-02-03 18:26:35 +00:00
|
|
|
[dependencies]
|
2019-07-20 17:04:34 +00:00
|
|
|
format-buf = "1.0.0"
|
2019-02-03 18:26:35 +00:00
|
|
|
join_to_string = "0.1.3"
|
2020-01-10 17:59:57 +00:00
|
|
|
rustc-hash = "1.0"
|
2020-01-15 18:20:20 +00:00
|
|
|
either = "1.5"
|
2019-02-03 18:26:35 +00:00
|
|
|
|
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
2019-02-08 17:58:27 +00:00
|
|
|
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" }
|