warpgate/warpgate-protocol-postgres/Cargo.toml
2024-10-09 00:08:33 +02:00

24 lines
824 B
TOML

[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-protocol-postgres"
version = "0.10.1"
[dependencies]
warpgate-common = { version = "*", path = "../warpgate-common" }
warpgate-core = { version = "*", path = "../warpgate-core" }
anyhow = { version = "1.0", features = ["std"] }
async-trait = "0.1"
tokio = { version = "1.20", features = ["tracing", "signal"] }
tracing = "0.1"
uuid = { version = "1.2" }
bytes = "1.3"
rustls = { version = "0.23", features = ["ring"], default-features = false }
rustls-pemfile = "1.0"
tokio-rustls = "0.26"
thiserror = "1.0"
rustls-native-certs = "0.6"
pgwire = { version = "0.23", default-features = false, features = [
"server-api",
] }
rsasl = { version = "2.1.0", default-features = false, features = ["config_builder", "scram-sha-2", "std", "plain", "provider"] }