[package]
name = "alloc_cat"
version = "1.1.0"
edition = "2024"
license-file = "LICENSES.md"
description = "a simple allocator for small-to-tiny Wasm projects in rust"
categories = [ "memory-management", "no-std", "wasm" ]
keywords = [ "allocator", "no_std" ]
repository = "https://code.lag.net/robey/alloc_cat"
readme = "README.md"
[lib]
crate-type = [ "cdylib", "rlib" ]
[features]
default = [ "system_allocator" ]
system_allocator = []
audit_sizes = []
[dependencies]
arr_macro = "0.2.1"
cfg-if = "1.0.0"
memmap2 = "0.9.4"
spin = { version = "0.9.8", default-features = false, features = [ "spin_mutex", "once" ] }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"