From 616af0f4c0c8f0f75a232a867ca78f3626a583cf Mon Sep 17 00:00:00 2001 From: Chris Wong <lambda.fairy@gmail.com> Date: Mon, 11 Mar 2024 00:52:51 +1100 Subject: [PATCH] Reduce duplication in `Cargo.toml` (#426) --- Cargo.toml | 7 +++++++ maud/Cargo.toml | 11 ++++++----- maud_macros/Cargo.toml | 13 +++++++------ 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a9a374b..956f33f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,3 +8,10 @@ exclude = [ "doctest", ] resolver = "2" + +[workspace.package] +authors = ["Chris Wong <lambda.fairy@gmail.com>"] +license = "MIT OR Apache-2.0" +homepage = "https://maud.lambda.xyz/" +repository = "https://github.com/lambda-fairy/maud" +edition = "2021" diff --git a/maud/Cargo.toml b/maud/Cargo.toml index 706853d..fe9894f 100644 --- a/maud/Cargo.toml +++ b/maud/Cargo.toml @@ -2,14 +2,15 @@ name = "maud" # When releasing a new version, please update html_root_url in src/lib.rs version = "0.26.0" -authors = ["Chris Wong <lambda.fairy@gmail.com>"] -license = "MIT/Apache-2.0" documentation = "https://docs.rs/maud/" -homepage = "https://maud.lambda.xyz/" -repository = "https://github.com/lambda-fairy/maud" description = "Compile-time HTML templates." categories = ["template-engine"] -edition = "2021" + +authors.workspace = true +license.workspace = true +homepage.workspace = true +repository.workspace = true +edition.workspace = true [features] default = [] diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml index 0a342f7..1a938be 100644 --- a/maud_macros/Cargo.toml +++ b/maud_macros/Cargo.toml @@ -2,13 +2,14 @@ name = "maud_macros" # When releasing a new version, please update html_root_url in src/lib.rs version = "0.26.0" -authors = ["Chris Wong <lambda.fairy@gmail.com>"] -license = "MIT/Apache-2.0" documentation = "https://docs.rs/maud_macros/" -homepage = "https://maud.lambda.xyz/" -repository = "https://github.com/lambda-fairy/maud" -description = "Compile-time HTML templates." -edition = "2021" +description = "Internal crate. Please use 'maud' instead." + +authors.workspace = true +license.workspace = true +homepage.workspace = true +repository.workspace = true +edition.workspace = true [dependencies] syn = "2"