rust/crates/ra_hir_expand/Cargo.toml

24 lines
539 B
TOML
Raw Normal View History

2019-10-29 09:15:51 +01:00
[package]
edition = "2018"
2019-10-29 12:59:55 +01:00
name = "ra_hir_expand"
2019-10-29 09:15:51 +01:00
version = "0.1.0"
authors = ["rust-analyzer developers"]
2020-07-14 03:57:26 +02:00
license = "MIT OR Apache-2.0"
2019-10-29 09:15:51 +01:00
2019-11-17 16:35:05 +01:00
[lib]
doctest = false
2019-10-29 09:15:51 +01:00
[dependencies]
2020-02-18 14:57:41 +01:00
log = "0.4.8"
either = "1.5.3"
2020-06-11 11:30:06 +02:00
rustc-hash = "1.0.0"
2019-10-29 09:15:51 +01: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 19:44:21 +02:00
test_utils = { path = "../test_utils"}