sqlx-json 0.13.2

Database-agnostic row-to-JSON conversion for sqlx
Documentation
1
2
3
4
5
6
7
8
//! Shared imports for the per-backend `RowExt` implementations.

pub(crate) use base64::Engine as _;
pub(crate) use base64::engine::general_purpose::STANDARD as BASE64;
pub(crate) use serde_json::{Map, Value};
pub(crate) use sqlx::{Column, Row, TypeInfo, ValueRef};

pub(crate) use crate::RowExt;