[package]
edition = "2024"
rust-version = "1.91"
name = "dbrest-postgres"
version = "0.8.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL backend for the dbrest REST API"
readme = false
keywords = [
"rest",
"api",
"database",
"postgres",
]
categories = [
"web-programming::http-server",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/zvectorlabs/dbrest"
[lib]
name = "dbrest_postgres"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.dbrest-core]
version = "0.8.5"
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"postgres",
"json",
"macros",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"