dysql-core 2.0.0

Dysql is a rust crate that do dynamic-sql query through proc-macro, it bases on sqlx crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "tokio-postgres")]
#[macro_use] mod common;

#[cfg(feature = "tokio-postgres")]
pub use common::*;

#[cfg(feature = "tokio-postgres")]
mod postgres_adapter;

#[cfg(feature = "tokio-postgres")]
#[macro_use] pub mod adapter_macro;