From 7d9f677a22edadb3fcf7aacf73ec05e36ae3f014 Mon Sep 17 00:00:00 2001 From: Alex Chi Z Date: Wed, 16 Apr 2025 14:27:35 -0400 Subject: [PATCH] add remote_key crate Signed-off-by: Alex Chi Z --- Cargo.lock | 3 --- libs/remote_keys/Cargo.toml | 3 --- libs/remote_keys/src/lib.rs | 2 -- 3 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a67d07ac3..5b3b06e7dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5500,9 +5500,6 @@ name = "remote_keys" version = "0.1.0" dependencies = [ "anyhow", - "aws-config", - "aws-sdk-kms", - "aws-smithy-types", "rand 0.8.5", "utils", ] diff --git a/libs/remote_keys/Cargo.toml b/libs/remote_keys/Cargo.toml index 62df3306fd..1edf8fa5f3 100644 --- a/libs/remote_keys/Cargo.toml +++ b/libs/remote_keys/Cargo.toml @@ -6,9 +6,6 @@ license.workspace = true [dependencies] anyhow.workspace = true -aws-smithy-types.workspace = true -aws-sdk-kms.workspace = true -aws-config.workspace = true utils.workspace = true [dev-dependencies] diff --git a/libs/remote_keys/src/lib.rs b/libs/remote_keys/src/lib.rs index 6bf795e507..02067a0279 100644 --- a/libs/remote_keys/src/lib.rs +++ b/libs/remote_keys/src/lib.rs @@ -1,8 +1,6 @@ //! A module that provides a KMS implementation that generates and unwraps the keys. //! -#![allow(dead_code)] - /// A KMS implementation that does static wrapping and unwrapping of the keys. pub struct NaiveKms { account_id: String,