chess-server/Cargo.toml

19 lines
566 B
TOML
Raw Normal View History

2021-12-31 03:15:37 +00:00
[package]
name = "chess"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-31 05:21:43 +00:00
actix-cors = "0.6.0-beta.8"
2021-12-31 03:15:37 +00:00
actix-web = { version = "4.0.0-beta.18", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_repr = "0.1"
tokio = { version = "1", default-features = false, features = ["sync"] }
tracing = "0.1"
tracing-actix-web = "0.5.0-beta.7"
tracing-log = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "0.8.2", features = ["serde", "v4"] }