rok-fluent 0.4.1

Eloquent-inspired async ORM for Rust (PostgreSQL, MySQL, SQLite)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! PostgreSQL backend — executor, pool, transactions, and optional Active Record model trait.

pub mod executor;
pub mod pool;
pub mod query_log;
pub mod transaction;

/// Active Record model trait for PostgreSQL — gated behind `active`.
#[cfg(feature = "active")]
pub mod model;

/// Many-to-many pivot queries — gated behind `active`.
#[cfg(feature = "active")]
pub mod pivot_query;