rust/crates/ra_hir/Cargo.toml

23 lines
474 B
TOML
Raw Normal View History

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