mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 21:13:37 +00:00
deed44a472
We only used it for measuring memory usage, but now we can use glibc's allocator for that just fine
26 lines
570 B
TOML
26 lines
570 B
TOML
[package]
|
|
edition = "2018"
|
|
name = "ra_prof"
|
|
version = "0.1.0"
|
|
authors = ["rust-analyzer developers"]
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ra_arena = { path = "../ra_arena" }
|
|
once_cell = "1.3.1"
|
|
backtrace = { version = "0.3.44", optional = true }
|
|
mimalloc = { version = "0.1.19", default-features = false, optional = true }
|
|
cfg-if = "0.1.10"
|
|
libc = "0.2.73"
|
|
|
|
[features]
|
|
cpu_profiler = []
|
|
|
|
# Uncomment to enable for the whole crate graph
|
|
# default = [ "backtrace" ]
|
|
# default = [ "mimalloc" ]
|
|
# default = [ "cpu_profiler" ]
|