rust_webrtc/server/Cargo.toml

15 lines
507 B
TOML
Raw Normal View History

[package]
2025-05-13 05:13:39 +03:00
name = "rust_webrtc_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"]}
2025-04-29 22:58:24 +03:00
fastwebsockets = { version = "0.10.0", features = ["upgrade", "unstable-split", "with_axum"]}
serde = { workspace = true }
serde_json = { workspace = true }
chrono = { workspace = true }
protocol = { path = "../protocol" }