Skip to content

Commit

Permalink
Allow unreachable pub for re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
runesoerensen committed Sep 24, 2024
1 parent 9112afc commit 1e47371
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libherokubuildpack/src/inventory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ mod semver;
mod sha2;
mod unit;

#[allow(unused_imports)]
#[allow(unused_imports, unreachable_pub)]
#[cfg(feature = "semver")]
pub use semver::*;
#[allow(unused_imports)]

#[allow(unused_imports, unreachable_pub)]
#[cfg(feature = "sha2")]
pub use sha2::*;

Expand Down

0 comments on commit 1e47371

Please sign in to comment.