Initial commit: Rust WebSocket/UDP signaling and media relay server

This commit is contained in:
srtk 2026-02-08 15:40:45 +05:30
commit c644aed661
6 changed files with 373 additions and 0 deletions

18
Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "server"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["ws"] }
dashmap = "6.1.0"
rand = "0.9.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
tokio = { version = "1.43.0", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
bincode = "1.3.3"
futures = "0.3.31"
shared = { path = "../shared" }