2022-04-19 08:36:20 +00:00
|
|
|
[package]
|
2022-04-19 10:12:54 +00:00
|
|
|
description = "Macros for moonboot bootloader framework"
|
|
|
|
edition = "2021"
|
2022-04-19 08:36:20 +00:00
|
|
|
name = "moonboot-macros"
|
2022-04-19 10:44:43 +00:00
|
|
|
version = "0.1.2"
|
2022-04-19 10:12:54 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
|
|
|
repository = "https://github.com/jhbruhn/moonboot"
|
2022-04-19 10:20:52 +00:00
|
|
|
keywords = ["embedded", "no_std", "bootloader", "framework", "fota"]
|
2022-04-19 08:36:20 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proc-macro-error = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
2022-04-19 10:14:11 +00:00
|
|
|
|
|
|
|
[package.metadata.release]
|
2022-04-19 10:26:40 +00:00
|
|
|
shared-version = true
|
2022-04-19 10:44:10 +00:00
|
|
|
dependent-version = "upgrade"
|