-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dist: Place shared package attributes in workspace
Cargo.toml
- Loading branch information
Showing
3 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,14 @@ | |
resolver = "2" | ||
members = ["crates/*"] | ||
|
||
[workspace.package] | ||
keywords = ["sops", "encryption", "config"] | ||
authors = ["Gabriel Hansson <[email protected]>"] | ||
repository = "https://github.com/gibbz00/rops" | ||
license = "MPL-2.0" | ||
exclude = ["/.github"] | ||
edition = "2021" | ||
|
||
[workspace.dependencies] | ||
aes-gcm = { version = "0.10", features = ["std"] } | ||
age = "0.9" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
name = "rops-cli" | ||
version = "0.1.0" | ||
description = "SOPS CLI alternative in pure Rust" | ||
license = "MPL-2.0" | ||
authors = ["Gabriel Hansson <[email protected]>"] | ||
repository = "https://github.com/gibbz00/rops" | ||
keywords = ["sops", "encryption", "config"] | ||
categories = ["cryptography", "command-line-utilities"] | ||
exclude = ["/.github"] | ||
edition = "2021" | ||
license.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
keywords.workspace = true | ||
exclude.workspace = true | ||
edition.workspace = true | ||
|
||
[[bin]] | ||
name = "rops" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "rops" | ||
version = "0.1.0" | ||
description = "SOPS library in pure Rust" | ||
license = "MPL-2.0" | ||
authors = ["Gabriel Hansson <[email protected]>"] | ||
repository = "https://github.com/gibbz00/rops" | ||
keywords = ["sops", "encryption", "config"] | ||
description = "SOPS-like library in pure Rust" | ||
categories = ["cryptography"] | ||
exclude = ["/.github"] | ||
edition = "2021" | ||
license.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
keywords.workspace = true | ||
exclude.workspace = true | ||
edition.workspace = true | ||
|
||
[features] | ||
default = ["age", "aws-kms", "yaml", "json", "toml", "aes-gcm", "sha2"] | ||
|