diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/BUILD.gn | 1 | ||||
-rw-r--r-- | cli/Cargo.toml | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/cli/BUILD.gn b/cli/BUILD.gn index f385a0391..a292e559f 100644 --- a/cli/BUILD.gn +++ b/cli/BUILD.gn @@ -35,6 +35,7 @@ main_extern = [ "$rust_build:tokio_fs", "$rust_build:tokio_io", "$rust_build:tokio_process", + "$rust_build:tokio_rustls", "$rust_build:tokio_threadpool", "$rust_build:url", ] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 58d142195..55d776614 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -32,7 +32,7 @@ lazy_static = "1.3.0" libc = "0.2.51" log = "0.4.6" rand = "0.6.5" -regex = "1.1.5" +regex = "1.1.6" remove_dir_all = "0.5.1" ring = "0.14.6" rustyline = "3.0.0" @@ -44,6 +44,7 @@ tokio-executor = "0.1.7" tokio-fs = "0.1.6" tokio-io = "0.1.12" tokio-process = "0.2.3" +tokio-rustls = "0.9.2" tokio-threadpool = "0.1.13" url = "1.7.2" |