Skip to content

Commit

Permalink
Fix unused import error
Browse files Browse the repository at this point in the history
Adds a feature guard to fix the error. Import is only
used by artifact.

Signed-off-by: Andrea Gunderson <[email protected]>
  • Loading branch information
agunde406 committed Jan 31, 2024
1 parent 283c9a4 commit 888efe9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libsawtooth/src/store/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2024 Bitwise IO, Inc.
// Copyright 2021 Cargill Incorporated
//
// Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -16,4 +17,5 @@ mod error;
#[cfg(feature = "diesel")]
pub(crate) mod pool;

#[cfg(feature = "artifact")]
pub use error::StoreError;

0 comments on commit 888efe9

Please sign in to comment.