esp-hal/xtask/Cargo.toml
Jesse Braham 513a063547
Create an xtask subcommand to generate eFuse fields (#1258)
* Use the `xtask` to generate eFuse fields from CSV, instead of at build time

* Rewrite the CSV parser so that it can handle the newer eFuse definitions

* Regenerate eFuse field definitions from latest ESP-IDF commit

* Include generation date and ESP-IDF commit hash in file headers
2024-03-11 14:22:31 +00:00

18 lines
426 B
TOML

[package]
name = "xtask"
version = "0.0.0"
edition = "2021"
publish = false
[dependencies]
anyhow = "1.0.79"
chrono = "0.4.35"
clap = { version = "4.5.0", features = ["derive"] }
csv = "1.3.0"
env_logger = "0.11.1"
log = "0.4.20"
semver = "1.0.21"
serde = { version = "1.0.197", features = ["derive"] }
strum = { version = "0.26.1", features = ["derive"] }
toml_edit = "0.22.5"