-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
52 lines (49 loc) · 1.14 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
[workspace]
resolver = "2"
members = [
"hes-game",
"hes-engine",
"hes-editor",
"util/*",
]
default-members = [
"hes-game",
"hes-engine",
"hes-editor",
"util/*",
]
[workspace.dependencies]
leptos = { version = "0.6", features = ["csr", "tracing"] }
leptos_router = { version = "0.6", features = ["csr"] }
leptos-use = { git = "https://github.com/Synphonyte/leptos-use", version = "*" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
serde-wasm-bindgen = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.120", features = ["float_roundtrip"] }
web-sys = "0.3"
js-sys = "0.3"
log = "0.4.22"
console_log = "1.0.0"
console_error_panic_hook = "0.1.7"
tracing = "0.1.40"
tracing-wasm = "0.2.1"
numfmt = "1.1.1"
strum = { version = "0.25.0", features = ["strum_macros", "derive"] }
enum-map = { version = "2.7.3", features = ["serde"] }
fastrand = { version = "2.1.0" }
[profile.release]
debug = 0
opt-level = 'z'
lto = "fat"
strip = true
panic = "abort"
codegen-units = 1
[profile.wasm-release]
inherits = "release"
debug = 0
opt-level = 'z'
lto = true
strip = true
panic = "abort"
codegen-units = 1