diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 12:50:16 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-09-16 13:29:42 -0400 |
commit | c3ef358c01956bfa44a7427a2548943c3f045138 (patch) | |
tree | 25ea571fb39bccaa9cd0817f30114875e7382cee /cli/main.rs | |
parent | 0cb64cef767170827806974e59075dc56c2eafe5 (diff) |
Remove unnecessary extern statements
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/main.rs b/cli/main.rs index cd32207c7..9a9ca9ee2 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1,25 +1,11 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -extern crate dissimilar; #[macro_use] extern crate lazy_static; #[macro_use] extern crate log; -extern crate futures; #[macro_use] extern crate serde_json; -extern crate clap; -extern crate deno_core; -extern crate encoding_rs; -extern crate indexmap; -#[cfg(unix)] -extern crate nix; -extern crate rand; -extern crate regex; -extern crate reqwest; -extern crate serde; -extern crate tokio; -extern crate url; mod ast; mod checksum; |