Skip to content

Commit

Permalink
fix: google and amazon.
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger committed Dec 17, 2024
1 parent d842b40 commit 642227e
Show file tree
Hide file tree
Showing 14 changed files with 631 additions and 58 deletions.
183 changes: 165 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ aptos-account-whitelist = { path = "protocol-units/access-control/aptos/account-

## vault
vaultrs = { version = "0.7.3" }
aws-sdk-kms = "1.51.0"
google-cloud-kms = "0.6.0"
base64 = { version = "0.13.0" }

# Serialization and Deserialization
Expand Down Expand Up @@ -306,6 +308,8 @@ tracing-test = "0.2.5"
trie-db = "0.28.0"
url = "2.2.2"
x25519-dalek = "1.0.1"
ed25519 = "2.2.3"
ring-compat = "0.8.0"
zstd-sys = "2.0.9"
zstd = "0.13"
inotify = "0.10.2"
Expand Down
6 changes: 6 additions & 0 deletions demo/hsm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ tokio = { workspace = true }
async-trait = { workspace = true }
anyhow = { workspace = true }
vaultrs = { workspace = true }
aws-sdk-kms = { workspace = true }
aws-config = { workspace = true }
rand = { workspace = true }
base64 = { workspace = true }
ed25519 = { workspace = true }
ring-compat = { workspace = true }
k256 = { workspace = true, features = ["ecdsa", "pkcs8"] }
google-cloud-kms = { workspace = true }

[lints]
workspace = true
Loading

0 comments on commit 642227e

Please sign in to comment.