diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-01-08 23:48:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-08 23:48:46 +0100 |
commit | c41d4ff90e09b63bd1894052352a5acba57b1704 (patch) | |
tree | 52be95551ed263c2f4831aaefc78bb6fdda6d89c /ext/http/lib.rs | |
parent | 2be1282be42369e558cc77f75b22488ce7a8215e (diff) |
feat(core): allow specifying name and dependencies of an Extension (#17301)
Diffstat (limited to 'ext/http/lib.rs')
-rw-r--r-- | ext/http/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/http/lib.rs b/ext/http/lib.rs index 8719f9de6..f1371ffec 100644 --- a/ext/http/lib.rs +++ b/ext/http/lib.rs @@ -78,7 +78,8 @@ pub mod compressible; mod reader_stream; pub fn init() -> Extension { - Extension::builder() + Extension::builder(env!("CARGO_PKG_NAME")) + .dependencies(vec!["deno_web", "deno_net", "deno_fetch", "deno_websocket"]) .js(include_js_files!( prefix "deno:ext/http", "01_http.js", |