[package]
edition = "2024"
rust-version = "1.95"
name = "ssh-commander-pg"
version = "0.2.1"
authors = ["Andreas Mueller <herban.mueller@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async PostgreSQL connection pool, introspection, and query execution for ssh-commander-core. Dials a plain host:port and is agnostic of SSH tunneling."
homepage = "https://github.com/asmuelle/ssh-commander-core"
documentation = "https://docs.rs/ssh-commander-pg"
readme = "README.md"
keywords = [
"postgres",
"postgresql",
"database",
"pool",
"introspection",
]
categories = [
"database",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/asmuelle/ssh-commander-core"
resolver = "2"
[lib]
name = "ssh_commander_pg"
path = "src/lib.rs"
[[test]]
name = "postgres_integration"
path = "tests/postgres_integration.rs"
[dependencies.rustls]
version = "0.23"
features = ["ring"]
default-features = false
[dependencies.rustls-native-certs]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.ssh-commander-keychain]
version = "0.2.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-postgres]
version = "0.7"
features = [
"runtime",
"with-chrono-0_4",
]
[dependencies.tokio-postgres-rustls]
version = "0.13"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.proptest]
version = "1"