rust/crates/ra_prof/Cargo.toml

18 lines
378 B
TOML
Raw Normal View History

2019-03-27 18:09:51 +03:00
[package]
edition = "2018"
name = "ra_prof"
version = "0.1.0"
authors = ["rust-analyzer developers"]
publish = false
[dependencies]
2019-09-01 23:18:15 +03:00
once_cell = "1.0.1"
2019-05-22 00:00:58 +03:00
itertools = "0.8.0"
2019-06-04 00:25:43 +03:00
backtrace = "0.3.28"
2019-07-17 10:58:17 -04:00
jemallocator = { version = "0.3.2", optional = true }
jemalloc-ctl = { version = "0.3.2", optional = true }
[features]
jemalloc = [ "jemallocator", "jemalloc-ctl" ]
2019-08-17 15:29:57 +03:00
cpu_profiler = []