From 2617ada9cc101a925a8030860484fc7586a040f9 Mon Sep 17 00:00:00 2001 From: David Cuthbert Date: Fri, 7 Oct 2022 18:23:48 -0700 Subject: [PATCH] Inherit settings from workspace. --- Cargo.toml | 8 ++++++++ arn/Cargo.toml | 14 +++++++------- errors/Cargo.toml | 10 ++++++++-- principal/Cargo.toml | 12 ++++++------ 4 files changed, 29 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6574803..e319565 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,3 +4,11 @@ members = [ "errors", "principal", ] + +[workspace.package] +authors = ["David Cuthbert "] -edition = "2021" -license = "MIT" -version = "0.4.0" -keywords = ["AWS", "IAM", "ARN"] -homepage = "https://github.com/dacut/scratchstack-core" -repository = "https://github.com/dacut/scratchstack-core" +authors.workspace = true +edition.workspace = true +homepage.workspace = true +keywords = ["AWS", "IAM", "Aspen"] +license.workspace = true +repository.workspace = true +version.workspace = true [lib] name = "scratchstack_arn" diff --git a/errors/Cargo.toml b/errors/Cargo.toml index 952bacd..bec35e3 100644 --- a/errors/Cargo.toml +++ b/errors/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "scratchstack-errors" -version = "0.1.0" -edition = "2021" +description = "Error trait for AWS/AWS-like services" +authors.workspace = true +edition.workspace = true +homepage.workspace = true +keywords = ["AWS"] +license.workspace = true +repository.workspace = true +version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/principal/Cargo.toml b/principal/Cargo.toml index 5591ab4..c194203 100644 --- a/principal/Cargo.toml +++ b/principal/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "scratchstack-aws-principal" description = "Principal types for AWS/AWS-like services" -authors = ["David Cuthbert "] -edition = "2021" -license = "MIT" -version = "0.4.0" +authors.workspace = true +edition.workspace = true +homepage.workspace = true keywords = ["AWS", "IAM", "Aspen"] -homepage = "https://github.com/dacut/scratchstack-core" -repository = "https://github.com/dacut/scratchstack-core" +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] scratchstack-arn = { version = "0.4.0", path = "../arn" }