diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-31 11:11:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-31 11:11:10 -0700 |
| commit | 198e396eadad704e96c9f37e24effc89a904f570 (patch) | |
| tree | d07bd792de9023196a95374ead0520e54995dbc2 /Cargo.toml | |
| parent | 21dac6646552dcacb68a0ad167723976f27b5c47 (diff) | |
Support cargo check (#1128)
- Based on code from @qti3e and @piscisaureus in #724 and #1125
respectively.
- TODO The DENO_BUILD_PATH env var must be supplied and must be an
absolute path, this restriction should be removed in future work.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 96499adbd..a06dd5477 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,15 +13,21 @@ atty = "0.2.11" dirs = "1.0.4" flatbuffers = { path = "third_party/flatbuffers/rust/flatbuffers/" } futures = "0.1.25" +getopts = "0.2.18" hyper = "0.12.12" # The current version of hyper-rustls, 0.14.0, depends on tokio-core, which is # deprecated. hyper-rustls = { git = "https://github.com/ctz/hyper-rustls.git" } +lazy_static = "1.1.0" libc = "0.2.43" log = "0.4.5" rand = "0.4.3" +remove_dir_all = "0.5.1" ring = "0.13.2" tempfile = "3" tokio = "0.1.11" +tokio-executor = "0.1.5" +tokio-fs = "0.1.3" +tokio-io = "0.1.8" +tokio-threadpool = "0.1.6" url = "1.7.1" -getopts = "0.2.18" |
