From 82d0638139adb64ae634d3b304b1c44f7cb358ee Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 17 Sep 2018 11:11:12 -0700 Subject: [PATCH] Add missing deps to cargo.toml We're using ring and futures directly, so they should be listed in cargo.toml. --- Cargo.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 15d3e0286b..3781cc8521 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,13 +8,15 @@ name = "deno" version = "0.0.0" [dependencies] -url = "1.7.1" +dirs = "1.0.3" +flatbuffers = { path = "third_party/flatbuffers/rust/flatbuffers/" } +futures = "0.1.23" +hyper = "0.12.9" +hyper-rustls = "0.14.0" libc = "0.2.42" log = "0.4.4" rand = "0.4.3" +ring = "0.13.2" tempfile = "3" tokio = "0.1.8" -hyper = "0.12.9" -hyper-rustls = "0.14.0" -flatbuffers = { path = "third_party/flatbuffers/rust/flatbuffers/" } -dirs = "1.0.3" +url = "1.7.1"