M Cargo.toml => Cargo.toml +8 -0
@@ 1,8 1,16 @@
[package]
name = "avr-device"
version = "0.1.0"
+
authors = ["Rahix <rahix@rahix.de>"]
edition = "2018"
+description = "Register access crate for AVR microcontrollers"
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/Rahix/avr-device"
+readme = "README.md"
+keywords = ["avr", "arduino"]
+categories = ["no-std", "embedded", "hardware-support"]
+
build = "build.rs"
[features]
M macros/Cargo.toml => macros/Cargo.toml +4 -0
@@ 1,8 1,12 @@
[package]
name = "avr-device-macros"
version = "0.1.0"
+
authors = ["Rahix <rahix@rahix.de>"]
edition = "2018"
+description = "Attribute macros for re-export in `avr-device`"
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/Rahix/avr-device"
[lib]
proc-macro = true