mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 12:50:53 +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
31 lines
876 B
TOML
31 lines
876 B
TOML
[package]
|
|
name = "esp-metadata"
|
|
version = "0.8.0"
|
|
edition = "2024"
|
|
rust-version = "1.86.0"
|
|
description = "Metadata for Espressif devices"
|
|
documentation = "https://docs.espressif.com/projects/rust/esp-metadata/latest/"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[package.metadata.espressif]
|
|
check-configs = [
|
|
{ features = [] },
|
|
{ features = ["clap"] },
|
|
]
|
|
clippy-configs = [] # don't waste time on this
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "4.5", features = ["derive"], optional = true }
|
|
basic-toml = "0.1"
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
strum = { version = "0.27", features = ["derive"] }
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
indexmap = { version = "2", features = ["serde"] }
|
|
|
|
[features]
|
|
default = []
|
|
clap = ["dep:clap"]
|