mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
Update hyper and tonic again in the storage broker, this time with a fix for the issue that made us revert the update last time. The first commit is a revert of #9268, the second a fix for the issue. fixes #9231.
41 lines
873 B
TOML
41 lines
873 B
TOML
[package]
|
|
name = "storage_broker"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
bench = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-stream.workspace = true
|
|
bytes.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
|
|
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"] }
|
|
tracing.workspace = true
|
|
metrics.workspace = true
|
|
utils.workspace = true
|
|
|
|
workspace_hack.workspace = true
|
|
|
|
[build-dependencies]
|
|
tonic-build.workspace = true
|
|
|
|
[[bench]]
|
|
name = "rps"
|
|
harness = false
|
|
|