2018-08-01 10:40:07 +03:00
|
|
|
[package]
|
2018-10-15 20:05:26 +03:00
|
|
|
edition = "2018"
|
2019-01-08 22:30:32 +03:00
|
|
|
name = "ra_ide_api_light"
|
2018-08-01 10:40:07 +03:00
|
|
|
version = "0.1.0"
|
2019-02-11 10:20:04 +02:00
|
|
|
authors = ["rust-analyzer developers"]
|
2018-08-01 10:40:07 +03:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2018-12-27 12:32:23 +00:00
|
|
|
itertools = "0.8.0"
|
2019-02-12 11:03:28 -05:00
|
|
|
superslice = "1.0.0"
|
2018-08-28 22:37:49 +03:00
|
|
|
join_to_string = "0.1.1"
|
2018-10-12 00:07:44 +06:00
|
|
|
rustc-hash = "1.0"
|
2018-08-12 18:50:16 +03:00
|
|
|
|
2018-09-16 12:54:24 +03:00
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
2018-12-10 22:09:12 +01:00
|
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
2019-02-08 18:58:27 +01:00
|
|
|
ra_fmt = { path = "../ra_fmt" }
|
2018-08-17 16:04:34 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-08-25 14:26:34 +03:00
|
|
|
test_utils = { path = "../test_utils" }
|
2019-03-05 10:26:36 -05:00
|
|
|
insta = "0.7.0"
|
2019-03-23 08:44:29 +01:00
|
|
|
|
|
|
|
[dev-dependencies.proptest]
|
|
|
|
version = "0.9.0"
|
|
|
|
# Disable `fork` feature to allow compiling on webassembly
|
|
|
|
default-features = false
|
|
|
|
features = ["std", "bit-set", "break-dead-code"]
|