lite-alloc 0.1.0

A lightweight, single-threaded memory allocator designed for WebAssembly and embedded systems.
Documentation
[[bench]]
harness = false
name = "alloc_bench"
path = "benches/alloc_bench.rs"

[dependencies]

[dev-dependencies.criterion]
version = "0.7"

[features]
realloc = []

[lib]
name = "lite_alloc"
path = "src/lib.rs"

[package]
authors = ["ShaoG <shaog.rs@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["memory-management", "embedded", "wasm", "no-std"]
description = "A lightweight, single-threaded memory allocator designed for WebAssembly and embedded systems."
documentation = "https://docs.rs/lite-alloc"
edition = "2024"
homepage = "https://github.com/ShaoG-R/lite-alloc"
include = ["src/**/*", "tests/**/*", "benches/**/*", "Cargo.toml", "README.md", "README_CN.md", "LICENSE"]
keywords = ["allocator", "wasm", "no_std", "embedded", "memory"]
license = "MIT"
name = "lite-alloc"
readme = "README.md"
repository = "https://github.com/ShaoG-R/lite-alloc"
version = "0.1.0"

[profile.release]
lto = true
opt-level = "z"

[[test]]
name = "bump_freelist_tests"
path = "tests/bump_freelist_tests.rs"

[[test]]
name = "freelist_tests"
path = "tests/freelist_tests.rs"

[[test]]
name = "segregated_bump_tests"
path = "tests/segregated_bump_tests.rs"