planetwars.dev/planetwars-cli/Cargo.toml

25 lines
656 B
TOML
Raw Normal View History

2021-12-25 13:45:05 +00:00
[package]
2021-12-26 20:06:52 +00:00
name = "planetwars-cli"
2021-12-25 13:45:05 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "pwcli"
[dependencies]
futures-core = "0.3"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
rand = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
clap = { version = "3.0.0-rc.8", features = ["derive"] }
2021-12-25 20:49:16 +00:00
chrono = { version = "0.4", features = ["serde"] }
2021-12-28 13:57:41 +00:00
shlex = "1.1"
planetwars-matchrunner = { path = "../planetwars-matchrunner" }
2021-12-25 13:45:05 +00:00
rust-embed = "6.3.0"
2021-12-27 21:18:46 +00:00
axum = { version = "0.4", features = ["ws"] }
2021-12-25 13:45:05 +00:00
mime_guess = "2"