easy-sql 0.101.1

Macro-first SQL toolkit with compile-time checked queries, optional migrations on top of sqlx.
Documentation
1
2
3
4
5
6
7
8
9
//! Marker traits used by the macros to enforce query constraints.
//!
//! These are generally implemented by derive/macros or driver integrations, not by hand.

pub(crate) mod driver;
pub use driver::*;

mod query;
pub use query::*;