ripsync-core 1.2.0

Core sync engine for ripsync: delta engine, parallel walk, plan/apply, and the safety model.
Documentation
1
2
3
4
5
6
7
8
//! Utility types and helpers.
//!
//! Currently provides [`AlignedBuf`] — a page-aligned I/O buffer used by the
//! portable copy path to avoid extra page-cache copies.

pub mod aligned_buf;

pub use aligned_buf::AlignedBuf;