easy-sql 0.100.1

Macro-first SQL toolkit with compile-time checked queries, optional migrations on top of sqlx.
Documentation
use easy_macros::always_context_build::{BuildOptions, Skip};

fn main() {
    easy_macros::always_context_build::build_with_options(
        &[regex::Regex::new(r"readme\.rs").unwrap()],
        BuildOptions::new().skip(vec![Skip::MacrosShort]),
    );
    easy_sql_build::build(
        &[regex::Regex::new(r"example_all\.rs").unwrap()],
        #[cfg(not(any(feature = "sqlite", feature = "postgres")))]
        &[],
        #[cfg(all(feature = "sqlite", not(feature = "postgres")))]
        &["crate::Sqlite"],
        #[cfg(all(feature = "postgres", not(feature = "sqlite")))]
        &["crate::Postgres"],
        #[cfg(all(feature = "sqlite", feature = "postgres"))]
        &["crate::Sqlite", "crate::Postgres"],
    );
}