mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 19:42:55 +00:00
21 lines
667 B
TOML
21 lines
667 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"
|
|
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" }
|