diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-05-31 21:08:56 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-05-31 21:08:56 +0200 |
commit | af5cd69f7b60c07c4830f2eca9b8b1544c7c4972 (patch) | |
tree | 8abe8829f8517299002a72bfeac84cd266f5d550 /planetwars-server/Cargo.toml | |
parent | ef19e3a9e79c85753f75b8f87a06b67c574a72ee (diff) | |
download | planetwars.dev-af5cd69f7b60c07c4830f2eca9b8b1544c7c4972.tar.xz planetwars.dev-af5cd69f7b60c07c4830f2eca9b8b1544c7c4972.zip |
set up gprc server
Diffstat (limited to 'planetwars-server/Cargo.toml')
-rw-r--r-- | planetwars-server/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/planetwars-server/Cargo.toml b/planetwars-server/Cargo.toml index 4c6ddfc..6b96b04 100644 --- a/planetwars-server/Cargo.toml +++ b/planetwars-server/Cargo.toml @@ -26,9 +26,14 @@ toml = "0.5" planetwars-matchrunner = { path = "../planetwars-matchrunner" } config = { version = "0.12", features = ["toml"] } thiserror = "1.0.31" +prost = "0.10" +tonic = "0.7.2" # TODO: remove me shlex = "1.1" +[build-dependencies] +tonic-build = "0.7.2" + [dev-dependencies] parking_lot = "0.11" |