[package] name = "board-server" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = { version = "0.3" } board-shared = { path = "../board-shared", features = ["serde"] } board-network = { path = "../board-network" } smol = "2.0.0" async-tungstenite = "0.25.0" tungstenite = "0.21.0" anyhow = "1.0.69" rand = "0.8.5" serde_json = "1.0.93" redis = { version = "0.25.2", features = ["aio", "async-std-comp"] } async-trait = "0.1.66"