From 92edc364426ddb4c80292ebe7e702c02f9344c5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 21 Sep 2020 18:36:37 +0200 Subject: refactor: use futures and serde_json from deno_core (#7614) --- cli/lockfile.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cli/lockfile.rs') 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; -- cgit v1.2.3