[package]
edition = "2024"
rust-version = "1.87.0"
name = "ealloc"
version = "0.10.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std memory allocator with pluggable free-block management strategies (TLSF, first-fit, half-tree)"
documentation = "https://docs.rs/ealloc"
readme = "README.md"
keywords = [
"allocator",
"no-std",
"embedded",
"tlsf",
"first-fit",
]
categories = [
"embedded",
"no-std",
"memory-management",
]
license = "MIT"
repository = "https://github.com/pbl-pw/ecore"
[features]
std = []
test-utils = [
"std",
"dep:rand",
]
[lib]
name = "ealloc"
path = "src/lib.rs"
[[test]]
name = "alloc"
path = "tests/alloc.rs"
[dependencies.const-default]
version = "1"
default-features = false
[dependencies.ecore]
version = "0.10.0"
[dependencies.rand]
version = "0"
optional = true
[dev-dependencies.portable-atomic]
version = "1"