summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2018-09-17 11:11:12 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-17 12:09:20 -0700
commit82d0638139adb64ae634d3b304b1c44f7cb358ee (patch)
tree98e4a49c063a769e05ae533803a2f347fb43156d
parent24ebd80ae7c6fe86afb5bbc9795f6d946d700107 (diff)
Add missing deps to cargo.toml
We're using ring and futures directly, so they should be listed in cargo.toml.
-rw-r--r--Cargo.toml12
1 files changed, 7 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 15d3e0286..3781cc852 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"