summaryrefslogtreecommitdiff
path: root/cli/lib.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-02-19 08:17:13 -0500
committerGitHub <noreply@github.com>2020-02-19 08:17:13 -0500
commit852823fa505d75d61e70e1330bbf366aa248e650 (patch)
tree371f39e954c6b8169ed9fd1f96d022e13e185aa8 /cli/lib.rs
parent046bbb26913f9da58b0d23ae331e9dab9dc19e59 (diff)
refactor: rewrite HTTP cache for file fetcher (#4030)
Diffstat (limited to 'cli/lib.rs')
-rw-r--r--cli/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/lib.rs b/cli/lib.rs
index 7737d1741..3edcad7eb 100644
--- a/cli/lib.rs
+++ b/cli/lib.rs
@@ -33,6 +33,7 @@ pub mod fmt_errors;
mod fs;
mod global_state;
mod global_timer;
+pub mod http_cache;
mod http_util;
mod import_map;
pub mod installer;
@@ -132,7 +133,7 @@ fn print_cache_info(state: &GlobalState) {
println!(
"{} {:?}",
colors::bold("Remote modules cache:".to_string()),
- state.dir.deps_cache.location
+ state.file_fetcher.http_cache.location
);
println!(
"{} {:?}",