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,