backend redesign

This commit is contained in:
2026-03-11 18:47:11 -04:00
parent 8ff277c8c6
commit e99ef5d2dd
210 changed files with 12147 additions and 155 deletions

27
relay/Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "relay"
version = "0.1.0"
edition = "2021"
[dependencies]
zmq = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio = { version = "1.0", features = ["full"] }
tokio-zmq = "0.10"
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bytes = "1.0"
dashmap = "5.5"
prost = "0.13"
[build-dependencies]
prost-build = "0.13"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1