diff options
Diffstat (limited to 'planetwars-client/Cargo.toml')
-rw-r--r-- | planetwars-client/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/planetwars-client/Cargo.toml b/planetwars-client/Cargo.toml new file mode 100644 index 0000000..9c68391 --- /dev/null +++ b/planetwars-client/Cargo.toml @@ -0,0 +1,18 @@ +[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"] } +tokio-stream = "0.1.9" +prost = "0.10" +tonic = "0.7.2" +serde = { version = "1.0", features = ["derive"] } +toml = "0.5" +planetwars-matchrunner = { path = "../planetwars-matchrunner" } + +[build-dependencies] +tonic-build = "0.7.2" |