difftreelog
feat reference pusher server
in: trunk
2 files changed
cmds/pusher/Cargo.tomldiffbeforeafterboth--- /dev/null
+++ b/cmds/pusher/Cargo.toml
@@ -0,0 +1,15 @@
+[package]
+name = "pusher"
+version.workspace = true
+edition.workspace = true
+rust-version.workspace = true
+
+[dependencies]
+anyhow.workspace = true
+axum = { version = "0.8.7", features = ["http2", "macros", "ws"] }
+axum-extra = { version = "0.12.2", features = ["typed-header"] }
+futures-util = { version = "0.3.31", features = ["sink"] }
+hyper = "1.8.1"
+tokio = { workspace = true, features = ["macros", "process", "rt"] }
+tokio-util = { version = "0.7.17", features = ["io"] }
+tracing.workspace = true
cmds/pusher/src/main.rsdiffbeforeafterbothno changes