summaryrefslogtreecommitdiff
path: root/ext/cache/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/cache/lib.rs')
-rw-r--r--ext/cache/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/cache/lib.rs b/ext/cache/lib.rs
index 50a07b255..c48b7cda4 100644
--- a/ext/cache/lib.rs
+++ b/ext/cache/lib.rs
@@ -26,7 +26,8 @@ pub struct CreateCache<C: Cache + 'static>(pub Arc<dyn Fn() -> C>);
pub fn init<CA: Cache + 'static>(
maybe_create_cache: Option<CreateCache<CA>>,
) -> Extension {
- Extension::builder()
+ Extension::builder(env!("CARGO_PKG_NAME"))
+ .dependencies(vec!["deno_webidl", "deno_web", "deno_url", "deno_fetch"])
.js(include_js_files!(
prefix "deno:ext/cache",
"01_cache.js",