rust_webrtc/server/Cargo.toml

14 lines
514 B
TOML

[package]
name = "rust_communication_server"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1.42.1", default-features = false, features = ["macros", "rt-multi-thread"] }
axum = "0.8.3"
tower-http = { version = "0.6.2", default-features = false, features = ["cors"]}
fastwebsockets = { version = "0.10.0", features = ["upgrade", "unstable-split", "with_axum"]}
serde = { workspace = true }
serde_json = { workspace = true }
chrono = { workspace = true }
protocol = { path = "../protocol" }