rok-fluent 0.4.1

Eloquent-inspired async ORM for Rust (PostgreSQL, MySQL, SQLite)
1
2
3
4
5
6
7
//! SQLite backend — executor and optional Active Record model trait.

pub mod executor;

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