diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-07 05:13:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-07 18:13:44 +0900 |
commit | fe368b72c1dd2f2d17b7b7e5965b9e3d9ca61c35 (patch) | |
tree | ebc76fb86e3bee1baf1e336feb36a507affa7316 /ext/node/lib.rs | |
parent | 64354f41125642d420d80cbf617dfb8ddca398e5 (diff) |
refactor: Add "deno_fs" extension crate (#18040)
This commit factors out APIs related to file system from "runtime/"
to a separate "deno_fs" extension crate.
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 468280075..e1134bd03 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -323,7 +323,7 @@ pub fn init_polyfill() -> Extension { Extension::builder(env!("CARGO_PKG_NAME")) .esm(esm_files) .esm_entry_point("internal:deno_node/module_all.ts") - .dependencies(vec!["deno_io"]) + .dependencies(vec!["deno_io", "deno_fs"]) .ops(vec![ crypto::op_node_create_hash::decl(), crypto::op_node_hash_update::decl(), |