mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-09-08 23:54:23 +08:00
fixed #1261 - reenable accidentally disabled Postgres TLS support
This commit is contained in:
parent
5dfa02555e
commit
2e75b280c2
3 changed files with 15 additions and 0 deletions
13
Cargo.lock
generated
13
Cargo.lock
generated
|
@ -4489,6 +4489,8 @@ dependencies = [
|
|||
"memchr",
|
||||
"once_cell",
|
||||
"percent-encoding",
|
||||
"rustls 0.23.22",
|
||||
"rustls-pemfile 2.2.0",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"sha2",
|
||||
|
@ -4499,6 +4501,7 @@ dependencies = [
|
|||
"tracing",
|
||||
"url",
|
||||
"uuid",
|
||||
"webpki-roots",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -5550,6 +5553,7 @@ dependencies = [
|
|||
"sea-orm",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"sqlx",
|
||||
"uuid",
|
||||
"warpgate-common",
|
||||
]
|
||||
|
@ -5832,6 +5836,15 @@ dependencies = [
|
|||
"untrusted 0.9.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "webpki-roots"
|
||||
version = "0.26.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
|
||||
dependencies = [
|
||||
"rustls-pki-types",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "which"
|
||||
version = "4.4.2"
|
||||
|
|
|
@ -30,6 +30,7 @@ tokio-stream = { version = "0.1.17", features = ["net"] }
|
|||
tokio-rustls = "0.26"
|
||||
enum_dispatch = "0.3.13"
|
||||
rustls = "0.23"
|
||||
sqlx = { version = "0.8", features = ["tls-rustls-aws-lc-rs"] }
|
||||
sea-orm = { version = "1.0", default-features = false, features = ["runtime-tokio", "macros"] }
|
||||
sea-orm-migration = { version = "1.0", default-features = false, features = [
|
||||
"cli",
|
||||
|
|
|
@ -8,6 +8,7 @@ version = "0.13.0"
|
|||
bytes = "1.4"
|
||||
chrono = { version = "0.4", default-features = false, features = ["serde"] }
|
||||
poem-openapi = { version = "5.1", features = ["chrono", "uuid"] }
|
||||
sqlx.workspace = true
|
||||
sea-orm = { workspace = true, features = [
|
||||
"macros",
|
||||
"with-chrono",
|
||||
|
|
Loading…
Add table
Reference in a new issue