From 6449d258281e339c7a50f839db8e4655aa7a7d5e Mon Sep 17 00:00:00 2001 From: Rodolfo P A <6721075+rodoufu@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:18:12 -0300 Subject: [PATCH 1/2] Keep it compatible with p256 0.10 as well since it does not require 0.11 --- aws/rust-runtime/aws-sigv4/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/rust-runtime/aws-sigv4/Cargo.toml b/aws/rust-runtime/aws-sigv4/Cargo.toml index 9a497c80e8..8b5f622e1f 100644 --- a/aws/rust-runtime/aws-sigv4/Cargo.toml +++ b/aws/rust-runtime/aws-sigv4/Cargo.toml @@ -29,7 +29,7 @@ hmac = "0.12" http0 = { version = "0.2", optional = true, package = "http" } http = { version = "1", optional = true } once_cell = "1.8" -p256 = { version = "0.11", features = ["ecdsa"], optional = true } +p256 = { version = "0.10", features = ["ecdsa"], optional = true } percent-encoding = { version = "2.1", optional = true } ring = { version = "0.17.5", optional = true } sha2 = "0.10" From 68e072d8e1efdfacfb198c552d5c3b5ce2713614 Mon Sep 17 00:00:00 2001 From: Rodolfo P A <6721075+rodoufu@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:18:52 -0300 Subject: [PATCH 2/2] Update Cargo.toml --- aws/rust-runtime/aws-sigv4/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/rust-runtime/aws-sigv4/Cargo.toml b/aws/rust-runtime/aws-sigv4/Cargo.toml index 8b5f622e1f..daa4d3173c 100644 --- a/aws/rust-runtime/aws-sigv4/Cargo.toml +++ b/aws/rust-runtime/aws-sigv4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws-sigv4" -version = "1.2.1" +version = "1.2.2" authors = ["AWS Rust SDK Team ", "David Barsky "] description = "SigV4 signer for HTTP requests and Event Stream messages." edition = "2021"