summaryrefslogtreecommitdiff
path: root/cli/lockfile.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/lockfile.rs
parent9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff)
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/lockfile.rs')
-rw-r--r--cli/lockfile.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/lockfile.rs b/cli/lockfile.rs
index fcc15892b..266975ba7 100644
--- a/cli/lockfile.rs
+++ b/cli/lockfile.rs
@@ -1,6 +1,7 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-use serde_json::json;
+use deno_core::serde_json;
+use deno_core::serde_json::json;
use std::collections::BTreeMap;
use std::io::Result;