ts-sql 0.9.0

Helpers for working with SQL in my projects.
Documentation
[package]
description = "Helpers for working with SQL in my projects."
documentation = "https://docs.rs/ts-sql"
name = "ts-sql"
version = "0.9.0"

authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true

[dependencies]
postgres = { workspace = true }
postgres-protocol = "0.6.8"
postgres-types = { workspace = true }
tokio-postgres = { version = "0.7", optional = true }

ts-sql-derive = { version = "0.8", path = "../ts-sql-derive", optional = true }

serde_json = { version = "1" }

ts-error = { version = "0.4", features = ["derive"] }
ts-io = { version = "0.6" }

[features]
async = ["dep:tokio-postgres"]
derive = ["dep:ts-sql-derive"]
test = []

[lints]
workspace = true