warpgate/warpgate-protocol-postgres/Cargo.toml

24 lines
746 B
TOML
Raw Normal View History

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"] }
tracing.workspace = true
2024-10-09 06:08:33 +08:00
uuid = { version = "1.2" }
bytes.workspace = true
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"
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"] }
futures.workspace = true