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

* Add additional `cfg` gates to re-exports in `esp-hal-common` This leaves only `clock`, `delay`, `peripheral`, `prelude`, `rom`, and `soc` *not* behind `cfg`s * Simplify the prelude, update its `cfg`s, and re-export some missing traits * Update various dependencies
36 lines
759 B
TOML
36 lines
759 B
TOML
[package]
|
|
name = "esp-hal-procmacros"
|
|
version = "0.4.0"
|
|
authors = [
|
|
"Jesse Braham <jesse@beta7.io>",
|
|
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
|
]
|
|
edition = "2021"
|
|
rust-version = "1.65.0"
|
|
description = "Procedural macros for ESP-HAL"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
darling = "0.14.4"
|
|
proc-macro-crate = "1.3.1"
|
|
proc-macro-error = "1.0.4"
|
|
proc-macro2 = "1.0.52"
|
|
quote = "1.0.26"
|
|
syn = {version = "1.0.109", features = ["extra-traits", "full"]}
|
|
|
|
[features]
|
|
interrupt = []
|
|
riscv = []
|
|
rtc_slow = []
|
|
xtensa = []
|
|
esp32 = []
|
|
esp32c2 = []
|
|
esp32c3 = []
|
|
esp32c6 = []
|
|
esp32s2 = []
|
|
esp32s3 = []
|