-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 899 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
[workspace]
members = [
"material-styles-yew",
"material-yewi",
"documentation",
"documentation-macros",
"documentation-utils",
]
resolver = "2"
[patch.crates-io.yew]
git = "https://github.com/worldsender/yew.git"
rev = "e18db7380942a702d2004844bd650ef1d3162518"
[patch.crates-io.yew-router]
git = "https://github.com/worldsender/yew.git"
rev = "e18db7380942a702d2004844bd650ef1d3162518"
[patch.crates-io.yew-feather]
git = "https://github.com/worldsender/yew-feather.git"
rev = "e8b29d3dcda419794bb557c06dd00a58b4f48ada"
[patch.crates-io.stylist]
git = "https://github.com/worldsender/stylist.git"
rev = "7c5c9d0681ea9da5409fea00ffc52c9cab7914e5"
[profile.release]
# less code to include into binary
panic = 'abort'
# optimization over all codebase ( better optimization, slower build )
codegen-units = 1
# link time optimization using using whole-program analysis
lto = true