[package]
edition = "2021"
name = "mimalloc-pprof"
version = "0.9.2"
build = "build.rs"
links = "mimalloc"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "mimalloc global allocator with pprof-compatible sampled heap profiling"
homepage = "https://github.com/zackees/mimalloc-pprof"
documentation = "https://docs.rs/mimalloc-pprof"
readme = "README.md"
keywords = [
"mimalloc",
"allocator",
"pprof",
"profiling",
"heap",
]
categories = [
"memory-management",
"development-tools::profiling",
]
license = "MIT"
repository = "https://github.com/zackees/mimalloc-pprof"
[lib]
name = "mimalloc_pprof"
path = "src/lib.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "t10_snapshot_concurrency"
path = "tests/t10_snapshot_concurrency.rs"
[[test]]
name = "t11_enable"
path = "tests/t11_enable.rs"
[[test]]
name = "t12_proto"
path = "tests/t12_proto.rs"
[[test]]
name = "t14_modules"
path = "tests/t14_modules.rs"
[[test]]
name = "t15_heap_stats"
path = "tests/t15_heap_stats.rs"
[[test]]
name = "t1_smoke"
path = "tests/t1_smoke.rs"
[[test]]
name = "t2_format"
path = "tests/t2_format.rs"
[[test]]
name = "t3_stats"
path = "tests/t3_stats.rs"
[[test]]
name = "t4_accum"
path = "tests/t4_accum.rs"
[[test]]
name = "t5_stacks"
path = "tests/t5_stacks.rs"
[[test]]
name = "t6_concurrency"
path = "tests/t6_concurrency.rs"
[[test]]
name = "t8_query"
path = "tests/t8_query.rs"
[[test]]
name = "t9_stats"
path = "tests/t9_stats.rs"
[dependencies]
[dev-dependencies.regex]
version = "1"
[build-dependencies.cc]
version = "1.2"