mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-06 04:52:55 +00:00
This patch started as an effort to support CLI working against remote pageserver, but turned into a pretty big refactoring. * CLI now does not look into repository files directly. New commands 'branch_create' and 'identify_system' were introduced into page_service to support that. * Branch management that was scattered between local_env and zenith/main.rs is moved into pageserver/branches.rs. That code could better fit in Repository/Timeline impl, but I'll leave that for a different patch. * All tests-related code from local_env went into integration_tests/src/lib.rs as an extension to PostgresNode trait. * Paths-generating functions were concentrated around corresponding config types (LocalEnv and PageserverConf).
34 lines
916 B
TOML
34 lines
916 B
TOML
[package]
|
|
name = "zenith"
|
|
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]
|
|
clap = "2.33.0"
|
|
anyhow = "1.0"
|
|
serde_json = "1"
|
|
# rand = "0.8.3"
|
|
# tar = "0.4.33"
|
|
# serde = { version = "1.0", features = ["derive"] }
|
|
# toml = "0.5"
|
|
# lazy_static = "1.4"
|
|
# regex = "1"
|
|
# # hex = "0.4.3"
|
|
# bytes = "1.0.1"
|
|
# # fs_extra = "1.2.0"
|
|
# nix = "0.20"
|
|
# # thiserror = "1"
|
|
# url = "2.2.2"
|
|
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" }
|
|
|
|
# FIXME: 'pageserver' is needed for ZTimelineId. Refactor
|
|
pageserver = { path = "../pageserver" }
|
|
control_plane = { path = "../control_plane" }
|
|
postgres_ffi = { path = "../postgres_ffi" }
|
|
zenith_utils = { path = "../zenith_utils" }
|
|
workspace_hack = { path = "../workspace_hack" }
|