From d8d5c421c33b1cc5416ff87f6a7c3837e5176d4d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 28 Aug 2018 13:49:19 -0400 Subject: Support https imports. Adds hyper-rustls to the build. Use ring for sha1 instead of "ssh1" crate. Fixes #528. --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index a43f62642..e4a756654 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,12 +4,13 @@ extern crate hyper; extern crate libc; extern crate msg_rs as msg_generated; extern crate rand; -extern crate sha1; extern crate tempfile; extern crate tokio; extern crate url; #[macro_use] extern crate log; +extern crate hyper_rustls; +extern crate ring; mod binding; mod deno_dir; -- cgit v1.2.3