mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-27 16:12:56 +00:00
This patch introduces fixes for several problems affecting LLVM-based code coverage: * Daemonizing parent processes should call _exit() to prevent coverage data file corruption (*.profraw) due to concurrent writes. * Implement proper shutdown handlers in safekeeper.
39 lines
958 B
TOML
39 lines
958 B
TOML
[package]
|
|
name = "zenith_utils"
|
|
version = "0.1.0"
|
|
authors = ["Eric Seppanen <eric@zenith.tech>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bincode = "1.3"
|
|
byteorder = "1.4.3"
|
|
bytes = "1.0.1"
|
|
hyper = { version = "0.14.7", features = ["full"] }
|
|
lazy_static = "1.4.0"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" }
|
|
routerify = "2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "1.0"
|
|
tokio = "1.11"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
nix = "0.23.0"
|
|
signal-hook = "0.3.10"
|
|
rand = "0.8.3"
|
|
jsonwebtoken = "7"
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
rustls = "0.19.1"
|
|
rustls-split = "0.2.1"
|
|
git-version = "0.3.5"
|
|
|
|
zenith_metrics = { path = "../zenith_metrics" }
|
|
workspace_hack = { path = "../workspace_hack" }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.3"
|
|
bytes = "1.0"
|
|
webpki = "0.21"
|
|
tempfile = "3.2"
|