[package] name = "memusage" version = "0.2.0" edition = "2021" authors = ["Andres "] description = "Small trait utility to keep track of the memory usage of structs" readme = "README.md" repository = "https://github.com/micro-rust/memusage" license-file = "LICENSE" keywords = ["utility", "memory", "usage"] categories = ["memory-management"] [dependencies] [features] # Enable alloc types by default. default = ["alloc", "std"] # Enable alloc types. alloc = [] # Enable std types. std = []