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"]
|
2020-07-14 01:57:26 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
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]
|
2020-02-18 13:57:41 +00:00
|
|
|
rustc-hash = "1.1.0"
|
2020-03-23 23:22:46 +00:00
|
|
|
itertools = "0.9.0"
|
2020-03-23 11:34:56 +00:00
|
|
|
either = "1.5.3"
|
2019-02-03 18:26:35 +00:00
|
|
|
|
2020-03-28 10:01:25 +00:00
|
|
|
stdx = { path = "../stdx" }
|
|
|
|
|
2020-08-12 16:26:51 +00:00
|
|
|
syntax = { path = "../syntax" }
|
2020-08-12 15:03:06 +00:00
|
|
|
text_edit = { path = "../text_edit" }
|
2020-08-12 14:32:36 +00:00
|
|
|
profile = { path = "../profile" }
|
2019-02-03 18:26:35 +00:00
|
|
|
ra_db = { path = "../ra_db" }
|
2020-02-06 15:40:28 +00:00
|
|
|
ra_ide_db = { path = "../ra_ide_db" }
|
2019-02-03 18:26:35 +00:00
|
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
|
|
test_utils = { path = "../test_utils" }
|