-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
69 lines (60 loc) · 1.4 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
[workspace]
members = ["tauri", "bevy"]
default-members = ["bevy"]
resolver = "2"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
panic = "abort"
[workspace.package]
authors = ["langyo <[email protected]>"]
publish = false
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
anyhow = "^1"
async-trait = "^0.1"
derive_more = "*"
once_cell = "^1"
base64 = "^0.22"
bytes = "^1"
chrono = { version = "^0.4", features = ["serde", "unstable-locales"] }
futures = "^0.3"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
postcard = { version = "^1", features = ["alloc"] }
strum = { version = "^0.26", features = ["derive"] }
uuid = { version = "^1", features = [
'v4',
'fast-rng',
'macro-diagnostics',
'serde',
] }
image = { version = "^0.25", features = ["gif", "jpeg", "png", "webp"] }
log = "^0.4"
env_logger = "^0.11"
tracing = "^0.1"
tracing-subscriber = "^0.3"
tracing-appender = "^0.2"
console_log = "^1"
web-sys = { version = "^0.3", features = [
"Window",
"Document",
"Element",
"HtmlElement",
"HtmlHeadElement",
"HtmlBodyElement",
"HtmlStyleElement",
"HtmlTextAreaElement",
"HtmlInputElement",
"HtmlFormElement",
"CssStyleDeclaration",
"WheelEvent",
] }
js-sys = "^0.3"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "^0.4"
serde-wasm-bindgen = "^0.6"
gloo = "^0.11"
tokio = { version = "^1", features = ["full"] }