ealloc 0.10.0

no_std memory allocator with pluggable free-block management strategies (TLSF, first-fit, half-tree)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"