Skip to content

Commit

Permalink
Inherit settings from workspace.
Browse files Browse the repository at this point in the history
  • Loading branch information
dacut committed Oct 8, 2022
1 parent 39d1a76 commit 2617ada
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 15 deletions.
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@ members = [
"errors",
"principal",
]

[workspace.package]
authors = ["David Cuthbert <dacut@kanga.org"]
edition = "2021"
homepage = "https://github.com/dacut/scratchstack-core"
license = "MIT"
repository = "https://github.com/dacut/scratchstack-core"
version = "0.4.0"
14 changes: 7 additions & 7 deletions arn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "scratchstack-arn"
description = "Basic Amazon Resource Name (ARN) type"
authors = ["David Cuthbert <dacut@kanga.org>"]
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"
Expand Down
10 changes: 8 additions & 2 deletions errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
12 changes: 6 additions & 6 deletions principal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "scratchstack-aws-principal"
description = "Principal types for AWS/AWS-like services"
authors = ["David Cuthbert <dacut@kanga.org>"]
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" }

0 comments on commit 2617ada

Please sign in to comment.