summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-12 20:03:18 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-12 20:03:18 +0700
commit67f878b8906a7ad2bd708e7c2bc4aa9f1d232d0e (patch)
tree230b0d70d4c0e11591f493beaec8eac77d59cf7c /examples
parent1a31aefab401712e44cd613fc1337ab90579d926 (diff)
downloadiced-67f878b8906a7ad2bd708e7c2bc4aa9f1d232d0e.tar.gz
iced-67f878b8906a7ad2bd708e7c2bc4aa9f1d232d0e.tar.bz2
iced-67f878b8906a7ad2bd708e7c2bc4aa9f1d232d0e.zip
Remove support for old `tokio` crate
Diffstat (limited to 'examples')
-rw-r--r--examples/pokedex/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pokedex/Cargo.toml b/examples/pokedex/Cargo.toml
index 05e73992..751e2872 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_old"] }
+iced = { path = "../..", features = ["image", "debug", "tokio"] }
serde_json = "1.0"
[dependencies.serde]
@@ -14,7 +14,7 @@ version = "1.0"
features = ["derive"]
[dependencies.reqwest]
-version = "0.10.2"
+version = "0.11"
features = ["json"]
[dependencies.rand]