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
|
|
|
|
2019-11-17 09:35:05 -06:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-02-03 12:26:35 -06:00
|
|
|
[dependencies]
|
2020-02-18 07:57:41 -06:00
|
|
|
rustc-hash = "1.1.0"
|
2020-03-23 18:22:46 -05:00
|
|
|
itertools = "0.9.0"
|
2020-03-23 06:34:56 -05:00
|
|
|
either = "1.5.3"
|
2019-02-03 12:26:35 -06:00
|
|
|
|
2020-03-28 05:01:25 -05:00
|
|
|
stdx = { path = "../stdx" }
|
|
|
|
|
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" }
|
2020-02-06 07:55:10 -06:00
|
|
|
ra_prof = { path = "../ra_prof" }
|
2019-02-03 12:26:35 -06:00
|
|
|
ra_db = { path = "../ra_db" }
|
2020-02-06 09:40:28 -06:00
|
|
|
ra_ide_db = { path = "../ra_ide_db" }
|
2019-02-03 12:26:35 -06:00
|
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
|
|
test_utils = { path = "../test_utils" }
|