mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-06 21:12:55 +00:00
- Replacing all the occurrences of lazy-static with `once-cell::sync::Lazy` - fixes #1147 Signed-off-by: Ankur Srivastava <best.ankur@gmail.com>
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bincode = "1.3"
|
|
bytes = "1.0.1"
|
|
hyper = { version = "0.14.7", features = ["full"] }
|
|
pin-project-lite = "0.2.7"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" }
|
|
postgres-protocol = { git = "https://github.com/zenithdb/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" }
|
|
routerify = "3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.17", features = ["macros"]}
|
|
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 = "8"
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
rustls = "0.20.2"
|
|
rustls-split = "0.3.0"
|
|
git-version = "0.3.5"
|
|
serde_with = "1.12.0"
|
|
once_cell = "1.13.0"
|
|
|
|
|
|
metrics = { path = "../metrics" }
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
|
|
[dev-dependencies]
|
|
byteorder = "1.4.3"
|
|
bytes = "1.0.1"
|
|
hex-literal = "0.3"
|
|
tempfile = "3.2"
|
|
criterion = "0.3"
|
|
rustls-pemfile = "0.2.1"
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|