-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (38 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "browser-fs"
authors = ["Jeremie Drouet <[email protected]>"]
version = "0.1.0"
edition = "2021"
description = "A browser-based filesystem implementation for WebAssembly applications"
license = "MIT"
repository = "https://github.com/jdrouet/browser-fs"
documentation = "https://docs.rs/browser-fs"
readme = "readme.md"
keywords = ["wasm", "filesystem", "browser", "web", "async"]
categories = ["wasm", "web-programming", "filesystem", "asynchronous"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
futures-lite = "2"
js-sys = "0.3"
wasm-bindgen = "0.2"
wasm-bindgen-futures = { version = "0.4", features = [
"futures-core-03-stream",
] }
web-sys = { version = "0.3", features = [
"DomException",
"Exception",
"File",
"StorageManager",
"FileSystemGetFileOptions",
"FileSystemDirectoryHandle",
"FileSystemSyncAccessHandle",
"FileSystemFileHandle",
"FileSystemWritableFileStream",
"FileSystemGetDirectoryOptions",
"FileSystemRemoveOptions",
"WorkerGlobalScope",
"WorkerNavigator",
] }
[dev-dependencies]
wasm-bindgen-test = "0.3"