[package]
name = "zkp-logging-allocator"
version = "0.1.0"
description = "Wrapper around the system allocator that logs large allocations"
repository = "https://github.com/0xProject/starkcrypto/tree/master/utils/logging-allocator"
keywords = ["logging", "allocator", "no-std"]
categories = ["algorithms", "rust-patterns", "memory-management", "no-std", "wasm"]
authors = [
"Remco Bloemen <remco@0x.org>",
"Mason Liang <mason@0x.org>",
"Paul Vienhage <paul@0x.org>"]
readme = "Readme.md"
license = "Apache-2.0"
edition = "2018"
[dependencies]
log = { version = "0.4.8", default_features = false }
[features]
default = [ "std", "enable" ]
std = [
"log/std",
]
enable = []