mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
## Problem Broker supports only HTTP, no HTTPS - Closes: https://github.com/neondatabase/cloud/issues/27492 ## Summary of changes - Add `listen_https_addr`, `ssl_key_file`, `ssl_cert_file`, `ssl_cert_reload_period` arguments to storage broker - Make `listen_addr` argument optional - Listen https in storage broker - Support https for storage broker request in neon_local - Add `use_https_storage_broker_api` option to NeonEnvBuilder
45 lines
971 B
TOML
45 lines
971 B
TOML
[package]
|
|
name = "storage_broker"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[features]
|
|
bench = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-stream.workspace = true
|
|
bytes.workspace = true
|
|
camino.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
const_format.workspace = true
|
|
futures.workspace = true
|
|
futures-core.workspace = true
|
|
futures-util.workspace = true
|
|
humantime.workspace = true
|
|
hyper = { workspace = true, features = ["full"] }
|
|
http-body-util.workspace = true
|
|
http-utils.workspace = true
|
|
hyper-util = "0.1"
|
|
once_cell.workspace = true
|
|
parking_lot.workspace = true
|
|
prost.workspace = true
|
|
tonic.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
tokio-rustls.workspace = true
|
|
tracing.workspace = true
|
|
metrics.workspace = true
|
|
utils.workspace = true
|
|
rustls.workspace = true
|
|
|
|
workspace_hack.workspace = true
|
|
|
|
[build-dependencies]
|
|
tonic-build.workspace = true
|
|
|
|
[[bench]]
|
|
name = "rps"
|
|
harness = false
|
|
|