waypoint 2025.12.1

Waypoint is a Farcaster synchronization tool built in Rust, optimized for memory efficiency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Database module for PostgreSQL interactions
pub mod batch;
pub mod client;
pub mod error;
pub mod models;
pub mod providers;

// Re-export most commonly used types
pub use client::Database;
pub use error::Error;
pub use providers::PostgresDatabaseClient;