* Add .iram section for ESP32C3, make it possible to use direct-boot or normal-boot * Add ram proc-macro
25 lines
518 B
TOML
25 lines
518 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"
|
|
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]
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
darling = "0.10"
|
|
syn = {version = "1.0", features = ["extra-traits", "full"]}
|
|
proc-macro-error = "1.0.4"
|
|
|
|
[features]
|
|
rtc_slow = []
|