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 /Cargo.toml | |
| 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 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index fdcef9848..1fbdd5c65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ members = [ "ext/fetch", "ext/flash", "ext/ffi", + "ext/fs", "ext/http", "ext/io", "ext/net", @@ -62,6 +63,7 @@ deno_crypto = { version = "0.105.0", path = "./ext/crypto" } deno_fetch = { version = "0.115.0", path = "./ext/fetch" } deno_ffi = { version = "0.78.0", path = "./ext/ffi" } deno_flash = { version = "0.27.0", path = "./ext/flash" } +deno_fs = { version = "0.1.0", path = "./ext/fs" } deno_http = { version = "0.86.0", path = "./ext/http" } deno_io = { version = "0.1.0", path = "./ext/io" } deno_net = { version = "0.83.0", path = "./ext/net" } |
