Add package metadata to all packages

This commit is contained in:
Jan-Henrik 2022-04-19 12:12:54 +02:00
parent 65a410c6b1
commit babaf0a6f9
3 changed files with 13 additions and 3 deletions

View file

@ -1,5 +1,6 @@
[package]
name = "moonboot"
description = "OTA Bootloader Construction Framework for Rust no_std environments"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"

View file

@ -1,7 +1,13 @@
[package]
name = "moonboot-codegen"
description = "Code generation helpers for moonboot bootloader framework"
version = "0.1.0-dev"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
repository = "https://github.com/jhbruhn/moonboot"
keywords = ["embedded", "no_std", "bootloader", "framework", "ota", "fota", "updater"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -1,9 +1,12 @@
[package]
authors = ["Jan-Henrik Bruhn <hi@jhbruhn.de>"]
description = "moonboot macros"
edition = "2018"
description = "Macros for moonboot bootloader framework"
edition = "2021"
name = "moonboot-macros"
version = "0.1.0-dev"
license = "MIT OR Apache-2.0"
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
repository = "https://github.com/jhbruhn/moonboot"
keywords = ["embedded", "no_std", "bootloader", "framework", "ota", "fota", "updater"]
[lib]
proc-macro = true