drizzle 0.1.16

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

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

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

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