diff options
author | 2020-11-25 04:24:44 +0100 | |
---|---|---|
committer | 2020-11-25 04:24:44 +0100 | |
commit | 87c9df294c79d73ff67a8d9a036cf9ddff24c52f (patch) | |
tree | 167a3a63519d20e67cf227441b938d8a9b0b584d /examples | |
parent | 8f081bad7756e16a4eb0ca4dcb1144fc47de5e9b (diff) | |
parent | 782dd2f5222bfef5e12aa576a821da21126505b7 (diff) | |
download | iced-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')
-rw-r--r-- | examples/download_progress/Cargo.toml | 2 | ||||
-rw-r--r-- | examples/game_of_life/Cargo.toml | 2 | ||||
-rw-r--r-- | examples/pokedex/Cargo.toml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/download_progress/Cargo.toml b/examples/download_progress/Cargo.toml index 34e6a132..4b05e7dc 100644 --- a/examples/download_progress/Cargo.toml +++ b/examples/download_progress/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [dependencies] -iced = { path = "../..", features = ["tokio"] } +iced = { path = "../..", features = ["tokio_old"] } iced_native = { path = "../../native" } iced_futures = { path = "../../futures" } reqwest = "0.10" 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" diff --git a/examples/pokedex/Cargo.toml b/examples/pokedex/Cargo.toml index 94320086..05e73992 100644 --- a/examples/pokedex/Cargo.toml +++ b/examples/pokedex/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [dependencies] -iced = { path = "../..", features = ["image", "debug", "tokio"] } +iced = { path = "../..", features = ["image", "debug", "tokio_old"] } serde_json = "1.0" [dependencies.serde] |