mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 06:22:57 +00:00
This fixes all kinds of problems related to missing params, like broken timestamps (due to `integer_datetimes`). This solution is not ideal, but it will help. Meanwhile, I'm going to dedicate some time to improving connection machinery. Note that this **does not** fix problems with passing certain parameters in a reverse direction, i.e. **from client to compute**. This is a separate matter and will be dealt with in an upcoming PR.
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "control_plane"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = "4.0"
|
|
comfy-table = "6.1"
|
|
git-version = "0.3.5"
|
|
nix = "0.25"
|
|
once_cell = "1.13.0"
|
|
postgres = { git = "https://github.com/neondatabase/rust-postgres.git", rev = "69c1ef71cd5418cf063d4ca21eadc3427980caea" }
|
|
regex = "1"
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_with = "2.0"
|
|
tar = "0.4.38"
|
|
thiserror = "1"
|
|
toml = "0.5"
|
|
url = "2.2.2"
|
|
|
|
# Note: Do not directly depend on pageserver or safekeeper; use pageserver_api or safekeeper_api
|
|
# instead, so that recompile times are better.
|
|
pageserver_api = { path = "../libs/pageserver_api" }
|
|
postgres_connection = { path = "../libs/postgres_connection" }
|
|
safekeeper_api = { path = "../libs/safekeeper_api" }
|
|
# Note: main broker code is inside the binary crate, so linking with the library shouldn't be heavy.
|
|
storage_broker = { version = "0.1", path = "../storage_broker" }
|
|
utils = { path = "../libs/utils" }
|
|
workspace_hack = { version = "0.1", path = "../workspace_hack" }
|