#[cfg(not(feature = "native"))]
compile_error!("rapidgzip currently requires the `native` feature; the fallback backend is not yet integrated into the public crate");
#[cfg(feature = "native")]
mod native_impl;
#[cfg(feature = "native")]
pub use native_impl::*;