planetwars.dev/planetwars-client/Cargo.toml

21 lines
579 B
TOML
Raw Permalink Normal View History

2022-06-01 18:19:13 +00:00
[package]
name = "planetwars-client"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.15", features = ["full"] }
2022-06-05 19:22:38 +00:00
tokio-stream = "0.1.9"
2022-06-01 18:19:13 +00:00
prost = "0.10"
2022-07-22 21:50:52 +00:00
tonic = { version = "0.7.2", features = ["tls", "tls-roots"] }
2022-06-07 18:16:42 +00:00
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
planetwars-matchrunner = { path = "../planetwars-matchrunner" }
2022-07-22 21:06:59 +00:00
clap = { version = "3.2", features = ["derive", "env"]}
shlex = "1.1"
2022-06-01 18:19:13 +00:00
[build-dependencies]
tonic-build = "0.7.2"