[package]
name = "parity-util-mem"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "Collection of memory related utilities"
license = "MIT OR Apache-2.0"
edition = "2018"
links = "parity-util-mem-ban-duplicates"
build = "build.rs"
[dependencies]
cfg-if = "1.0.0"
dlmalloc = { version = "0.2.1", features = ["global"], optional = true }
wee_alloc = { version = "0.4.5", optional = true }
lru = { version = "0.6", optional = true }
hashbrown = { version = "0.9", optional = true }
mimalloc = { version = "0.1.18", optional = true }
libmimalloc-sys = { version = "0.1.14", optional = true }
parity-util-mem-derive = { path = "derive", version = "0.1" }
impl-trait-for-tuples = "0.2.0"
smallvec = { version = "1.0.0", optional = true }
ethereum-types = { version = "0.11.0", optional = true, path = "../ethereum-types" }
parking_lot = { version = "0.11.1", optional = true }
primitive-types = { version = "0.9", path = "../primitive-types", default-features = false, optional = true }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.8", features = ["heapapi"] }
[target.'cfg(not(target_os = "windows"))'.dependencies.jemallocator]
version = "0.3.2"
optional = true
[features]
default = ["std", "ethereum-impls", "lru", "hashbrown", "smallvec", "primitive-types"]
std = ["parking_lot"]
dlmalloc-global = ["dlmalloc", "estimate-heapsize"]
weealloc-global = ["wee_alloc", "estimate-heapsize"]
jemalloc-global = ["jemallocator"]
mimalloc-global = ["mimalloc", "libmimalloc-sys"]
ethereum-impls = ["ethereum-types", "primitive-types"]
estimate-heapsize = []