[package]
edition = "2021"
name = "rusticx-postgres"
version = "1.0.0"
authors = ["Tarun Vishwakarma"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL adapter for the Rusticx multi-database ORM"
homepage = "https://github.com/TarunVishwakarma1/rusticx-orm"
documentation = "https://docs.rs/rusticx"
readme = "README.md"
keywords = [
"orm",
"database",
"async",
"postgres",
"mongodb",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/TarunVishwakarma1/rusticx-orm"
[lib]
name = "rusticx_postgres"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusticx-core]
version = "1.0.0"
[dependencies.rusticx-sql]
version = "1.0.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"macros",
"uuid",
"chrono",
"json",
"postgres",
]
default-features = false
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]