2021-12-25 14:45:05 +01:00
|
|
|
[package]
|
2021-12-26 21:06:52 +01:00
|
|
|
name = "planetwars-cli"
|
2021-12-25 14:45:05 +01: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 21:49:16 +01:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2021-12-28 14:57:41 +01:00
|
|
|
shlex = "1.1"
|
2022-01-01 12:10:02 +01:00
|
|
|
planetwars-matchrunner = { path = "../planetwars-matchrunner" }
|
2021-12-25 14:45:05 +01:00
|
|
|
|
|
|
|
rust-embed = "6.3.0"
|
2021-12-27 22:18:46 +01:00
|
|
|
axum = { version = "0.4", features = ["ws"] }
|
2021-12-25 14:45:05 +01:00
|
|
|
mime_guess = "2"
|