Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

signatory: fix unused import warnings #1187

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading