[package]
edition = "2021"
name = "picoalloc"
version = "5.2.1"
authors = ["Jan Bujak <jan@parity.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple, small and fast memory allocator"
homepage = "https://github.com/koute/picoalloc"
documentation = "https://docs.rs/picoalloc/*/picoalloc/"
readme = "README.md"
keywords = ["allocator"]
categories = ["memory-management"]
license = "MIT/Apache-2.0"
repository = "https://github.com/koute/picoalloc"
[profile.dev]
panic = "abort"
[profile.release]
opt-level = "s"
lto = "fat"
debug = 2
panic = "abort"
[lib]
name = "picoalloc"
path = "src/lib.rs"
[dependencies.polkavm-derive]
version = "0.25.0"
optional = true
[features]
corevm = ["dep:polkavm-derive"]
default = ["realloc_inplace"]
global_allocator_libc = []
global_allocator_rust = []
paranoid = ["strict_provenance"]
realloc_inplace = []
strict_provenance = []