-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
76 lines (66 loc) · 1.79 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
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
[workspace]
members = ["packages/*", "website"]
resolver = "2"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
panic = "abort"
[workspace.dependencies]
anyhow = "^1"
async-trait = "^0.1"
derive_more = { version = "^1", features = ["full"] }
once_cell = "^1"
cfg-if = "^1"
base64 = "^0.22"
bytes = "^1"
percent-encoding = "^2"
chrono = { version = "^0.4", features = ["serde", "unstable-locales"] }
futures = "^0.3"
oneshot = "^0.1"
flume = "^0.11"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
toml = "^0.8"
postcard = { version = "^1", features = ["alloc"] }
strum = { version = "^0.26", features = ["derive"] }
uuid = { version = "^1", features = [
'v4',
'fast-rng',
'macro-diagnostics',
'serde',
] }
yuuka = "^0.5"
log = "^0.4"
env_logger = "^0.11"
tracing = "^0.1"
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
tracing-appender = "^0.2"
console_log = "^1"
web-sys = { version = "^0.3", features = [
"Window",
"Document",
"Navigator",
"Element",
"Event",
] }
js-sys = "^0.3"
wasm-bindgen = "^0.2"
wasm-bindgen-futures = "^0.4"
serde-wasm-bindgen = "^0.6"
gloo = "^0.11"
stylist = { version = "^0.13", features = [
"yew_integration",
"ssr",
"hydration",
] }
yew = { version = "^0.21", features = ["csr", "ssr", "hydration"] }
yew-router = "^0.18"
tokio = { version = "^1", features = ["full"] }
tauri = "^2"
tauri-build = { version = "^2", features = ["config-toml"] }
[patch.crates-io]
yew = { git = "https://github.com/langyo/yew", branch = "wasi-support-test" }
yew-router = { git = "https://github.com/langyo/yew", branch = "wasi-support-test" }
stylist = { git = "https://github.com/langyo/stylist-rs", branch = "wasi-support" }
prokio = { git = "https://github.com/langyo/prokio", branch = "wasi-fix" }