2019-10-29 11:15:51 +03:00
|
|
|
[package]
|
2020-08-13 16:26:29 +02:00
|
|
|
name = "hir_expand"
|
|
|
|
version = "0.0.0"
|
2020-07-14 10:57:26 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-13 16:26:29 +02:00
|
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
edition = "2018"
|
2019-10-29 11:15:51 +03:00
|
|
|
|
2019-11-17 18:35:05 +03:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-10-29 11:15:51 +03:00
|
|
|
[dependencies]
|
2020-02-18 15:57:41 +02: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 14:55:39 +03:00
|
|
|
|
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-22 01:44:21 +08:00
|
|
|
test_utils = { path = "../test_utils"}
|