diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-21 18:36:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 18:36:37 +0200 |
commit | 92edc364426ddb4c80292ebe7e702c02f9344c5b (patch) | |
tree | 2fb92cdd08b0d10a59a2cd4b4820f7afbca17486 /cli/ops/compiler.rs | |
parent | 9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff) |
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/ops/compiler.rs')
-rw-r--r-- | cli/ops/compiler.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/ops/compiler.rs b/cli/ops/compiler.rs index 618851daa..faf5fff32 100644 --- a/cli/ops/compiler.rs +++ b/cli/ops/compiler.rs @@ -1,5 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +use deno_core::serde_json::json; use std::sync::Arc; use std::sync::Mutex; |