diff options
author | 2021-01-04 22:58:39 +0300 | |
---|---|---|
committer | 2021-01-04 23:20:21 +0100 | |
commit | 50452e62b4df458d676fc95361b04ef2dd83aebf (patch) | |
tree | a8988fe89505da6675e846938080d8563157927d /examples/game_of_life | |
parent | 2665860b4ddff773bca9959fe828776ecb03ab7d (diff) | |
download | iced-50452e62b4df458d676fc95361b04ef2dd83aebf.tar.gz iced-50452e62b4df458d676fc95361b04ef2dd83aebf.tar.bz2 iced-50452e62b4df458d676fc95361b04ef2dd83aebf.zip |
Update `tokio` to `1.0`
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 9c4172c4..ffd2f19e 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.3", features = ["sync"] } +tokio = { version = "1.0", features = ["sync"] } itertools = "0.9" rustc-hash = "1.1" |