All checks were successful
lint/clippy Checking for common mistakes and opportunities for code improvement
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
I ended up wrapping the raw data in a `BundleFile` twice. I also made '--compile' the default, as it should be much less often that raw data needs to be inserted. Even files that are essentially raw binary blobs, like `.wwise_event`, still have some custom fields that need to be accounted for.
13 lines
323 B
Rust
13 lines
323 B
Rust
#![feature(test)]
|
|
|
|
mod binary;
|
|
mod bundle;
|
|
mod context;
|
|
pub mod filetype;
|
|
pub mod murmur;
|
|
|
|
pub use binary::{FromBinary, ToBinary};
|
|
pub use bundle::database::BundleDatabase;
|
|
pub use bundle::decompress;
|
|
pub use bundle::{Bundle, BundleFile, BundleFileType, BundleFileVariant, Properties};
|
|
pub use context::{CmdLine, Context};
|