rust/crates/ra_prof/Cargo.toml

26 lines
485 B
TOML
Raw Normal View History

2019-11-14 23:09:47 +01:00
[package]
edition = "2018"
name = "ra_prof"
version = "0.1.0"
authors = ["rust-analyzer developers"]
publish = false
2020-07-14 03:57:26 +02:00
license = "MIT OR Apache-2.0"
2019-11-14 23:09:47 +01:00
2019-11-17 16:35:05 +01:00
[lib]
doctest = false
2019-11-14 23:09:47 +01:00
[dependencies]
ra_arena = { path = "../ra_arena" }
2020-02-18 14:57:41 +01:00
once_cell = "1.3.1"
2020-02-19 16:28:25 +01:00
backtrace = { version = "0.3.44", optional = true }
cfg-if = "0.1.10"
libc = "0.2.73"
perf-event = "0.4"
2019-11-14 23:09:47 +01:00
[features]
cpu_profiler = []
2020-07-11 03:04:37 +02:00
# Uncomment to enable for the whole crate graph
# default = [ "backtrace" ]
# default = [ "cpu_profiler" ]