rust/crates/ra_cli/Cargo.toml

24 lines
648 B
TOML
Raw Normal View History

2018-07-30 08:16:58 -05:00
[package]
2018-10-15 12:06:02 -05:00
edition = "2018"
2018-09-16 04:54:24 -05:00
name = "ra_cli"
2018-07-30 08:16:58 -05:00
version = "0.1.0"
authors = ["rust-analyzer developers"]
2018-07-30 08:16:58 -05:00
publish = false
[dependencies]
2019-10-02 09:58:15 -05:00
pico-args = "0.3.0"
2019-11-29 18:35:03 -06:00
env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] }
2018-09-16 04:54:24 -05:00
ra_syntax = { path = "../ra_syntax" }
2019-11-27 12:32:33 -06:00
ra_ide = { path = "../ra_ide" }
ra_batch = { path = "../ra_batch" }
2019-12-08 05:44:14 -06:00
hir = { path = "../ra_hir", package = "ra_hir" }
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
ra_db = { path = "../ra_db" }
2019-06-26 05:07:26 -05:00
[dependencies.ra_prof]
path = "../ra_prof"
2019-08-17 07:29:57 -05:00
# features = [ "cpu_profiler" ]
2019-06-30 06:40:01 -05:00
# features = [ "jemalloc" ]