drizzle 0.1.11

A type-safe SQL query builder for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(any(
    feature = "postgres-sync",
    feature = "tokio-postgres",
    feature = "aws-data-api"
))]
pub mod typestate;

#[cfg(feature = "postgres-sync")]
pub mod postgres_sync;

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

#[cfg(feature = "aws-data-api")]
pub mod aws_data_api;