rust/crates/ra_prof/Cargo.toml

19 lines
414 B
TOML
Raw Normal View History

2019-03-27 10:09:51 -05:00
[package]
edition = "2018"
name = "ra_prof"
version = "0.1.0"
authors = ["rust-analyzer developers"]
publish = false
[dependencies]
2019-05-07 12:54:33 -05:00
once_cell = "0.2.0"
2019-05-21 16:00:58 -05:00
itertools = "0.8.0"
2019-06-03 16:25:43 -05:00
backtrace = "0.3.28"
cpuprofiler = { version = "0.0.3", optional = true }
2019-07-17 09:58:17 -05:00
jemallocator = { version = "0.3.2", optional = true }
jemalloc-ctl = { version = "0.3.2", optional = true }
[features]
jemalloc = [ "jemallocator", "jemalloc-ctl" ]