[package] name = "ruspiro-interrupt-macros" authors = ["Andre Borrmann "] version = "0.5.0" # remember to update html_root_url description = """ Macros used to implement interrupt handler. !!This crate is only useful in conjunction with the `ruspiro-interrupt` crate and shall never be used standalone!! """ license = "Apache-2.0" repository = "https://github.com/RusPiRo/ruspiro-interrupt/tree/v0.5.0" documentation = "https://docs.rs/ruspiro-interrupt/0.5.0" readme = "README.md" keywords = ["RusPiRo", "baremetal", "raspberrypi", "interrupt"] categories = ["no-std", "embedded"] edition = "2021" [lib] proc-macro = true [dependencies] syn = { version = "~1.0", features = ["extra-traits", "full"] } quote = "~1.0" [features] async = []