diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-28 13:49:19 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-30 08:29:28 -0400 |
commit | d8d5c421c33b1cc5416ff87f6a7c3837e5176d4d (patch) | |
tree | e43b4ae5a48f465d54f6d229f0edde131d84823c /BUILD.gn | |
parent | 11896647e6a31122ee8c015e2cc6093e448029d6 (diff) |
Support https imports.
Adds hyper-rustls to the build.
Use ring for sha1 instead of "ssh1" crate.
Fixes #528.
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -38,10 +38,11 @@ config("deno_config") { main_extern = [ "$rust_build:hyper", + "$rust_build:hyper_rustls", "$rust_build:futures", "$rust_build:libc", "$rust_build:log", - "$rust_build:sha1", + "$rust_build:ring", "$rust_build:tempfile", "$rust_build:rand", "$rust_build:tokio", |