sqlmo_sqlx 0.15.0

Crate to create sqlmo models from sqlx database (currently just postgres)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "sqlmo_sqlx"
version = "0.15.0"
edition = "2021"
description = "Crate to create sqlmo models from sqlx database (currently just postgres)"
license = "MIT"
repository = "https://github.com/kurtbuilds/sqlmo"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.29.1", features = ["full"], optional = true }
sqlmo = { path = "..", version = "0.15" }
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
anyhow = "1.0.72"
itertools = "0.10.5"
async-trait = "0.1.71"