-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 871 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 871 Bytes
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
[package]
name = "personal-site"
version = "0.1.0"
edition = "2021"
[dependencies]
comrak = "0.48.0"
getrandom = { version = "0.3.4", features = ["wasm_js"] }
gloo = "0.11.0"
gloo-utils = "0.2.0"
include_dir = "0.7.4"
once_cell = "1.21.3"
rand = "0.9.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
stylist = { version = "0.13.0", features = ["yew_integration", "parser"] }
web-sys = { version = "0.3.83", features = ["ScrollToOptions", "Window"] }
yaml-front-matter = "0.1.0"
yew = { version = "0.21.0", features = ["csr"] }
yew-router = "0.18.0"
[profile.release]
# less code to include into binary
panic = 'abort'
# optimization over all codebase ( better optimization, slower build )
codegen-units = 1
# optimization for size ( more aggressive )
opt-level = 'z'
# link time optimization using using whole-program analysis
lto = true