diff options
author | 2022-01-13 19:55:47 +0700 | |
---|---|---|
committer | 2022-01-13 19:56:16 +0700 | |
commit | 5f9cf991a7e2f5393e56b610db119bcedfd5eb42 (patch) | |
tree | d53595b55b07a51a0585831d841198e717b3e37d /examples/pokedex/Cargo.toml | |
parent | aaf2444e9fda16318e56adff9c7c8650a99e6a12 (diff) | |
download | iced-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 '')
-rw-r--r-- | examples/pokedex/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/pokedex/Cargo.toml b/examples/pokedex/Cargo.toml index 751e2872..c64cc85c 100644 --- a/examples/pokedex/Cargo.toml +++ b/examples/pokedex/Cargo.toml @@ -15,7 +15,8 @@ features = ["derive"] [dependencies.reqwest] version = "0.11" -features = ["json"] +default-features = false +features = ["json", "rustls-tls"] [dependencies.rand] version = "0.7" |