summaryrefslogtreecommitdiffstats
path: root/CLI/rust/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/rust/Cargo.toml')
-rw-r--r--CLI/rust/Cargo.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/CLI/rust/Cargo.toml b/CLI/rust/Cargo.toml
index 58c2250..41aff9e 100644
--- a/CLI/rust/Cargo.toml
+++ b/CLI/rust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
-name = "game-of-life"
-version = "0.1.0"
+name = "terminal_game_of_life"
+version = "0.1.0-alpha"
authors = ["a14m <[email protected]>"]
edition = "2018"
description = "Conway's game of life implementation as a CLI rust crate"
@@ -9,6 +9,10 @@ homepage = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/rust/README.md"
repository = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/rust"
license = "MIT"
+[[bin]]
+name = "game-of-life"
+path = "src/main.rs"
+
[dependencies]
clap = { version = "3.0.0-beta.2", features = ["wrap_help"] }
curl = "0.4.35"