[package]
edition = "2024"
name = "tank-postgres"
version = "0.20.0"
authors = ["barsdeveloper <barsdeveloper@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Postgres driver implementation for Tank: the Rust data layer"
readme = "README.md"
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/TankHQ/tank"
[lib]
name = "tank_postgres"
path = "src/lib.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "postgres"
path = "tests/postgres.rs"
[dependencies.async-stream]
version = "0"
[dependencies.byteorder]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.log]
version = "0"
[dependencies.native-tls]
version = "0"
[dependencies.openssl]
version = "0"
[dependencies.postgres-openssl]
version = "0"
[dependencies.postgres-protocol]
version = "0"
[dependencies.postgres-types]
version = "0"
[dependencies.rust_decimal]
version = "1"
features = ["db-tokio-postgres"]
[dependencies.tank-core]
version = "0"
default-features = false
[dependencies.time]
version = "0"
features = [
"macros",
"parsing",
]
[dependencies.tokio]
version = "1"
features = [
"fs",
"macros",
"rt-multi-thread",
"sync",
]
[dependencies.tokio-postgres]
version = "0"
features = [
"with-time-0_3",
"with-uuid-1",
]
[dependencies.url]
version = "2"
[dependencies.urlencoding]
version = "2"
[dependencies.uuid]
version = "1"
[dev-dependencies.rcgen]
version = "0"
[dev-dependencies.testcontainers-modules]
version = "0"
features = ["postgres"]
[dev-dependencies.tokio]
version = "1"
features = [
"fs",
"macros",
"rt-multi-thread",
"sync",
]