summaryrefslogtreecommitdiffstats
path: root/examples/pokedex
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-03-06 03:58:38 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-03-06 03:58:38 +0100
commit29219500b7144f31dbf50fcc64653f7d2ce806d0 (patch)
treeabd39a5127a5dc503e796b21b856e1bf0e2ddf6c /examples/pokedex
parentd817fe8e144e8d81979d8f8c8dfb95da8b28e3e9 (diff)
downloadiced-29219500b7144f31dbf50fcc64653f7d2ce806d0.tar.gz
iced-29219500b7144f31dbf50fcc64653f7d2ce806d0.tar.bz2
iced-29219500b7144f31dbf50fcc64653f7d2ce806d0.zip
Update `reqwest` in `pokedex` example
Diffstat (limited to 'examples/pokedex')
-rw-r--r--examples/pokedex/Cargo.toml14
1 files changed, 9 insertions, 5 deletions
diff --git a/examples/pokedex/Cargo.toml b/examples/pokedex/Cargo.toml
index c1e3edb5..94320086 100644
--- a/examples/pokedex/Cargo.toml
+++ b/examples/pokedex/Cargo.toml
@@ -7,12 +7,16 @@ publish = false
[dependencies]
iced = { path = "../..", features = ["image", "debug", "tokio"] }
-serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
-rand = { version = "0.7", features = ["wasm-bindgen"] }
+
+[dependencies.serde]
+version = "1.0"
+features = ["derive"]
[dependencies.reqwest]
-version = "0.10"
-git = "https://github.com/hecrj/reqwest.git"
-branch = "feature/wasm-deserialize-json"
+version = "0.10.2"
features = ["json"]
+
+[dependencies.rand]
+version = "0.7"
+features = ["wasm-bindgen"]