esp-hal/esp-riscv-rt/Cargo.toml
2025-06-03 12:30:48 +00:00

30 lines
884 B
TOML

[package]
name = "esp-riscv-rt"
version = "0.11.0"
edition = "2024"
rust-version = "1.86.0"
description = "Minimal runtime / startup for RISC-V CPUs from Espressif"
documentation = "https://docs.espressif.com/projects/rust/esp-riscv-rt/latest/"
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"
[lib]
bench = false
test = false
[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"]