sqlx-utils 1.1.3

Utilities for working with SQLx in a structured and efficient way, both when developing and running
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(async_fn_in_trait)]
#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]

pub mod error;
pub mod filter;
mod macros;
pub mod pool;
pub mod prelude;
pub mod sqlx;
mod test;
pub mod traits;
pub mod types;
pub mod utils;

pub use error::{Error, Result};
pub use sqlx_utils_macro::sql_filter;