Skip to content

Commit

Permalink
Fix clippy lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbz00 committed Feb 28, 2024
1 parent 7ff2b16 commit cc37001
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/lib/src/cryptography/data_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ impl DataKey {
DataKeySize::USIZE
}

#[allow(clippy::new_without_default)]
pub fn new() -> Self {
DataKey(RngKey::new())
}
Expand Down
2 changes: 1 addition & 1 deletion crates/lib/src/integration/aws_kms/core.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{convert::AsRef, future::Future, ops::Deref};
use std::{future::Future, ops::Deref};

use anyhow::anyhow;
use aws_sdk_kms::{config::Credentials, primitives::Blob, Client, Config};
Expand Down

0 comments on commit cc37001

Please sign in to comment.