Skip to content

Commit 442edb0

Browse files
authored
Remove reqwest's rustls-tls feature in link checker exercise (#3028)
As of version 0.13 of `reqwest`, the `rustls-tls` feature does not exist anymore. The feature has been renamed to `rustls` and is turned on by default. See https://github.com/seanmonstar/reqwest/releases/tag/v0.13.0 for details. Thus, we remove the feature from the exercise to avoid students running into issues.
1 parent 3416d59 commit 442edb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/concurrency/sync-exercises/link-checker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Create a new Cargo project and `reqwest` it as a dependency with:
1818
```shell
1919
cargo new link-checker
2020
cd link-checker
21-
cargo add --features blocking,rustls-tls reqwest
21+
cargo add --features blocking reqwest
2222
cargo add scraper
2323
cargo add thiserror
2424
```

0 commit comments

Comments
 (0)