diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-25 14:45:05 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-25 14:45:05 +0100 |
commit | d0a0fcfdeda2c315a13ddd96b4fca958da0d9858 (patch) | |
tree | 6fb53e3b6e2999ac0c9e35f390d6be26a438a634 /planetwars-localdev/Cargo.toml | |
parent | d0af8d3bbff506d4f4caf03750c3b85c69c4f168 (diff) | |
download | planetwars.dev-d0a0fcfdeda2c315a13ddd96b4fca958da0d9858.tar.xz planetwars.dev-d0a0fcfdeda2c315a13ddd96b4fca958da0d9858.zip |
cli for running matches
Diffstat (limited to 'planetwars-localdev/Cargo.toml')
-rw-r--r-- | planetwars-localdev/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/planetwars-localdev/Cargo.toml b/planetwars-localdev/Cargo.toml new file mode 100644 index 0000000..31c403d --- /dev/null +++ b/planetwars-localdev/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "planetwars-localdev" +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" +planetwars-rules = { path = "../planetwars-rules" } +clap = { version = "3.0.0-rc.8", features = ["derive"] } +chrono = "0.4" + +rust-embed = "6.3.0" +axum = "0.4" +mime_guess = "2"
\ No newline at end of file |