mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 12:50:53 +00:00
24 lines
727 B
TOML
24 lines
727 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"
|
|
|
|
[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"]
|