Implemented fs module (#19)

This commit is contained in:
bicarlsen 2023-09-10 09:24:27 +02:00 committed by GitHub
parent 36c873b825
commit 55fe1d144f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 535 additions and 13 deletions

View file

@ -12,6 +12,7 @@ log = "0.4.17"
semver = {version = "1.0.14", optional = true, features = ["serde"]}
serde = {version = "1.0.140", features = ["derive"]}
serde-wasm-bindgen = "0.4.3"
serde_repr = "0.1.10"
thiserror = "1.0.37"
url = {version = "2.3.1", optional = true, features = ["serde"]}
wasm-bindgen = {version = "0.2.82", features = ["serde_json"]}
@ -25,11 +26,12 @@ wasm-bindgen-test = "0.3.33"
all-features = true
[features]
all = ["app", "clipboard", "event", "mocks", "tauri", "window", "process", "dialog", "os", "notification", "path", "updater", "global_shortcut"]
all = ["app", "clipboard", "event", "fs", "mocks", "tauri", "window", "process", "dialog", "os", "notification", "path", "updater", "global_shortcut"]
app = ["dep:semver"]
clipboard = []
dialog = []
event = ["dep:futures"]
fs = []
global_shortcut = []
mocks = []
notification = []