simple conway thing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "cgol"
version = "0.1.1"
edition = "2021"
authors = ["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"