summaryrefslogtreecommitdiffstats
path: root/examples/download_progress
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-13 19:55:47 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-13 19:56:16 +0700
commit5f9cf991a7e2f5393e56b610db119bcedfd5eb42 (patch)
treed53595b55b07a51a0585831d841198e717b3e37d /examples/download_progress
parentaaf2444e9fda16318e56adff9c7c8650a99e6a12 (diff)
downloadiced-5f9cf991a7e2f5393e56b610db119bcedfd5eb42.tar.gz
iced-5f9cf991a7e2f5393e56b610db119bcedfd5eb42.tar.bz2
iced-5f9cf991a7e2f5393e56b610db119bcedfd5eb42.zip
Update `reqwest` in examples
... and rely on `rustls` instead of `native-tls`
Diffstat (limited to 'examples/download_progress')
-rw-r--r--examples/download_progress/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/download_progress/Cargo.toml b/examples/download_progress/Cargo.toml
index d3c578b1..5f5eed68 100644
--- a/examples/download_progress/Cargo.toml
+++ b/examples/download_progress/Cargo.toml
@@ -9,4 +9,8 @@ publish = false
iced = { path = "../..", features = ["tokio"] }
iced_native = { path = "../../native" }
iced_futures = { path = "../../futures" }
-reqwest = "0.11"
+
+[dependencies.reqwest]
+version = "0.11"
+default-features = false
+features = ["rustls-tls"]