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/ops/runtime_compiler.rs | |
parent | 0cb64cef767170827806974e59075dc56c2eafe5 (diff) |
Remove unnecessary extern statements
Diffstat (limited to 'cli/ops/runtime_compiler.rs')
-rw-r--r-- | cli/ops/runtime_compiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/runtime_compiler.rs b/cli/ops/runtime_compiler.rs index fe1b4d9e1..708a60cfa 100644 --- a/cli/ops/runtime_compiler.rs +++ b/cli/ops/runtime_compiler.rs @@ -1,12 +1,12 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -use crate::futures::FutureExt; use crate::tsc::runtime_bundle; use crate::tsc::runtime_compile; use crate::tsc::runtime_transpile; use deno_core::error::AnyError; use deno_core::BufVec; use deno_core::OpState; +use futures::FutureExt; use serde::Deserialize; use serde_json::Value; use std::cell::RefCell; |