mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-28 00:23:00 +00:00
To help facilitate an upgrade to axum 0.8 (https://github.com/neondatabase/neon/pull/10332#pullrequestreview-2541989619) this massages the tonic dependency features so that tonic does not depend on axum.
41 lines
932 B
TOML
41 lines
932 B
TOML
[package]
|
|
name = "wal_decoder"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = ["pageserver_api/testing"]
|
|
|
|
[dependencies]
|
|
async-compression.workspace = true
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
pageserver_api.workspace = true
|
|
prost.workspace = true
|
|
postgres_ffi.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["io-util"] }
|
|
tracing.workspace = true
|
|
utils.workspace = true
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
|
|
[build-dependencies]
|
|
tonic-build.workspace = true
|
|
|
|
[dev-dependencies]
|
|
criterion.workspace = true
|
|
camino.workspace = true
|
|
camino-tempfile.workspace = true
|
|
remote_storage.workspace = true
|
|
tokio-util.workspace = true
|
|
serde_json.workspace = true
|
|
futures.workspace = true
|
|
tikv-jemallocator.workspace = true
|
|
pprof.workspace = true
|
|
|
|
[[bench]]
|
|
name = "bench_interpret_wal"
|
|
harness = false
|