mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 16:32:56 +00:00
## Describe your changes ## Issue ticket number and link #3479 ## Checklist before requesting a review - [x] I have performed a self-review of my code. - [ ] If it is a core feature, I have added thorough tests. - [ ] Do we need to implement analytics? if so did you add the relevant metrics to the dashboard? - [ ] If this PR requires public announcement, mark it with /release-notes label and add several sentences in this section.
55 lines
1.3 KiB
TOML
55 lines
1.3 KiB
TOML
[package]
|
|
name = "utils"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
atty.workspace = true
|
|
sentry.workspace = true
|
|
async-trait.workspace = true
|
|
anyhow.workspace = true
|
|
bincode.workspace = true
|
|
bytes.workspace = true
|
|
heapless.workspace = true
|
|
hyper = { workspace = true, features = ["full"] }
|
|
futures = { workspace = true}
|
|
routerify.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-rustls.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["json"] }
|
|
nix.workspace = true
|
|
signal-hook.workspace = true
|
|
rand.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
hex = { workspace = true, features = ["serde"] }
|
|
rustls.workspace = true
|
|
rustls-split.workspace = true
|
|
git-version.workspace = true
|
|
serde_with.workspace = true
|
|
once_cell.workspace = true
|
|
strum.workspace = true
|
|
strum_macros.workspace = true
|
|
|
|
metrics.workspace = true
|
|
pq_proto.workspace = true
|
|
|
|
workspace_hack.workspace = true
|
|
url.workspace = true
|
|
uuid = { version = "1.2", features = ["v4", "serde"] }
|
|
[dev-dependencies]
|
|
byteorder.workspace = true
|
|
bytes.workspace = true
|
|
hex-literal.workspace = true
|
|
tempfile.workspace = true
|
|
criterion.workspace = true
|
|
rustls-pemfile.workspace = true
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|