summaryrefslogtreecommitdiff
path: root/cli/bench
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench')
-rw-r--r--cli/bench/main.rs2
-rw-r--r--cli/bench/throughput.rs2
2 files changed, 2 insertions, 2 deletions
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,