mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Use cheap-to-clone types more * Use IArray in NodeSeq & add IntoPropValue for &AttrValue * Add function get_mut() on VChild to make things easier * Use AttrValue in timer_functional example * fix VList PartialEq * extract implicit-clone as workspace dep and bump to 0.5.1 * docs: advocate using IArray and IMap instead of Vec and HashMap * docs: AI translation for lifecycles.mdx in Japanese and simplified Chinese --------- Co-authored-by: Mattuwu <syan4@ualberta.ca>
34 lines
587 B
TOML
34 lines
587 B
TOML
[workspace]
|
|
members = [
|
|
"packages/*",
|
|
"tools/*",
|
|
"examples/*",
|
|
]
|
|
default-members = [
|
|
"packages/*",
|
|
]
|
|
resolver = "3"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
|
|
[profile.bench]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
|
|
[workspace.lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
"cfg(documenting)",
|
|
"cfg(verbose_tests)",
|
|
"cfg(yew_lints)",
|
|
"cfg(nightly_yew)",
|
|
"cfg(wasm_bindgen_unstable_test_coverage)"
|
|
]}
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.47.1" }
|
|
implicit-clone = { version = "0.5.1" }
|