mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 04:40:52 +00:00

* Bump dependencies and version numbers of packages to be published * Update relevant `CHANGELOG.md` files
32 lines
669 B
TOML
32 lines
669 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.2"
|
|
linked_list_allocator = { version = "0.10.5", default-features = false, features = ["const_mut_refs"] }
|
|
|
|
[features]
|
|
default = []
|
|
nightly = []
|