sqlx 0.3.5

🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.
Documentation
1
2
3
4
5
6
//! Traits linking Rust types to SQL types.

pub use sqlx_core::types::*;

#[cfg(feature = "macros")]
pub use sqlx_macros::HasSqlType;