2018-11-28 00:42:26 +00:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_hir"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-12-27 12:32:18 +00:00
|
|
|
arrayvec = "0.4.10"
|
2018-11-28 00:42:26 +00:00
|
|
|
log = "0.4.5"
|
|
|
|
relative-path = "0.4.0"
|
|
|
|
rustc-hash = "1.0"
|
2018-12-27 13:14:24 +00:00
|
|
|
parking_lot = "0.7.0"
|
2018-12-26 16:00:42 +00:00
|
|
|
ena = "0.11"
|
2019-01-09 16:14:21 +00:00
|
|
|
join_to_string = "0.1.3"
|
2018-11-28 00:42:26 +00:00
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
2019-01-04 13:15:50 +00:00
|
|
|
ra_arena = { path = "../ra_arena" }
|
2018-11-28 00:42:26 +00:00
|
|
|
ra_db = { path = "../ra_db" }
|
|
|
|
test_utils = { path = "../test_utils" }
|
2018-12-23 16:13:11 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
flexi_logger = "0.10.0"
|
2019-01-21 22:28:57 +00:00
|
|
|
insta = "0.4.0"
|