2019-01-31 04:40:05 -06:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
2019-01-31 12:09:43 -06:00
|
|
|
name = "ra_mbe"
|
2019-01-31 04:40:05 -06:00
|
|
|
version = "0.1.0"
|
2019-02-11 02:20:04 -06:00
|
|
|
authors = ["rust-analyzer developers"]
|
2019-01-31 04:40:05 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2019-01-31 12:29:04 -06:00
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
2019-02-23 05:07:29 -06:00
|
|
|
ra_parser = { path = "../ra_parser" }
|
2019-01-31 12:09:43 -06:00
|
|
|
tt = { path = "../ra_tt", package = "ra_tt" }
|
2019-04-04 14:39:54 -05:00
|
|
|
itertools = "0.8.0"
|
2019-01-31 04:59:39 -06:00
|
|
|
rustc-hash = "1.0.0"
|
2019-04-24 10:01:32 -05:00
|
|
|
smallvec = "0.6.9"
|
2019-04-25 10:12:57 -05:00
|
|
|
log = "0.4.5"
|
2019-09-10 06:27:08 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test_utils = { path = "../test_utils" }
|
|
|
|
|