2020-04-29 08:25:42 +02:00
|
|
|
[package]
|
|
|
|
|
name = "game_of_life"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2022-02-09 17:53:35 +07:00
|
|
|
edition = "2021"
|
2020-04-29 08:25:42 +02:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2020-05-01 00:50:40 +02:00
|
|
|
iced = { path = "../..", features = ["canvas", "tokio", "debug"] }
|
2021-01-04 22:58:39 +03:00
|
|
|
tokio = { version = "1.0", features = ["sync"] }
|
2020-04-29 08:25:42 +02:00
|
|
|
itertools = "0.9"
|
2020-05-02 03:31:31 +02:00
|
|
|
rustc-hash = "1.1"
|
2021-11-10 23:56:52 -03:00
|
|
|
env_logger = "0.9"
|