#![doc = include_str!("../README.md")]
pub use parser::*;
#[cfg(feature = "async_vfs")]
pub mod async_pak_vfs;
pub mod error;
#[cfg(feature = "vfs")]
pub mod pak_vfs;
mod parser;
mod stream;
#[cfg(any(feature = "vfs", feature = "async_vfs"))]
pub use vfs;
pub use winnow;