usb-avr-lib/static_pins/static_pins_macros/Cargo.toml

31 lines
484 B
TOML

[package]
name = "static_pins_macros"
version = "0.1.0"
edition = "2021"
[lib]
test = false
proc_macro = true
[dependencies]
quote = "1.0.39"
syn = "2.0.58"
proc-macro2 = "1.0.94"
[dependencies.arduino-hal]
git = "https://github.com/rahix/avr-hal"
rev = "3e362624547462928a219c40f9ea8e3a64f21e5f"
features = ["sparkfun-promicro"]
[profile.dev]
panic = "abort"
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"