-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (76 loc) · 1.91 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (76 loc) · 1.91 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "blxcode-ui"
version = "0.5.1"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
leptos = { version = "0.8", features = ["csr"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "0.6"
serde_json = "1"
gloo-timers = { version = "0.4", features = ["futures"] }
console_error_panic_hook = "0.1.7"
base64 = { version = "0.22", default-features = false, features = ["std"] }
pulldown-cmark = "0.13"
leptos_icons = "0.7"
send_wrapper = "0.6"
icondata = { version = "0.7", default-features = false, features = ["lucide"] }
uuid = { version = "1", features = ["v4", "js"] }
web-sys = { version = "0.3", features = [
"DataTransfer",
"DragEvent",
"CssStyleDeclaration",
"DomRect",
"Element",
"EventTarget",
"HtmlElement",
"KeyboardEvent",
"HtmlButtonElement",
"HtmlDivElement",
"HtmlInputElement",
"HtmlIFrameElement",
"NodeList",
"HtmlSelectElement",
"HtmlTextAreaElement",
"MouseEvent",
"Navigator",
"Clipboard",
"ClipboardEvent",
"Storage",
"Window",
"Document",
"Event",
"CustomEvent",
"KeyboardEvent",
"HtmlAudioElement",
"HtmlMediaElement",
"Blob",
"BlobPropertyBag",
"DataTransferItem",
"DataTransferItemList",
"File",
"FileList",
"FileReader",
"Node",
"ProgressEvent",
"Url",
"Performance",
] }
[workspace]
members = ["src-tauri"]
# Faster dev rebuilds: full debug info isn't needed for the WASM frontend, and
# halves rustc link time on cold builds (Tauri's devUrl has a 180s timeout that
# the default `debug = 2` would otherwise blow past on first compile).
[profile.dev]
debug = 1
incremental = true
codegen-units = 256
[profile.release]
debug = false
strip = true
lto = "thin"
codegen-units = 1