mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-09-18 08:54:55 +08:00
23 lines
436 B
Rust
23 lines
436 B
Rust
//! # BAT Adapters - 适配器层
|
|
//!
|
|
//! 提供各种版本和格式的适配器
|
|
//!
|
|
//! 包含:
|
|
//! - Unity 版本适配器
|
|
//! - Manifest 格式适配器
|
|
//! - 客户端平台适配器
|
|
|
|
#![warn(missing_docs)]
|
|
#![warn(clippy::all)]
|
|
|
|
pub mod client;
|
|
pub mod error;
|
|
pub mod manifest;
|
|
pub mod official;
|
|
pub mod unity;
|
|
|
|
pub use error::{AdapterError, Result};
|
|
|
|
/// Adapters 版本号
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|