Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Commit c9ec7c0

Browse files
authored
Update aws versions (#981)
Updates aws dependencies to the latest versions. Another requirement for the cowprotocol/services transition to allloy is that it uses AWS v1 which is incompatible with the v0.x used in this repository.
1 parent 7cdca70 commit c9ec7c0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ethcontract/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ ws-tls-tokio = ["web3/ws-tls-tokio"]
3232
ws-tokio = ["web3/ws-tokio"]
3333

3434
[dependencies]
35-
aws-config = { version = "0.55", optional = true }
36-
aws-sdk-kms = { version = "0.28", optional = true }
35+
aws-config = { version = "1.8.6", optional = true }
36+
aws-sdk-kms = { version = "1.86", optional = true }
3737
arrayvec = "0.7"
3838
ethcontract-common = { version = "0.25.9", path = "../ethcontract-common" }
3939
ethcontract-derive = { version = "0.25.9", path = "../ethcontract-derive", optional = true, default-features = false }

examples/examples/kms.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::env;
88
#[tokio::main]
99
async fn main() {
1010
// Run `aws configure export-credentials --profile cow-staging --format env` to get required env variable locally
11-
let config = aws_config::load_from_env().await;
11+
let config = aws_config::load_defaults(aws_config::BehaviorVersion::latest()).await;
1212
let account = kms::Account::new(
1313
(&config).into(),
1414
&env::var("KMS_KEY_ID").expect("KMS_KEY_ID not set"),

0 commit comments

Comments
 (0)