mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* modernize github workflows this mainly fixes some inconsistencies in style, outdated or wrong comments and action version - replace Legit-Labs/action-download-artifact with actions/download-artifact - fix Swatinem/rust-cache arguments - fix benchmark transformations - expand feature soundness lints - wording and capitalization in comments * fix no_run on crate level doc * fix some more small issues
23 lines
273 B
TOML
23 lines
273 B
TOML
[workspace]
|
|
members = [
|
|
"packages/*",
|
|
"tools/*",
|
|
"examples/*",
|
|
]
|
|
default-members = [
|
|
"packages/*",
|
|
]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
|
|
[profile.bench]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
|