-
Notifications
You must be signed in to change notification settings - Fork 56
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 #835 from mgsharm/develop
Prepare for release
- Loading branch information
Showing
11 changed files
with
237 additions
and
182 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 = "olpc-cjson" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
description = "serde_json Formatter to serialize as OLPC-style canonical JSON" | ||
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 = "tough-kms" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
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 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-kms/rustls"] | |
fips = ["aws-lc-rs/fips", "tough/fips"] | ||
|
||
[dependencies] | ||
tough = { version = "0.18", path = "../tough", features = ["http"] } | ||
tough = { version = "0.19", path = "../tough", features = ["http"] } | ||
aws-lc-rs = "1" | ||
aws-sdk-kms = "1" | ||
aws-config = { version = "1", default-features = false, features = ["credentials-process"] } | ||
|
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.13.0" | ||
version = "0.14.0" | ||
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 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-ssm/rustls"] | |
fips = ["tough/fips"] | ||
|
||
[dependencies] | ||
tough = { version = "0.18", path = "../tough", features = ["http"] } | ||
tough = { version = "0.19", path = "../tough", features = ["http"] } | ||
aws-sdk-ssm = "1" | ||
aws-config = { version = "1", default-features = false, features = ["credentials-process"] } | ||
aws-smithy-experimental = { version = "0.1", features = ["crypto-aws-lc"] } | ||
|
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.18.0" | ||
version = "0.19.0" | ||
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.11.1" | ||
version = "0.12.0" | ||
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 @@ simplelog = "0.12" | |
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] } | ||
tempfile = "3" | ||
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] } | ||
tough = { version = "0.18", path = "../tough", features = ["http"] } | ||
tough-kms = { version = "0.10", path = "../tough-kms" } | ||
tough-ssm = { version = "0.13", path = "../tough-ssm" } | ||
tough = { version = "0.19", path = "../tough", features = ["http"] } | ||
tough-kms = { version = "0.11", path = "../tough-kms" } | ||
tough-ssm = { version = "0.14", path = "../tough-ssm" } | ||
url = "2" | ||
walkdir = "2" | ||
|
||
|