From 0339198faf8544aaf2ca182c018658627670ff03 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 10 May 2023 10:15:58 +0200 Subject: [PATCH] use workspace package variables Signed-off-by: Wolfgang Bumiller --- Cargo.toml | 6 ++++++ perlmod-macro/Cargo.toml | 7 ++++--- perlmod/Cargo.toml | 7 ++++--- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3d306f9..8e927bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,3 +7,9 @@ members = [ exclude = [ "build", ] + +[workspace.package] +authors = ["Proxmox Support Team "] +edition = "2021" +license = "Apache-2.0 OR MIT" +repository = "https://git.proxmox.com/?p=perlmod.git" diff --git a/perlmod-macro/Cargo.toml b/perlmod-macro/Cargo.toml index 90f245f..f95ed6a 100644 --- a/perlmod-macro/Cargo.toml +++ b/perlmod-macro/Cargo.toml @@ -1,13 +1,14 @@ [package] name = "perlmod-macro" version = "0.8.0" -authors = ["Wolfgang Bumiller "] -edition = "2021" build = "build.rs" -license = "Apache-2.0 OR MIT" categories = [ "API bindings" ] keywords = [ "ffi", "perl" ] description = "perl package macros to create perl package bindings from rust at compile time" +authors.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true exclude = [ "debian" ] diff --git a/perlmod/Cargo.toml b/perlmod/Cargo.toml index b4d3cd2..2907c51 100644 --- a/perlmod/Cargo.toml +++ b/perlmod/Cargo.toml @@ -1,13 +1,14 @@ [package] name = "perlmod" version = "0.13.1" -authors = ["Wolfgang Bumiller "] -edition = "2021" build = "build.rs" -license = "Apache-2.0 OR MIT" categories = [ "API bindings" ] keywords = [ "ffi", "perl" ] description = "ffi & serde code for limited interaction with perl code" +authors.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true exclude = [ "debian" ]