diff options
author | 2020-11-05 11:36:23 +0800 | |
---|---|---|
committer | 2020-11-05 11:36:23 +0800 | |
commit | eacb2e913fdbfe7af735ec0f4041599a87ad318a (patch) | |
tree | d492897991c6cd1fe0ec3aaa83bd4be88f64ae78 /examples/game_of_life | |
parent | e6131783e981121536769e221a9b939c41b60dec (diff) | |
download | iced-eacb2e913fdbfe7af735ec0f4041599a87ad318a.tar.gz iced-eacb2e913fdbfe7af735ec0f4041599a87ad318a.tar.bz2 iced-eacb2e913fdbfe7af735ec0f4041599a87ad318a.zip |
upgrade tokio to latest version(v0.3)
Diffstat (limited to 'examples/game_of_life')
-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 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" |