mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-09-18 12:14:56 +08:00
chore: establish development baseline
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
//! # BAT Patch
|
||||
//!
|
||||
//! Patch 引擎核心实现
|
||||
//!
|
||||
//! 支持:
|
||||
//! - Binary Diff/Patch
|
||||
//! - JSON Patch
|
||||
//! - Rollback
|
||||
//! - Integrity Check
|
||||
|
||||
#![warn(missing_docs)]
|
||||
#![warn(clippy::all)]
|
||||
|
||||
pub mod error;
|
||||
pub mod binary;
|
||||
pub mod json;
|
||||
|
||||
pub use error::{PatchError, Result};
|
||||
|
||||
/// Patch 引擎版本号
|
||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
Reference in New Issue
Block a user