diff --git a/http-proxy/Cargo.toml b/http-proxy/Cargo.toml index bcb80397..2a7beb8e 100644 --- a/http-proxy/Cargo.toml +++ b/http-proxy/Cargo.toml @@ -15,7 +15,7 @@ path = "src/server.rs" [dependencies] actix-rt = "0.2" -actix-web = "1.0.0" +actix-web = { version = "1.0.0", features=["ssl"] } env_logger = "0.5" futures = "0.1" diff --git a/http-proxy/src/main.rs b/http-proxy/src/main.rs index e500bbee..ff45ef97 100644 --- a/http-proxy/src/main.rs +++ b/http-proxy/src/main.rs @@ -24,7 +24,7 @@ fn streaming( ) -> impl Future> { // send client request client - .get("https://www.rust-lang.org/en-US/") + .get("https://www.rust-lang.org/") .send() // <- connect to host and send request .map_err(Error::from) // <- convert SendRequestError to an Error .and_then(|resp| {