-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 867 Bytes
/
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
[package]
name = "personal-site"
version = "0.1.0"
edition = "2021"
[dependencies]
comrak = "0.23.0"
getrandom = { version = "0.2.12", features = ["js"] }
gloo = "0.11.0"
gloo-utils = "0.2.0"
include_dir = "0.7.3"
once_cell = "1.17.1"
rand = "0.8.5"
serde = { version = "1.0.197", features = ["derive"] }
serde_yaml = "0.9.32"
stylist = { version = "0.13.0", features = ["yew_integration", "parser"] }
web-sys = { version = "0.3.61", 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