summaryrefslogtreecommitdiffstats
path: root/examples/game_of_life
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-11-25 04:24:44 +0100
committerLibravatar GitHub <noreply@github.com>2020-11-25 04:24:44 +0100
commit87c9df294c79d73ff67a8d9a036cf9ddff24c52f (patch)
tree167a3a63519d20e67cf227441b938d8a9b0b584d /examples/game_of_life
parent8f081bad7756e16a4eb0ca4dcb1144fc47de5e9b (diff)
parent782dd2f5222bfef5e12aa576a821da21126505b7 (diff)
downloadiced-87c9df294c79d73ff67a8d9a036cf9ddff24c52f.tar.gz
iced-87c9df294c79d73ff67a8d9a036cf9ddff24c52f.tar.bz2
iced-87c9df294c79d73ff67a8d9a036cf9ddff24c52f.zip
Merge pull request #595 from valbendan/master
upgrade tokio to latest version(v0.3)
Diffstat (limited to 'examples/game_of_life')
-rw-r--r--examples/game_of_life/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game_of_life/Cargo.toml b/examples/game_of_life/Cargo.toml
index b9bb7f2a..9c4172c4 100644
--- a/examples/game_of_life/Cargo.toml
+++ b/examples/game_of_life/Cargo.toml
@@ -7,6 +7,6 @@ publish = false
[dependencies]
iced = { path = "../..", features = ["canvas", "tokio", "debug"] }
-tokio = { version = "0.2", features = ["blocking"] }
+tokio = { version = "0.3", features = ["sync"] }
itertools = "0.9"
rustc-hash = "1.1"