scroll.server/crates/service-rpc/Cargo.toml
WiseDev a509529aef carry rpc over a binary frame, not json+base64
the inter-service payload is already raw bytes; postcard sends it as
length-prefixed binary instead of base64 stuffed into a json envelope.
drops the base64 module and the per-field serde shims.
2026-08-28 23:26:38 +03:00

13 lines
334 B
TOML

[package]
name = "service-rpc"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
tokio = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true }
async-trait = { workspace = true }
postcard = { version = "1.1.3", features = ["alloc"] }