rust/crates/ra_hir/Cargo.toml

21 lines
479 B
TOML
Raw Normal View History

2018-11-28 01:42:26 +01:00
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-11-28 01:42:26 +01:00
2019-11-17 16:35:05 +01:00
[lib]
doctest = false
2018-11-28 01:42:26 +01:00
[dependencies]
log = "0.4.5"
rustc-hash = "1.0"
either = "1.5"
2019-01-25 13:16:50 +01:00
2018-11-28 01:42:26 +01:00
ra_syntax = { path = "../ra_syntax" }
ra_db = { path = "../ra_db" }
2019-12-21 18:45:46 +01:00
ra_prof = { path = "../ra_prof" }
2019-10-29 12:59:55 +01:00
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
2019-10-30 10:27:54 +01:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
2019-11-26 12:35:23 +01:00
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }