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

* Include the `esp-riscv-rt` package in VS Code workspace * Fix a couple warnings * Update dependencies * Top-level README improvements
39 lines
808 B
TOML
39 lines
808 B
TOML
[package]
|
|
name = "esp-hal-procmacros"
|
|
version = "0.5.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"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["esp32c3", "interrupt"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
darling = "0.20.1"
|
|
proc-macro-crate = "1.3.1"
|
|
proc-macro-error = "1.0.4"
|
|
proc-macro2 = "1.0.63"
|
|
quote = "1.0.28"
|
|
syn = {version = "2.0.22", features = ["extra-traits", "full"]}
|
|
|
|
[features]
|
|
esp32 = []
|
|
esp32c2 = []
|
|
esp32c3 = []
|
|
esp32c6 = []
|
|
esp32h2 = []
|
|
esp32s2 = []
|
|
esp32s3 = []
|
|
|
|
interrupt = []
|
|
rtc_slow = []
|