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/bench/main.rs | 2 +- cli/bench/throughput.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/bench') diff --git a/cli/bench/main.rs b/cli/bench/main.rs index bb735f717..cf640d1f7 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -1,6 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -use serde_json::{self, map::Map, Number, Value}; +use deno_core::serde_json::{self, map::Map, Number, Value}; use std::{ convert::From, env, fs, diff --git a/cli/bench/throughput.rs b/cli/bench/throughput.rs index 74844fbed..611ccbcc3 100644 --- a/cli/bench/throughput.rs +++ b/cli/bench/throughput.rs @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::Result; -use serde_json::{Number, Value}; +use deno_core::serde_json::{Number, Value}; use std::{ path::PathBuf, process::Command, -- cgit v1.2.3