simple conway thing
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..166bd4f
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,17 @@
+[package]
+name = "cgol"
+version = "0.1.0"
+edition = "2021"
+author = ["bendn <[email protected]>"]
+description = "simple finite cgol, takes seed from a image, outputs to the terminal"
+repository = "https://github.com/bend-n/cgol.git"
+license = "MIT"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+image = { version = "0.24.7", features = ["png"], default-features = false }
+
+[profile.release]
+debug = true
+lto = "thin"