rust/crates/ra_hir_expand/Cargo.toml

24 lines
480 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"
2020-08-12 16:22:05 +02:00
arena = { path = "../arena" }
2020-08-13 16:25:38 +02:00
base_db = { path = "../base_db" }
2020-08-12 18:26:51 +02:00
syntax = { path = "../syntax" }
2020-08-12 17:06:49 +02:00
parser = { path = "../parser" }
2020-08-12 16:32:36 +02:00
profile = { path = "../profile" }
2020-08-12 16:46:20 +02:00
tt = { path = "../tt" }
2020-08-13 10:08:11 +02:00
mbe = { path = "../mbe" }
2020-04-21 19:44:21 +02:00
test_utils = { path = "../test_utils"}