sqlmo_sqlx 0.22.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.22.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.40.0", features = ["full"], optional = true }
sqlmo = { path = "..", version = "0.22" }
sqlx = { version = "0.8.2", features = ["runtime-tokio-rustls", "postgres"] }
anyhow = "1.0.89"
itertools = "0.13.0"
async-trait = "0.1.83"