aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_prof/Cargo.toml
blob: e06a6d7d241d6907212d8c0cb6923c6c0e536ef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
edition = "2018"
name = "ra_prof"
version = "0.1.0"
authors = ["rust-analyzer developers"]
publish = false

[lib]
doctest = false

[dependencies]
once_cell = "1.3.1"
itertools = "0.8.2"
backtrace = "0.3.44"

[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version = "0.3.2", optional = true }
jemalloc-ctl = { version = "0.3.3", optional = true }

[features]
jemalloc = [ "jemallocator", "jemalloc-ctl" ]
cpu_profiler = []