diff --git a/dot15d4-frame/Cargo.toml b/dot15d4-frame/Cargo.toml index c656e74..c954434 100644 --- a/dot15d4-frame/Cargo.toml +++ b/dot15d4-frame/Cargo.toml @@ -2,12 +2,15 @@ name = "dot15d4-frame" version = "0.1.0" edition = "2021" +authors = ["Thibaut Vandervelden "] +repository = "https://github.com/thvdveld/dot15d4" +description = "Frame parsing and building for the dot15d4 crate" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dot15d4-macros = { path = "../dot15d4-macros" } +dot15d4-macros = { version = "0.1.0", path = "../dot15d4-macros" } bitflags = "2.4.2" heapless = "0.8.0" diff --git a/dot15d4/Cargo.toml b/dot15d4/Cargo.toml index 81debd0..ce6f1b7 100644 --- a/dot15d4/Cargo.toml +++ b/dot15d4/Cargo.toml @@ -2,12 +2,14 @@ name = "dot15d4" version = "0.1.0" edition = "2021" +repository = "https://github.com/thvdveld/dot15d4" +description = "IEEE 802.15.4 implementation in Rust" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dot15d4-frame = { path = "../dot15d4-frame" } +dot15d4-frame = { version = "0.1.0", path = "../dot15d4-frame" } log = { version = "0.4.21", optional = true } defmt = { version = "0.3", optional = true }