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

* Abstract out LP-core targeting packages * Encode targets_lp_core in Cargo.toml * Encode architecture compatibility in Cargo.toml * Move semver_checked into Cargo.toml * Cache parsed tomls * Parse simple feature sets from Cargo.toml * Move all basic feature rules to Cargo.toml * Add check configs * Limit command length on Windows * Update cargo.rs * Add clippy configs * Use a single syntax, use a single doc-config line * Fix known problems * Run cargo check in CI command * Fix more problems * Fix esp-storage
33 lines
902 B
TOML
33 lines
902 B
TOML
[package]
|
|
name = "esp-metadata-generated"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.86.0"
|
|
description = "Generated metadata for Espressif devices"
|
|
documentation = "https://docs.espressif.com/projects/rust/esp-metadata-generated/latest/"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[package.metadata.espressif]
|
|
check-configs = [
|
|
{ features = [] },
|
|
{ features = ["build-script"] },
|
|
]
|
|
clippy-configs = [] # don't waste time on this
|
|
|
|
[dependencies]
|
|
|
|
[build-dependencies]
|
|
esp-metadata = { version = "0.8.0", path = "../esp-metadata" } # TODO: remove
|
|
|
|
[features]
|
|
build-script = []
|
|
_device-selected = []
|
|
esp32 = ["_device-selected"]
|
|
esp32c2 = ["_device-selected"]
|
|
esp32c3 = ["_device-selected"]
|
|
esp32c6 = ["_device-selected"]
|
|
esp32h2 = ["_device-selected"]
|
|
esp32s2 = ["_device-selected"]
|
|
esp32s3 = ["_device-selected"]
|