Skip to content

Commit

Permalink
rename hidden reexports (used by proc macros)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-k committed Oct 9, 2024
1 parent 639a122 commit 69aa958
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bio-seq/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ pub mod seq;
//#[macro_use]
pub use bio_seq_derive::{dna, iupac};

pub use bitvec::bitarr;
pub use bitvec::prelude::Lsb0;
pub use bitvec::bitarr as __bio_seq_bitarr;
pub use bitvec::prelude::Lsb0 as __bio_seq_Lsb0;

#[cfg(feature = "translation")]
pub mod translation;
Expand All @@ -134,8 +134,8 @@ pub mod prelude {

pub use crate::{dna, iupac, kmer};

pub use crate::bitarr as __bio_seq_bitarr;
pub use crate::Lsb0 as __bio_seq_Lsb0;
pub use crate::__bio_seq_Lsb0;
pub use crate::__bio_seq_bitarr;
}

#[cfg(test)]
Expand Down

0 comments on commit 69aa958

Please sign in to comment.