mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 05:52:55 +00:00
I've rebased[1] Neon's fork of rust-postgres to incorporate latest upstream changes (including dependabot's fixes), so we need to advance revs here as well. [1] https://github.com/neondatabase/rust-postgres/commits/neon
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 = "43e6db254a97fdecbce33d8bc0890accfd74495e" }
|
|
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" }
|