rust/crates/ra_hir/Cargo.toml

24 lines
523 B
TOML
Raw Normal View History

2018-11-28 03:42:26 +03:00
[package]
edition = "2018"
name = "ra_hir"
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-11-28 03:42:26 +03:00
2019-11-17 18:35:05 +03:00
[lib]
doctest = false
2018-11-28 03:42:26 +03:00
[dependencies]
2020-02-18 15:57:41 +02:00
log = "0.4.8"
rustc-hash = "1.1.0"
either = "1.5.3"
2020-03-10 19:58:17 -07:00
arrayvec = "0.5.1"
2019-01-25 15:16:50 +03:00
2020-03-23 16:22:46 -07:00
itertools = "0.9.0"
2020-03-07 15:27:03 +01:00
2018-11-28 03:42:26 +03: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 14:59:55 +03:00
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
2019-10-30 12:27:54 +03:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
2019-11-26 14:35:23 +03:00
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }