From c125b77683f1166bf3fc142dd26e07c6fbd86077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Fri, 6 Sep 2024 05:11:57 +0200 Subject: [PATCH] refactor: deduplicate `nix-weather` cargo manifest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- Cargo.toml | 6 +++++- crates/nix-weather/Cargo.toml | 12 ++++++------ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b940fa4..653a2c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,9 +7,13 @@ resolver = "2" members = ["crates/*", "crates/workspace-hack"] [workspace.package] +description = "Guix weather, for nix!" version = "0.0.1" edition = "2021" -rust-version = "1.80" +rust-version = "1.81" +license = "EUPL-1.2" +authors = ["Christina Sørensen "] +categories = ["command-line-utilities"] [workspace.metadata.crane] name = "nix-weather" diff --git a/crates/nix-weather/Cargo.toml b/crates/nix-weather/Cargo.toml index 8140899..fde77fb 100644 --- a/crates/nix-weather/Cargo.toml +++ b/crates/nix-weather/Cargo.toml @@ -5,14 +5,14 @@ [package] name = "nix-weather" -description = "Guix weather, for nix!" -authors = ["Christina Sørensen "] -categories = ["command-line-utilities"] -rust-version = "1.80.1" -license = "EUPL-1.2" +description.workspace = true +authors.workspace = true +categories.workspace = true +license.workspace = true +rust-version.workspace = true version.workspace = true edition.workspace = true -publish = false +publish = true build = "build.rs" [dependencies]