[package] name = "unkai" description = """ Unkai is a tool set for Rust's memory allocation APIs mainly focus on tracking and conditional analyzing / limiting memory usage. """ version = "0.2.0" edition = "2021" repository = "https://github.com/waynexia/unkai" authors = ["Ruihang Xia "] license = "MIT" keywords = ["allocator"] categories = ["memory-management"] readme = "README.md" [dependencies] backtrace = "0.3.66" dashmap = "5.4.0" once_cell = "1.14.0" [dev-dependencies] criterion = "0.3" tikv-jemallocator = "0.5.0" [[bench]] name = "jemalloc_global" harness = false [[bench]] name = "unkai_jemalloc_global" harness = false [[example]] name = "collections" [[example]] name = "allocator" [profile.dev] debug = true [profile.bench] debug = true