Add game_of_life example

RIP John Conway
This commit is contained in:
Héctor Ramón Jiménez 2020-04-29 08:25:42 +02:00
parent afa0bca4fd
commit 70f86f998b
6 changed files with 569 additions and 0 deletions

View file

@ -0,0 +1,12 @@
[package]
name = "game_of_life"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
publish = false
[dependencies]
iced = { path = "../..", features = ["async-std", "canvas", "debug"] }
iced_native = { path = "../../native" }
async-std = { version = "1.0", features = ["unstable"] }
itertools = "0.9"