mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
23 lines
516 B
TOML
23 lines
516 B
TOML
[package]
|
|
edition = "2018"
|
|
name = "ra_assists"
|
|
version = "0.1.0"
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
format-buf = "1.0.0"
|
|
join_to_string = "0.1.3"
|
|
rustc-hash = "1.1.0"
|
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
|
ra_fmt = { path = "../ra_fmt" }
|
|
ra_prof = { path = "../ra_prof" }
|
|
ra_db = { path = "../ra_db" }
|
|
ra_ide_db = { path = "../ra_ide_db" }
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
test_utils = { path = "../test_utils" }
|