From c04d4a449bd147c632c0b6ceae04f0514803b66f Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Sun, 26 Dec 2021 21:06:52 +0100 Subject: rename to planetwars-cli --- planetwars-cli/Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 planetwars-cli/Cargo.toml (limited to 'planetwars-cli/Cargo.toml') diff --git a/planetwars-cli/Cargo.toml b/planetwars-cli/Cargo.toml new file mode 100644 index 0000000..977ce18 --- /dev/null +++ b/planetwars-cli/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "planetwars-cli" +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 = { version = "0.4", features = ["serde"] } + +rust-embed = "6.3.0" +axum = "0.4" +mime_guess = "2" \ No newline at end of file -- cgit v1.2.3