* esp-wifi uses global allocator, esp-alloc supports multiple regions * CHANGELOG.md * Apply suggestions * Use `alloc` when linting esp-wifi * Make coex example build for ESP32 * Re-enable some wifi examples for ESP32-S2 * Optionally depend on `esp-alloc` (by default) * Rename INSTANCE -> HEAP
33 lines
701 B
TOML
33 lines
701 B
TOML
[package]
|
|
name = "esp-alloc"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
rust-version = "1.68"
|
|
description = "A heap allocator for Espressif devices"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = [
|
|
"allocator",
|
|
"esp32",
|
|
"riscv",
|
|
"xtensa",
|
|
]
|
|
categories = [
|
|
"memory-management",
|
|
"no-std",
|
|
]
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = "riscv32imc-unknown-none-elf"
|
|
features = ["nightly"]
|
|
|
|
[dependencies]
|
|
critical-section = "1.1.3"
|
|
enumset = "1.1.5"
|
|
linked_list_allocator = { version = "0.10.5", default-features = false, features = ["const_mut_refs"] }
|
|
|
|
[features]
|
|
default = []
|
|
nightly = []
|