From c5441f8de23d0330abb13169d7fa8d6f6450b811 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sun, 14 May 2023 16:51:57 -0500 Subject: [PATCH] Update workspace metadata --- Cargo.toml | 14 ++++++++++++++ binrw/Cargo.toml | 21 +++++++++------------ binrw_derive/Cargo.toml | 18 +++++++----------- 3 files changed, 30 insertions(+), 23 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 911176b0..f22356ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,3 +3,17 @@ members = [ "binrw", "binrw_derive" ] + +[workspace.package] +authors = [ + "jam1garner ", + "Colin Snover ", + "Kitlith ", + "roblabla " +] +documentation = "https://docs.rs/binrw" +edition = "2021" +homepage = "https://binrw.rs" +license = "MIT" +repository = "https://github.com/jam1garner/binrw" +version = "0.11.1" diff --git a/binrw/Cargo.toml b/binrw/Cargo.toml index e1dc12ac..92e6ed24 100644 --- a/binrw/Cargo.toml +++ b/binrw/Cargo.toml @@ -1,19 +1,16 @@ [package] name = "binrw" -version = "0.11.1" -authors = [ - "jam1garner ", - "Colin Snover ", - "Kitlith ", - "roblabla " -] -edition = "2021" -repository = "https://github.com/jam1garner/binrw" -license = "MIT" description = "A Rust crate for helping read structs from binary data using ✨macro magic✨" +categories = [ "encoding", "parsing" ] +keywords = [ "binary", "encode", "decode", "serialize", "deserialize" ] readme = "../README.md" -documentation = "https://docs.rs/binrw" -homepage = "https://binrw.rs" +authors.workspace = true +documentation.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] array-init = "2.0" diff --git a/binrw_derive/Cargo.toml b/binrw_derive/Cargo.toml index 6341febd..cd5aac30 100644 --- a/binrw_derive/Cargo.toml +++ b/binrw_derive/Cargo.toml @@ -1,17 +1,13 @@ [package] name = "binrw_derive" -version = "0.11.1" -authors = [ - "jam1garner ", - "Colin Snover ", - "Kitlith ", - "roblabla " -] -edition = "2021" description = "Derive macro for binrw" -repository = "https://github.com/jam1garner/binrw" -license = "MIT" -homepage = "https://binrw.rs" +authors.workspace = true +documentation.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [lib] proc-macro = true