* Add the `rust-version` key to each Cargo manifest * Normalize dependencies and features in each Cargo manifest * Enable all features in CI when checking examples * Update the top-level README
29 lines
641 B
TOML
29 lines
641 B
TOML
[package]
|
|
name = "esp-hal-procmacros"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Jesse Braham <jesse@beta7.io>",
|
|
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
|
]
|
|
edition = "2021"
|
|
rust-version = "1.60.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.1"
|
|
proc-macro-error = "1.0.4"
|
|
proc-macro2 = "1.0.43"
|
|
quote = "1.0.21"
|
|
syn = {version = "1.0.99", features = ["extra-traits", "full"]}
|
|
|
|
[features]
|
|
interrupt = []
|
|
riscv = []
|
|
rtc_slow = []
|
|
xtensa = []
|