From 6ee6392b01dcda3c63c42acfc41226e1415d3252 Mon Sep 17 00:00:00 2001 From: Till Wegmueller Date: Mon, 19 Jan 2026 00:25:47 +0100 Subject: [PATCH] Standardize `description`, `version`, `authors`, and `edition` fields across packages using workspace inheritance. --- Cargo.toml | 1 + libips/Cargo.toml | 2 +- pkg6/Cargo.toml | 1 + pkg6depotd/Cargo.toml | 2 +- pkg6repo/Cargo.toml | 2 +- pkgtree/Cargo.toml | 1 + ports/Cargo.toml | 1 + specfile/Cargo.toml | 1 + userland/Cargo.toml | 2 +- 9 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e7762a0..c09af6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ members = [ resolver = "2" [workspace.package] +description = "The Image Packaging System (IPS) for illumos" version = "0.5.1" edition = "2024" license-file = "LICENSE" diff --git a/libips/Cargo.toml b/libips/Cargo.toml index 52feee7..d2bbe3d 100644 --- a/libips/Cargo.toml +++ b/libips/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "libips" -description = "The core library for the rust version of the Image Packaging System. Includes Python bindings." +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/pkg6/Cargo.toml b/pkg6/Cargo.toml index 8e9f9f0..a4e101a 100644 --- a/pkg6/Cargo.toml +++ b/pkg6/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "pkg6" +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/pkg6depotd/Cargo.toml b/pkg6depotd/Cargo.toml index 46ba147..d932f06 100644 --- a/pkg6depotd/Cargo.toml +++ b/pkg6depotd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkg6depotd" -description = "The repository server for IPS written in rust" +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/pkg6repo/Cargo.toml b/pkg6repo/Cargo.toml index 98177f7..a597530 100644 --- a/pkg6repo/Cargo.toml +++ b/pkg6repo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkg6repo" -description = "The repository management utility for IPS written in rust" +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/pkgtree/Cargo.toml b/pkgtree/Cargo.toml index f553d8d..05dadbd 100644 --- a/pkgtree/Cargo.toml +++ b/pkgtree/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "pkgtree" +description.workspace = true version.workspace = true edition.workspace = true license-file.workspace = true diff --git a/ports/Cargo.toml b/ports/Cargo.toml index 5ea0c07..4da0ff9 100644 --- a/ports/Cargo.toml +++ b/ports/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "ports" +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/specfile/Cargo.toml b/specfile/Cargo.toml index 3f3aa3b..5536048 100644 --- a/specfile/Cargo.toml +++ b/specfile/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "specfile" +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true diff --git a/userland/Cargo.toml b/userland/Cargo.toml index 27133e8..570bac2 100644 --- a/userland/Cargo.toml +++ b/userland/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "userland" -description = "Helper tool for IPS package development" +description.workspace = true version.workspace = true authors.workspace = true edition.workspace = true