From b67908698f703531bc98cb3feaf4a51744627a7d Mon Sep 17 00:00:00 2001 From: Marshall Pierce <575695+marshallpierce@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:16:03 -0700 Subject: [PATCH] Use rustls instead of openssl Using the `rustls-tls` feature on reqwest will use rustls and ring, which should compile on any system. --- src/exercises/day-4/link-checker.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/exercises/day-4/link-checker.md b/src/exercises/day-4/link-checker.md index 6f95e7d2..310d26a1 100644 --- a/src/exercises/day-4/link-checker.md +++ b/src/exercises/day-4/link-checker.md @@ -11,7 +11,7 @@ Cargo project and `reqwest` it as a dependency with: ```shell $ cargo new link-checker $ cd link-checker -$ cargo add --features blocking reqwest +$ cargo add --features blocking,rustls-tls reqwest ``` > If `cargo add` fails with `error: no such subcommand`, then please edit the @@ -33,7 +33,7 @@ The `cargo add` calls will update the `Cargo.toml` file to look like this: ```toml [dependencies] -reqwest = { version = "0.11.12", features = ["blocking"] } +reqwest = { version = "0.11.12", features = ["blocking", "rustls-tls"] } scraper = "0.13.0" thiserror = "1.0.37" ``` @@ -64,9 +64,6 @@ Run the code in `src/main.rs` with $ cargo run ``` -> If `cargo run` fails with an error mentioning OpenSSL, ensure that you have -> the OpenSSL headers installed by running `sudo apt install libssl-dev`. - ## Tasks * Use threads to check the links in parallel: send the URLs to be checked to a