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/fmt.rs | |
parent | 9d738fc1977e0bd3d36f361198a1101e17c3b3b3 (diff) |
refactor: use futures and serde_json from deno_core (#7614)
Diffstat (limited to 'cli/fmt.rs')
-rw-r--r-- | cli/fmt.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/fmt.rs b/cli/fmt.rs index d989ac1ad..452ae20b5 100644 --- a/cli/fmt.rs +++ b/cli/fmt.rs @@ -13,6 +13,7 @@ use crate::fs::files_in_subtree; use crate::text_encoding; use deno_core::error::generic_error; use deno_core::error::AnyError; +use deno_core::futures; use dprint_plugin_typescript as dprint; use std::fs; use std::io::stdin; |