kurtbuilds_sql_sqlx 0.25.1

Crate to create sql 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 = "kurtbuilds_sql_sqlx"
version.workspace = true
edition.workspace = true
description = "Crate to create sql models from sqlx database (currently just postgres)"
license = "MIT"
repository = "https://github.com/kurtbuilds/sql"

[lib]
name = "sql_sqlx"
path = "src/lib.rs"

[dependencies]
kurtbuilds_sql.workspace = true
sqlx = { version = "0.8.2", features = ["runtime-tokio-rustls", "postgres"] }
anyhow.workspace = true
itertools.workspace = true