mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 20:30:35 +00:00

* Add xtask command check-unused-deps and remove unused deps/features * fix changelog * reviews, move check into nightly-ci * reviews * readd document-features to esp-preemt * Just cargo machete
48 lines
1.0 KiB
TOML
48 lines
1.0 KiB
TOML
[package]
|
|
name = "esp-rom-sys"
|
|
version = "0.1.1"
|
|
edition = "2024"
|
|
rust-version = "1.87.0"
|
|
description = "ROM code support"
|
|
documentation = "https://docs.espressif.com/projects/rust/esp-rom-sys/latest/"
|
|
keywords = ["embedded", "esp32", "espressif"]
|
|
categories = ["embedded", "hardware-support", "no-std"]
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
links = "esp_rom_sys"
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = "riscv32imac-unknown-none-elf"
|
|
features = ["esp32c6"]
|
|
|
|
[lib]
|
|
bench = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.1"
|
|
document-features = "0.2.11"
|
|
|
|
[build-dependencies]
|
|
esp-metadata-generated = { version = "0.1.0", path = "../esp-metadata-generated", features = ["build-script"] }
|
|
|
|
[features]
|
|
#! ### Chip selection
|
|
#! One of the following features must be enabled to select the target chip:
|
|
|
|
##
|
|
esp32 = []
|
|
##
|
|
esp32c2 = []
|
|
##
|
|
esp32c3 = []
|
|
##
|
|
esp32c6 = []
|
|
##
|
|
esp32h2 = []
|
|
##
|
|
esp32s2 = []
|
|
##
|
|
esp32s3 = []
|