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/metrics.rs | |
parent | 9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff) |
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/metrics.rs')
-rw-r--r-- | cli/metrics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/metrics.rs b/cli/metrics.rs index 5efce29db..c70e0dab9 100644 --- a/cli/metrics.rs +++ b/cli/metrics.rs @@ -96,7 +96,7 @@ pub fn metrics_op(op_fn: Box<OpFn>) -> Box<OpFn> { let mut s = op_state.borrow_mut(); let metrics = s.borrow_mut::<Metrics>(); - use futures::future::FutureExt; + use deno_core::futures::future::FutureExt; match op { Op::Sync(buf) => { |