Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
feat(signers): replace rusoto with aws-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Nov 22, 2023
1 parent 546ea02 commit 2eafa1c
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 193 deletions.
9 changes: 6 additions & 3 deletions ethers-signers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ futures-util = { workspace = true, optional = true }
futures-executor = { workspace = true, optional = true }

# aws
rusoto_core = { version = "0.48.0", default-features = false, optional = true }
rusoto_kms = { version = "0.48.0", default-features = false, optional = true }
aws-config = { version = "1.0", default-features = false, optional = true }
aws-smithy-runtime-api = { version = "1.0", default-features = false, features = [
"client",
], optional = true }
aws-sdk-kms = { version = "0.39", default-features = false, optional = true }
spki = { workspace = true, optional = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down Expand Up @@ -82,5 +85,5 @@ optimism = ["ethers-core/optimism"]

ledger = ["coins-ledger", "futures", "semver"]
trezor = ["trezor-client", "futures", "semver", "home", "protobuf"]
aws = ["rusoto_core/rustls", "rusoto_kms/rustls", "spki"]
aws = ["aws-config", "aws-sdk-kms", "aws-smithy-runtime-api", "spki"]
yubi = ["yubihsm"]
Loading

0 comments on commit 2eafa1c

Please sign in to comment.