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

* use 1.87 in CI, bump MSRV to 1.86 * update API baseline files (rustdoc json format change) * Add api-baseline regen guide to guidelines
30 lines
884 B
TOML
30 lines
884 B
TOML
[package]
|
|
name = "esp-riscv-rt"
|
|
version = "0.10.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"]
|