mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 22:12:56 +00:00
to pass current_timeline_size to compute node Put standby_status_update fields into ZenithFeedback and send them as one message. Pass values sizes together with keys in ZenithFeedback message.
22 lines
704 B
TOML
22 lines
704 B
TOML
[package]
|
|
name = "zenith"
|
|
version = "0.1.0"
|
|
authors = ["Stas Kelvich <stas@zenith.tech>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
anyhow = "1.0"
|
|
serde_json = "1"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="2949d98df52587d562986aad155dd4e889e408b7" }
|
|
|
|
# FIXME: 'pageserver' is needed for BranchInfo. Refactor
|
|
pageserver = { path = "../pageserver" }
|
|
control_plane = { path = "../control_plane" }
|
|
walkeeper = { path = "../walkeeper" }
|
|
postgres_ffi = { path = "../postgres_ffi" }
|
|
zenith_utils = { path = "../zenith_utils" }
|
|
workspace_hack = { path = "../workspace_hack" }
|