esp-hal/esp-riscv-rt/Cargo.toml
Jesse Braham fd2bdefaab
New package releases (#3163)
* Update dependencies and bump version numbers

* Update `CHANGELOG.md` for each package being published

* Update repo-level `README.md`

* Use older nightly to resolve CI issues

* also release esp-backtrace and esp-metadata

* Cleanup

---------

Co-authored-by: Scott Mabin <scott@mabez.dev>
2025-02-24 13:32:29 +00:00

28 lines
771 B
TOML

[package]
name = "esp-riscv-rt"
version = "0.10.0"
edition = "2021"
rust-version = "1.84.0"
description = "Minimal runtime / startup for RISC-V CPUs from Espressif"
keywords = ["esp32", "espressif", "riscv", "runtime", "startup"]
categories = ["embedded", "hardware-support", "no-std"]
repository = "https://github.com/esp-rs/esp-hal"
license = "MIT OR Apache-2.0"
[dependencies]
document-features = "0.2.11"
riscv = "0.12.1"
riscv-rt-macros = "0.4.0"
[features]
## Indicate that the device supports `mie` and `mip` instructions.
has-mie-mip = []
## Indicate that the device has RTC RAM.
rtc-ram = []
# This feature is intended for testing; you probably don't want to enable it:
ci = [
"has-mie-mip",
"rtc-ram",
]