summaryrefslogtreecommitdiff
path: root/cli/http_cache.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-02-26 07:18:35 +1100
committerGitHub <noreply@github.com>2021-02-26 07:18:35 +1100
commite516e4d1d5bd12182a3f541e1e6e000639dbc5da (patch)
tree94bc762b8e64f243d773108e7fe0772246269ec8 /cli/http_cache.rs
parent975705a64911b0ced8ddf18985b49d86e4f35e51 (diff)
chore(cli/runtime): use re-export serde from deno_core (#9599)
Diffstat (limited to 'cli/http_cache.rs')
-rw-r--r--cli/http_cache.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/http_cache.rs b/cli/http_cache.rs
index e6a1e8ac7..e703ca05a 100644
--- a/cli/http_cache.rs
+++ b/cli/http_cache.rs
@@ -8,10 +8,10 @@ use crate::fs_util;
use crate::http_util::HeadersMap;
use deno_core::error::generic_error;
use deno_core::error::AnyError;
+use deno_core::serde::Deserialize;
+use deno_core::serde::Serialize;
use deno_core::serde_json;
use deno_core::url::Url;
-use serde::Deserialize;
-use serde::Serialize;
use std::fs;
use std::fs::File;
use std::io;