mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 09:22:55 +00:00
Since we are now calling the syscall directly, read_pidfile can now parse an integer. We also verify the pid is >= 1, because calling kill on 0 or negative values goes straight to crazytown.
28 lines
810 B
TOML
28 lines
810 B
TOML
[package]
|
|
name = "control_plane"
|
|
version = "0.1.0"
|
|
authors = ["Stas Kelvich <stas@zenith.tech>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.8.3"
|
|
tar = "0.4.33"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" }
|
|
tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="a0d067b66447951d1276a53fb09886539c3fa094" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.5"
|
|
lazy_static = "1.4"
|
|
regex = "1"
|
|
anyhow = "1.0"
|
|
hex = "0.4.3"
|
|
bytes = "1.0.1"
|
|
fs_extra = "1.2.0"
|
|
nix = "0.20"
|
|
thiserror = "1"
|
|
|
|
pageserver = { path = "../pageserver" }
|
|
walkeeper = { path = "../walkeeper" }
|
|
postgres_ffi = { path = "../postgres_ffi" }
|