WordGrid/server/Cargo.toml

16 lines
404 B
TOML
Raw Normal View History

2024-11-09 03:47:31 +00:00
[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]
itertools = "0.13.0"
rocket = { version = "0.5.1", features = ["json"] }
2024-12-02 23:39:27 +00:00
word_grid = { path="../wordgrid" }
2024-11-09 03:47:31 +00:00
serde_json = { workspace = true }
serde = { workspace = true }
2024-12-02 23:39:27 +00:00
uuid = { version = "1.11.0", features = ["serde", "v4"] }
2024-11-09 03:47:31 +00:00
ws = { package = "rocket_ws", version = "0.1.1" }
2024-12-02 23:39:27 +00:00
rand = { workspace = true }
2024-11-09 03:47:31 +00:00
#futures = "0.3.30"