2024-10-09 06:08:33 +08:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "warpgate-protocol-postgres"
|
2024-12-08 06:42:58 +08:00
|
|
|
version = "0.12.0"
|
2024-10-09 06:08:33 +08:00
|
|
|
|
|
|
|
[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"] }
|
2024-11-27 06:13:48 +08:00
|
|
|
tracing.workspace = true
|
2024-10-09 06:08:33 +08:00
|
|
|
uuid = { version = "1.2" }
|
2024-11-25 02:35:31 +08:00
|
|
|
bytes.workspace = true
|
2024-10-18 06:09:41 +08:00
|
|
|
rustls = "0.23"
|
2024-10-09 06:08:33 +08:00
|
|
|
rustls-pemfile = "1.0"
|
|
|
|
tokio-rustls = "0.26"
|
|
|
|
thiserror = "1.0"
|
|
|
|
rustls-native-certs = "0.6"
|
2024-10-18 06:09:41 +08:00
|
|
|
pgwire = { version = "0.25" }
|
2024-10-09 06:08:33 +08:00
|
|
|
rsasl = { version = "2.1.0", default-features = false, features = ["config_builder", "scram-sha-2", "std", "plain", "provider"] }
|