-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 804 Bytes
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 804 Bytes
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
42
43
44
45
46
47
[package]
name = "yomi-reader"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = "0.3"
dioxus-web = "0.3"
epub = "2"
log = "0.4"
wasm-logger = "0.2"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
async-trait = "0.1"
thiserror = "1.0"
serde-wasm-bindgen = "0.4"
serde = "1"
regex = "1"
rexie = "0.4"
[dependencies.yomi-dict]
git = "https://github.com/ShaddyDC/yomi-dict"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
"Selection",
"Window",
"Document",
"Url",
"Blob",
"Element",
"HtmlElement",
"HtmlInputElement",
"FileList",
"File",
"Storage",
]
[profile.release]
strip = "debuginfo"
opt-level = "z"
lto = true