diff options
author | 2020-05-01 00:50:40 +0200 | |
---|---|---|
committer | 2020-05-01 00:50:40 +0200 | |
commit | ee97887409849395ecfd63e499c5d5372b121aa3 (patch) | |
tree | cb3d8faebc657563841651b084faa0c2d24196be /examples/game_of_life/Cargo.toml | |
parent | 005ad6215aa9e2a8f159454c8006b5dc6aeb3635 (diff) | |
download | iced-ee97887409849395ecfd63e499c5d5372b121aa3.tar.gz iced-ee97887409849395ecfd63e499c5d5372b121aa3.tar.bz2 iced-ee97887409849395ecfd63e499c5d5372b121aa3.zip |
Introduce `Cell` type in `game_of_life`
Diffstat (limited to 'examples/game_of_life/Cargo.toml')
-rw-r--r-- | examples/game_of_life/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game_of_life/Cargo.toml b/examples/game_of_life/Cargo.toml index 413493ae..b1054537 100644 --- a/examples/game_of_life/Cargo.toml +++ b/examples/game_of_life/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" publish = false [dependencies] -iced = { path = "../..", features = ["canvas", "tokio"] } +iced = { path = "../..", features = ["canvas", "tokio", "debug"] } itertools = "0.9" |