1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 14:48:14 -05:00
denoland-deno/ext/io
David Sherret 59fbdc4a93 refactor(ext/fs): boxed deno_fs::FileSystem (#18945)
1. Boxed `File` and `FileSystem` to allow more easily passing this
through the CLI code (as shown within this pr).
2. `StdFileResource` is now `FileResource`. `FileResource` now contains
an `Rc<dyn File>`.
2023-05-11 17:26:25 -04:00
..
12_io.js feat(core): sync io ops in core (#18603) 2023-04-06 00:14:16 +02:00
Cargo.toml refactor(ext/fs): boxed deno_fs::FileSystem (#18945) 2023-05-11 17:26:25 -04:00
fs.rs refactor(ext/fs): boxed deno_fs::FileSystem (#18945) 2023-05-11 17:26:25 -04:00
lib.rs refactor(ext/fs): boxed deno_fs::FileSystem (#18945) 2023-05-11 17:26:25 -04:00
README.md refactor(runtime): factor out deno_io extension crate (#18001) 2023-03-05 00:39:48 +00:00

deno_io

This crate provides IO primitives for other Deno extensions, this includes stdio streams and abstraction over File System files.