Skip to main content

yugendb_postgres/
lib.rs

1//! PostgreSQL Rust driver for yugendb.
2//!
3//! PostgreSQL is a SQL-backed implementation of the yugendb storage model.
4
5pub mod driver;
6pub mod schema;
7
8pub use driver::{postgres, postgres_capabilities, PostgresDriver, PostgresDriverOptions};
9pub use schema::*;