rust/crates/ra_prof/Cargo.toml

22 lines
467 B
TOML
Raw Normal View History

2019-11-14 16:09:47 -06:00
[package]
edition = "2018"
name = "ra_prof"
version = "0.1.0"
authors = ["rust-analyzer developers"]
publish = false
2019-11-17 09:35:05 -06:00
[lib]
doctest = false
2019-11-14 16:09:47 -06:00
[dependencies]
2020-02-18 07:57:41 -06:00
once_cell = "1.3.1"
2020-02-19 09:28:25 -06:00
backtrace = { version = "0.3.44", optional = true }
2019-11-14 16:09:47 -06:00
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version = "0.3.2", optional = true }
2020-02-18 07:57:41 -06:00
jemalloc-ctl = { version = "0.3.3", optional = true }
2019-11-14 16:09:47 -06:00
[features]
jemalloc = [ "jemallocator", "jemalloc-ctl" ]
cpu_profiler = []