mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 23:24:29 +00:00
23 lines
523 B
TOML
23 lines
523 B
TOML
[package]
|
|
edition = "2018"
|
|
name = "ra_hir"
|
|
version = "0.1.0"
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
rustc-hash = "1.1.0"
|
|
either = "1.5.3"
|
|
arrayvec = "0.5.1"
|
|
|
|
itertools = "0.9.0"
|
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
ra_db = { path = "../ra_db" }
|
|
ra_prof = { path = "../ra_prof" }
|
|
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
|
|
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
|
|
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
|