12 lines
350 B
TOML
12 lines
350 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"] }
|
|
fastwebsockets = "0.10.0"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
chrono = { workspace = true }
|
|
protocol = { path = "../protocol" }
|