esp-hal/esp-alloc/Cargo.toml
2025-10-30 10:31:30 +00:00

83 lines
2.3 KiB
TOML

[package]
name = "esp-alloc"
version = "0.9.0"
edition = "2024"
rust-version = "1.86.0"
description = "A heap allocator for Espressif devices"
documentation = "https://docs.espressif.com/projects/rust/esp-alloc/latest/"
keywords = ["allocator", "embedded", "esp32", "espressif", "memory"]
categories = ["embedded", "memory-management", "no-std"]
repository = "https://github.com/esp-rs/esp-hal"
license = "MIT OR Apache-2.0"
[package.metadata.espressif]
doc-config = { features = ["defmt"] }
check-configs = [
{ features = [] },
{ features = ["defmt"] }
]
clippy-configs = [
{ features = ["defmt"] },
]
[package.metadata.docs.rs]
default-target = "riscv32imc-unknown-none-elf"
features = ["nightly"]
[lib]
bench = false
test = false
[dependencies]
allocator-api2 = { version = "0.3.0", default-features = false }
defmt = { version = "1.0.1", optional = true }
cfg-if = "1"
enumset = "1"
esp-sync = { version = "0.1.1", path = "../esp-sync" }
document-features = "0.2"
linked_list_allocator = { version = "0.10.5", default-features = false, features = ["const_mut_refs"] }
rlsf = { version = "0.2", features = ["unstable"] }
[build-dependencies]
esp-config = { version = "0.6.1", path = "../esp-config", features = ["build"] }
[features]
default = ["compat"]
## Enable nightly rustc-only features, like `feature(allocator_api)`.
nightly = []
## Implement `defmt::Format` on certain types.
defmt = ["dep:defmt", "enumset/defmt"]
## Enable this feature if you want to keep stats about the internal heap usage such as:
## - Max memory usage since initialization of the heap
## - Total allocated memory since initialization of the heap
## - Total freed memory since initialization of the heap
##
## ⚠️ Note: Enabling this feature will require extra computation every time alloc/dealloc is called.
internal-heap-stats = []
## Provide C-compatibility functions (malloc, free, ...)
compat = []
#! ### Chip selection
#! One of the following features must be enabled to select the target chip:
##
esp32c2 = ["esp-sync/esp32c2"]
##
esp32c3 = ["esp-sync/esp32c3"]
##
esp32c6 = ["esp-sync/esp32c6"]
##
esp32h2 = ["esp-sync/esp32h2"]
##
esp32 = ["esp-sync/esp32"]
##
esp32s2 = ["esp-sync/esp32s2"]
##
esp32s3 = ["esp-sync/esp32s3"]