rust/crates/ra_hir/Cargo.toml

24 lines
523 B
TOML
Raw Normal View History

2018-11-27 18:42:26 -06:00
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-11-27 18:42:26 -06:00
2019-11-17 09:35:05 -06:00
[lib]
doctest = false
2018-11-27 18:42:26 -06:00
[dependencies]
2020-02-18 07:57:41 -06:00
log = "0.4.8"
rustc-hash = "1.1.0"
either = "1.5.3"
2020-03-10 21:58:17 -05:00
arrayvec = "0.5.1"
2019-01-25 06:16:50 -06:00
2020-03-23 18:22:46 -05:00
itertools = "0.9.0"
2020-03-07 08:27:03 -06:00
2018-11-27 18:42:26 -06:00
ra_syntax = { path = "../ra_syntax" }
ra_db = { path = "../ra_db" }
2019-12-21 11:45:46 -06:00
ra_prof = { path = "../ra_prof" }
2019-10-29 06:59:55 -05:00
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
2019-10-30 04:27:54 -05:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
2019-11-26 05:35:23 -06:00
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }