brdb 0.5.0

A library for reading and writing Brickadia's World files.
Documentation
pub use crate::schema::as_brdb::AsBrdbValue;

pub mod assets;
pub mod compression;
mod errors;
pub use errors::*;
pub mod fs;
pub mod pending;
#[cfg(test)]
mod pending_tests;
pub mod schema;
pub mod tables;
mod wrapper;
pub use wrapper::*;
pub(crate) mod helpers;
mod reader;
pub use reader::*;

#[cfg(feature = "brz")]
mod brz;
#[cfg(feature = "brz")]
pub use brz::*;

#[cfg(feature = "brdb")]
mod brdb;
#[cfg(feature = "brdb")]
pub use brdb::*;

#[cfg(test)]
mod tests;