-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #462 from jpculp/release-updates
Prepare crate releases
- Loading branch information
Showing
9 changed files
with
59 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
[package] | ||
name = "tough-kms" | ||
version = "0.3.5" | ||
version = "0.3.6" | ||
description = "Implements AWS KMS as a key source for TUF signing keys" | ||
authors = ["Shailesh Gothi <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -15,7 +15,7 @@ rusoto-native-tls = ["rusoto_core/native-tls", "rusoto_credential", "rusoto_kms/ | |
rusoto-rustls = ["rusoto_core/rustls", "rusoto_credential", "rusoto_kms/rustls"] | ||
|
||
[dependencies] | ||
tough = { version = "0.12.0", path = "../tough", features = ["http"] } | ||
tough = { version = "0.12.2", path = "../tough", features = ["http"] } | ||
ring = { version = "0.16.16", features = ["std"] } | ||
rusoto_core = { version = "0.48", optional = true, default-features = false } | ||
rusoto_credential = { version = "0.48", optional = true } | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "tough-ssm" | ||
version = "0.6.5" | ||
version = "0.6.6" | ||
description = "Implements AWS SSM as a key source for TUF signing keys" | ||
authors = ["Zac Mrowicki <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -15,7 +15,7 @@ rusoto-native-tls = ["rusoto_core/native-tls", "rusoto_credential", "rusoto_ssm/ | |
rusoto-rustls = ["rusoto_core/rustls", "rusoto_credential", "rusoto_ssm/rustls"] | ||
|
||
[dependencies] | ||
tough = { version = "0.12.0", path = "../tough", features = ["http"] } | ||
tough = { version = "0.12.2", path = "../tough", features = ["http"] } | ||
rusoto_core = { version = "0.48", optional = true, default-features = false } | ||
rusoto_credential = { version = "0.48", optional = true } | ||
rusoto_ssm = { version = "0.48", optional = true, default-features = false } | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "tough" | ||
version = "0.12.1" | ||
version = "0.12.2" | ||
description = "The Update Framework (TUF) repository client" | ||
authors = ["iliana destroyer of worlds <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "tuftool" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
description = "Utility for creating and signing The Update Framework (TUF) repositories" | ||
authors = ["iliana destroyer of worlds <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -36,9 +36,9 @@ snafu = { version = "0.7", features = ["backtraces-impl-backtrace-crate"] } | |
structopt = "0.3" | ||
tempfile = "3.3.0" | ||
tokio = "~1.8" # LTS | ||
tough = { version = "0.12.1", path = "../tough", features = ["http"] } | ||
tough-ssm = { version = "0.6.5", path = "../tough-ssm" } | ||
tough-kms = { version = "0.3.5", path = "../tough-kms" } | ||
tough = { version = "0.12.2", path = "../tough", features = ["http"] } | ||
tough-ssm = { version = "0.6.6", path = "../tough-ssm" } | ||
tough-kms = { version = "0.3.6", path = "../tough-kms" } | ||
url = "2.1.0" | ||
walkdir = "2.3.2" | ||
|
||
|