mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-16 09:48:10 +00:00
23 lines
493 B
TOML
23 lines
493 B
TOML
[package]
|
|
name = "assists"
|
|
version = "0.0.0"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["rust-analyzer developers"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc-hash = "1.1.0"
|
|
itertools = "0.9.0"
|
|
either = "1.5.3"
|
|
|
|
stdx = { path = "../stdx" }
|
|
syntax = { path = "../syntax" }
|
|
text_edit = { path = "../text_edit" }
|
|
profile = { path = "../profile" }
|
|
base_db = { path = "../base_db" }
|
|
ide_db = { path = "../ide_db" }
|
|
hir = { path = "../hir" }
|
|
test_utils = { path = "../test_utils" }
|