rust-analyzer/crates/ra_prof/Cargo.toml

18 lines
378 B
TOML
Raw Normal View History

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