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"] }
|
|
|
|
fastwebsockets = "0.10.0"
|
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" }
|