-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump tss-esapi to the latest version to get rid of dependencies conflicts with KMS SDK (More details in parallaxsecond/rust-tss-esapi#519) * Bump AWS SDK dependencies to their latest versions (within possible MSRV=1.68.2) * Move aws-config to dev-dependencies because it's used only in tests * Bump the crate version itself Signed-off-by: Eugene Koira <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
9 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "aws-nitro-enclaves-cose" | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
authors = ["Petre Eftime <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -16,9 +16,8 @@ serde_repr = "0.1" | |
serde_bytes = { version = "0.11", features = ["std"] } | ||
serde_with = { version = "3.3" } | ||
openssl = { version = "0.10", optional = true } | ||
tss-esapi = { version = "7.4", optional = true } | ||
aws-config = { version = "0.56", optional = true } | ||
aws-sdk-kms = { version = "0.31", optional = true } | ||
tss-esapi = { version = "7.5.1", optional = true } | ||
aws-sdk-kms = { version = "<=1.20", optional = true } | ||
tokio = { version = "1.20", features = ["rt", "macros"], optional = true } | ||
|
||
[dependencies.serde] | ||
|
@@ -27,9 +26,11 @@ features = ["derive"] | |
|
||
[dev-dependencies] | ||
hex = "0.4" | ||
aws-config = { version = "<=1.1" } | ||
aws-smithy-runtime = { version = "<=1.2" } | ||
|
||
[features] | ||
default = ["key_openssl_pkey"] | ||
key_openssl_pkey = ["openssl"] | ||
key_tpm = ["tss-esapi", "openssl"] | ||
key_kms = ["aws-config", "aws-sdk-kms", "tokio", "key_openssl_pkey"] | ||
key_kms = ["aws-sdk-kms", "tokio", "key_openssl_pkey"] |
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