mirror of
https://github.com/neondatabase/neon.git
synced 2026-06-02 04:50:38 +00:00
We want to add new wire formats, but the current code has bincode hard-codeded. To this end: 1. Rework the wal_receiver_protocol PS config to include a format modifier for interpreted protocol type. 2. Abstract wire format encoding and decoding to a separate module in wal_decoder 3. Glue things back together
20 lines
439 B
TOML
20 lines
439 B
TOML
[package]
|
|
name = "wal_decoder"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = ["pageserver_api/testing"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
pageserver_api.workspace = true
|
|
postgres_ffi.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
utils.workspace = true
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|