Skip to content

Commit

Permalink
The unused imports at the top level are intentional, quieten warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed Feb 10, 2024
1 parent 746423e commit 188615f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions alpm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,29 @@ mod version;

pub use crate::add::*;
pub use crate::alpm::*;
#[allow(unused_imports)]
pub use crate::be_local::*;
pub use crate::be_pkg::*;
#[allow(unused_imports)]
pub use crate::be_sync::*;
pub use crate::cb::*;
pub use crate::conflict::*;
pub use crate::db::*;
pub use crate::deps::*;
#[allow(unused_imports)]
pub use crate::dload::*;
pub use crate::error::*;
pub use crate::filelist::*;
#[allow(unused_imports)]
pub use crate::handle::*;
pub use crate::list::*;
#[cfg(feature = "mtree")]
pub use crate::mtree::*;
pub use crate::package::*;
#[allow(unused_imports)]
pub use crate::remove::*;
pub use crate::signing::*;
#[allow(unused_imports)]
pub use crate::sync::*;
pub use crate::trans::*;
pub use crate::types::*;
Expand Down

0 comments on commit 188615f

Please sign in to comment.