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-26 03:34:07 +03:00
|
|
|
tokio = { version = "1.42.1", default-features = false, features = ["macros", "rt-multi-thread"] }
|
2025-04-27 05:52:58 +03:00
|
|
|
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"]}
|
2025-04-11 04:58:16 +03:00
|
|
|
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" }
|