[package]
edition = "2018"
name = "alloc_counter"
version = "0.0.1"
authors = ["The SiO4 Project Developers <https://gitlab.com/sio4>"]
description = "Count allocations, reallocations, deallocations. Allow, deny, or forbid allocations on an expression or function basis."
documentation = "https://docs.rs/alloc_counter"
keywords = ["debugging", "profiling", "analysis", "allocation", "counter"]
categories = ["development-tools::debugging", "development-tools::profiling", "development-tools::testing", "memory-management", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/sio4/code/alloc-counter"
[dependencies.alloc_counter_macro]
version = "0.0.0"
optional = true
[features]
counters = []
default = ["std", "counters", "no_alloc", "alloc_counter_macro"]
no_alloc = []
std = []