mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-09-11 00:54:35 +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",
|
"memchr",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
|
"rustls 0.23.22",
|
||||||
|
"rustls-pemfile 2.2.0",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"sha2",
|
"sha2",
|
||||||
|
@ -4499,6 +4501,7 @@ dependencies = [
|
||||||
"tracing",
|
"tracing",
|
||||||
"url",
|
"url",
|
||||||
"uuid",
|
"uuid",
|
||||||
|
"webpki-roots",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -5550,6 +5553,7 @@ dependencies = [
|
||||||
"sea-orm",
|
"sea-orm",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
"sqlx",
|
||||||
"uuid",
|
"uuid",
|
||||||
"warpgate-common",
|
"warpgate-common",
|
||||||
]
|
]
|
||||||
|
@ -5832,6 +5836,15 @@ dependencies = [
|
||||||
"untrusted 0.9.0",
|
"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]]
|
[[package]]
|
||||||
name = "which"
|
name = "which"
|
||||||
version = "4.4.2"
|
version = "4.4.2"
|
||||||
|
|
|
@ -30,6 +30,7 @@ tokio-stream = { version = "0.1.17", features = ["net"] }
|
||||||
tokio-rustls = "0.26"
|
tokio-rustls = "0.26"
|
||||||
enum_dispatch = "0.3.13"
|
enum_dispatch = "0.3.13"
|
||||||
rustls = "0.23"
|
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 = { version = "1.0", default-features = false, features = ["runtime-tokio", "macros"] }
|
||||||
sea-orm-migration = { version = "1.0", default-features = false, features = [
|
sea-orm-migration = { version = "1.0", default-features = false, features = [
|
||||||
"cli",
|
"cli",
|
||||||
|
|
|
@ -8,6 +8,7 @@ version = "0.13.0"
|
||||||
bytes = "1.4"
|
bytes = "1.4"
|
||||||
chrono = { version = "0.4", default-features = false, features = ["serde"] }
|
chrono = { version = "0.4", default-features = false, features = ["serde"] }
|
||||||
poem-openapi = { version = "5.1", features = ["chrono", "uuid"] }
|
poem-openapi = { version = "5.1", features = ["chrono", "uuid"] }
|
||||||
|
sqlx.workspace = true
|
||||||
sea-orm = { workspace = true, features = [
|
sea-orm = { workspace = true, features = [
|
||||||
"macros",
|
"macros",
|
||||||
"with-chrono",
|
"with-chrono",
|
||||||
|
|
Loading…
Add table
Reference in a new issue