Skip to content

Commit

Permalink
signatory: fix unused import warnings (#1187)
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion authored Jul 17, 2024
1 parent c6b4711 commit 84375ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions signatory/src/key/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
#[cfg(feature = "std")]
pub(crate) mod fs;

#[cfg(feature = "std")]
pub use fs::FsKeyStore;

/// Trait for generating PKCS#8-encoded private keys.
pub trait GeneratePkcs8 {
/// Randomly generate a new PKCS#8 private key.
Expand Down
2 changes: 2 additions & 0 deletions signatory/src/key/store/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ mod tests {

pub const EXAMPLE_KEY: &str = "example-key";

/// We need this to live as long as the test case, so store it here for RAII purposes
#[allow(dead_code)]
pub struct FsStoreHandle {
pub keystore: FsKeyStore,
pub dir: tempfile::TempDir,
Expand Down

0 comments on commit 84375ff

Please sign in to comment.