Add game_of_life example
RIP John Conway
This commit is contained in:
parent
afa0bca4fd
commit
70f86f998b
6 changed files with 569 additions and 0 deletions
12
examples/game_of_life/Cargo.toml
Normal file
12
examples/game_of_life/Cargo.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue