rust/crates/ra_cli/Cargo.toml

31 lines
833 B
TOML
Raw Normal View History

2018-07-30 15:16:58 +02:00
[package]
2018-10-15 19:06:02 +02:00
edition = "2018"
2018-09-16 11:54:24 +02:00
name = "ra_cli"
2018-07-30 15:16:58 +02:00
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-07-30 15:16:58 +02:00
publish = false
[dependencies]
2020-02-17 17:31:09 +01:00
crossbeam-channel = "0.4.0"
env_logger = { version = "0.7.1", default-features = false }
itertools = "0.8.0"
2020-02-17 17:31:09 +01:00
log = "0.4.5"
2019-10-02 16:58:15 +02:00
pico-args = "0.3.0"
rand = { version = "0.7.0", features = ["small_rng"] }
2020-02-17 17:31:09 +01:00
rustc-hash = "1.0"
2019-12-08 12:44:14 +01:00
hir = { path = "../ra_hir", package = "ra_hir" }
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
2020-02-17 17:31:09 +01:00
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
ra_db = { path = "../ra_db" }
2020-02-17 17:31:09 +01:00
ra_ide = { path = "../ra_ide" }
ra_project_model = { path = "../ra_project_model" }
ra_syntax = { path = "../ra_syntax" }
ra_vfs = "0.5.0"
ra_vfs_glob = { path = "../ra_vfs_glob" }
2019-06-26 12:07:26 +02:00
[dependencies.ra_prof]
path = "../ra_prof"
2019-08-17 14:29:57 +02:00
# features = [ "cpu_profiler" ]
2019-06-30 13:40:01 +02:00
# features = [ "jemalloc" ]