iced/examples/game_of_life/Cargo.toml
Héctor Ramón Jiménez 70f86f998b Add game_of_life example
RIP John Conway
2020-04-29 08:25:42 +02:00

12 lines
346 B
TOML

[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"