summaryrefslogtreecommitdiff
path: root/cli/ops/runtime_compiler.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-09-21 18:36:37 +0200
committerGitHub <noreply@github.com>2020-09-21 18:36:37 +0200
commit92edc364426ddb4c80292ebe7e702c02f9344c5b (patch)
tree2fb92cdd08b0d10a59a2cd4b4820f7afbca17486 /cli/ops/runtime_compiler.rs
parent9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff)
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/ops/runtime_compiler.rs')
-rw-r--r--cli/ops/runtime_compiler.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/ops/runtime_compiler.rs b/cli/ops/runtime_compiler.rs
index f2839585c..b51cda95b 100644
--- a/cli/ops/runtime_compiler.rs
+++ b/cli/ops/runtime_compiler.rs
@@ -5,11 +5,12 @@ use crate::tsc::runtime_bundle;
use crate::tsc::runtime_compile;
use crate::tsc::runtime_transpile;
use deno_core::error::AnyError;
+use deno_core::futures::FutureExt;
+use deno_core::serde_json;
+use deno_core::serde_json::Value;
use deno_core::BufVec;
use deno_core::OpState;
-use futures::FutureExt;
use serde::Deserialize;
-use serde_json::Value;
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::Rc;