2025-04-07 01:52:52 +03:00
|
|
|
[package]
|
2025-04-11 04:58:16 +03:00
|
|
|
name = "rust_communication_server"
|
2025-04-07 01:52:52 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
[dependencies]
|
2025-04-11 04:58:16 +03:00
|
|
|
axum = { version = "0.8.3", features = ["json"] }
|
|
|
|
axum-macros = "0.5.0"
|
|
|
|
tokio = "1.42.1"
|
2025-04-16 06:27:08 +03:00
|
|
|
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
|
|
|
|
tracing-subscriber = "0.3.19"
|
|
|
|
tracing = "0.1.41"
|
2025-04-11 04:58:16 +03:00
|
|
|
webrtc = "0.12.0"
|
|
|
|
serde = { workspace = true }
|
2025-04-16 06:27:08 +03:00
|
|
|
serde_json = { workspace = true }
|
2025-04-11 04:58:16 +03:00
|
|
|
chrono = { workspace = true }
|
|
|
|
protocol = { path = "../protocol" }
|