[package] name = "safekeeper" version = "0.1.0" edition = "2021" [dependencies] anyhow = "1.0" async-trait = "0.1" byteorder = "1.4.3" bytes = "1.0.1" clap = "4.0" const_format = "0.2.21" crc32c = "0.6.0" fs2 = "0.4.3" git-version = "0.3.5" hex = "0.4.3" humantime = "2.1.0" hyper = "0.14" nix = "0.25" once_cell = "1.13.0" parking_lot = "0.12.1" postgres = { git = "https://github.com/neondatabase/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" } postgres-protocol = { git = "https://github.com/neondatabase/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" } regex = "1.4.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1" serde_with = "2.0" signal-hook = "0.3.10" thiserror = "1" tokio = { version = "1.17", features = ["macros", "fs"] } tokio-postgres = { git = "https://github.com/neondatabase/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" } toml_edit = { version = "0.14", features = ["easy"] } tracing = "0.1.27" url = "2.2.2" etcd_broker = { path = "../libs/etcd_broker" } metrics = { path = "../libs/metrics" } postgres_ffi = { path = "../libs/postgres_ffi" } pq_proto = { path = "../libs/pq_proto" } remote_storage = { path = "../libs/remote_storage" } safekeeper_api = { path = "../libs/safekeeper_api" } utils = { path = "../libs/utils" } workspace_hack = { version = "0.1", path = "../workspace_hack" } [dev-dependencies] tempfile = "3.2"