mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-22 06:35:16 +08:00
18 lines
342 B
Rust
18 lines
342 B
Rust
//! # BAT AssetBundle
|
|
//!
|
|
//! Unity AssetBundle 解析器核心
|
|
//!
|
|
//! 提供插件化的 AssetBundle 解析框架
|
|
|
|
#![warn(missing_docs)]
|
|
#![warn(clippy::all)]
|
|
|
|
pub mod error;
|
|
pub mod parser;
|
|
pub mod types;
|
|
|
|
pub use error::{AssetBundleError, Result};
|
|
|
|
/// AssetBundle 解析器版本号
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|