rust/crates/ra_hir_expand/Cargo.toml

23 lines
509 B
TOML
Raw Normal View History

2019-10-29 03:15:51 -05:00
[package]
edition = "2018"
2019-10-29 06:59:55 -05:00
name = "ra_hir_expand"
2019-10-29 03:15:51 -05:00
version = "0.1.0"
authors = ["rust-analyzer developers"]
2019-11-17 09:35:05 -06:00
[lib]
doctest = false
2019-10-29 03:15:51 -05:00
[dependencies]
2020-02-18 07:57:41 -06:00
log = "0.4.8"
either = "1.5.3"
2020-06-11 04:30:06 -05:00
rustc-hash = "1.0.0"
2019-10-29 03:15:51 -05:00
ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
ra_syntax = { path = "../ra_syntax" }
ra_parser = { path = "../ra_parser" }
ra_prof = { path = "../ra_prof" }
tt = { path = "../ra_tt", package = "ra_tt" }
mbe = { path = "../ra_mbe", package = "ra_mbe" }
2020-04-21 12:44:21 -05:00
test_utils = { path = "../test_utils"}