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.
21 lines
540 B
TOML
21 lines
540 B
TOML
[package]
|
|
name = "gateway"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Client facing TCP gateway: framing, stream cipher, session routing"
|
|
|
|
[dependencies]
|
|
titan = { workspace = true }
|
|
logic = { workspace = true }
|
|
service-rpc = { workspace = true }
|
|
tokio = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
serde = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "gateway"
|
|
path = "src/main.rs"
|