walsync 0.1.1

Lightweight SQLite WAL sync to S3/Tigris
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Walsync - Lightweight SQLite WAL sync to S3/Tigris
//!
//! This library provides Python bindings for syncing SQLite WAL files to S3-compatible storage.

pub mod s3;
pub mod sync;
pub mod wal;

#[cfg(feature = "python")]
mod python;

#[cfg(feature = "python")]
pub use python::*;