tauri-plugin-pg-sync 0.1.11

Offline-first PostgreSQL sync plugin for Tauri apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod conflict;
pub mod engine;
pub mod hlc;
pub mod network;
pub mod queue;
pub mod snowflake;

#[cfg(test)]
mod tests;

pub use conflict::ConflictResolver;
pub use engine::{SyncEngine, SyncEnginePusher, SyncEnginePuller};
pub use hlc::HybridLogicalClock;
pub use network::{NetworkConfig, NetworkMonitor, NetworkState};
pub use snowflake::SnowflakeGenerator;