-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
89 lines (77 loc) · 2.02 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
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = ["packages/*"]
default-members = ["packages/server"]
resolver = "2"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
panic = "abort"
[workspace.package]
authors = ["langyo <[email protected]>"]
publish = false
version = "0.3.2"
edition = "2021"
[workspace.dependencies]
hikari-boot = { git = "https://github.com/celestia-island/hikari" }
tairitsu-database = { git = "https://github.com/celestia-island/tairitsu" }
anyhow = "^1"
async-trait = "^0.1"
derive_more = { version = "^1", features = ["full"] }
once_cell = "^1"
base64 = "^0.22"
bytes = "^1"
chrono = { version = "^0.4", features = ["serde", "unstable-locales"] }
futures = "^0.3"
cfg-if = "^1"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
postcard = { version = "^1", features = ["alloc"] }
toml = "^0.8"
strum = { version = "^0.26", features = ["derive"] }
uuid = { version = "^1", features = [
'v4',
'fast-rng',
'macro-diagnostics',
'serde',
] }
log = "^0.4"
tracing = "^0.1"
tracing-subscriber = "^0.3"
tracing-appender = "^0.2"
console_log = "^1"
web-sys = { version = "^0.3", features = [
"Window",
"Document",
"Navigator",
"Element",
"HtmlElement",
"HtmlHeadElement",
"HtmlBodyElement",
"HtmlStyleElement",
"HtmlTextAreaElement",
"HtmlInputElement",
"HtmlFormElement",
"CssStyleDeclaration",
"WheelEvent",
] }
js-sys = "^0.3"
wasm-bindgen = "0.2.95"
wasm-bindgen-futures = "^0.4"
gloo = "^0.11"
sea-orm = { version = "^1", default-features = false, features = [
"macros",
"proxy",
"with-uuid",
"with-chrono",
"with-json",
"debug-print",
] }
worker = "^0.5"
image = { version = "^0.25", features = ["gif", "jpeg", "png", "webp"] }
webp = "^0.3"
webp-animation = "^0.9"
[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" }