mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-05 20:42:54 +00:00
Seems a bit silly to have a separate crate just for the executable. It relies on the control plane for everything it does, and it's the only user of the control plane.
26 lines
721 B
TOML
26 lines
721 B
TOML
[package]
|
|
name = "control_plane"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = "3.0"
|
|
comfy-table = "5.0.1"
|
|
git-version = "0.3.5"
|
|
tar = "0.4.38"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_with = "1.12.0"
|
|
toml = "0.5"
|
|
once_cell = "1.13.0"
|
|
regex = "1"
|
|
anyhow = "1.0"
|
|
thiserror = "1"
|
|
nix = "0.23"
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
|
|
pageserver = { path = "../pageserver" }
|
|
safekeeper = { path = "../safekeeper" }
|
|
utils = { path = "../libs/utils" }
|
|
workspace_hack = { version = "0.1", path = "../workspace_hack" }
|