2018-11-28 00:42:26 +00:00
|
|
|
[package]
|
2020-08-13 14:36:55 +00:00
|
|
|
name = "hir"
|
|
|
|
version = "0.0.0"
|
2020-07-14 01:57:26 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-13 14:36:55 +00:00
|
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
edition = "2018"
|
2018-11-28 00:42:26 +00:00
|
|
|
|
2019-11-17 15:35:05 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2018-11-28 00:42:26 +00:00
|
|
|
[dependencies]
|
2020-02-18 13:57:41 +00:00
|
|
|
log = "0.4.8"
|
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
either = "1.5.3"
|
2020-03-11 02:58:17 +00:00
|
|
|
arrayvec = "0.5.1"
|
2020-03-23 23:22:46 +00:00
|
|
|
itertools = "0.9.0"
|
2020-08-24 09:19:53 +00:00
|
|
|
url = "2.1.1"
|
2020-03-07 14:27:03 +00:00
|
|
|
|
2020-07-13 14:16:53 +00:00
|
|
|
stdx = { path = "../stdx" }
|
2020-08-12 16:26:51 +00:00
|
|
|
syntax = { path = "../syntax" }
|
2020-08-13 14:25:38 +00:00
|
|
|
base_db = { path = "../base_db" }
|
2020-08-12 14:32:36 +00:00
|
|
|
profile = { path = "../profile" }
|
2020-08-13 14:26:29 +00:00
|
|
|
hir_expand = { path = "../hir_expand" }
|
2020-08-13 14:28:27 +00:00
|
|
|
hir_def = { path = "../hir_def" }
|
2020-08-13 14:35:29 +00:00
|
|
|
hir_ty = { path = "../hir_ty" }
|
2020-08-24 09:19:53 +00:00
|
|
|
tt = { path = "../tt" }
|