chore: establish development baseline

This commit is contained in:
2026-06-28 01:27:09 +08:00
commit dd53e3054e
131 changed files with 19327 additions and 0 deletions
+21
View File
@@ -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");