Implement pure version of game_of_life example 🎉

This commit is contained in:
Héctor Ramón Jiménez 2022-03-09 19:09:40 +07:00
parent 0cddb3c1b5
commit 7d7064a44d
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
7 changed files with 1266 additions and 3 deletions

View file

@ -0,0 +1,13 @@
[package]
name = "pure_game_of_life"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
publish = false
[dependencies]
iced = { path = "../../..", features = ["pure", "canvas", "tokio", "debug"] }
tokio = { version = "1.0", features = ["sync"] }
itertools = "0.9"
rustc-hash = "1.1"
env_logger = "0.9"