yew 0.23.0

A framework for creating reliable and efficient web applications
Documentation
[tasks.native-test]
command = "cargo"
args = ["test", "--features", "csr,ssr,hydration,test"]

[tasks.wasm-test]
command = "wasm-pack"
args = [
    "test",
    "--firefox",
    "--headless",
    "--",
    "--features",
    "csr,hydration,ssr,test",
]

[tasks.ssr-test]
command = "cargo"
args = ["test", "ssr_tests", "--features", "ssr"]

[tasks.test]
args = ["test", "--all-targets", "--all-features"]
dependencies = ["native-test", "wasm-test"]

[tasks.clippy-feature-soundness]
command = "cargo"
args = [
    "hack", "clippy",
    "-p", "yew", "-p", "yew-agent", "-p", "yew-router",
    "--feature-powerset", "--no-dev-deps",
    "--keep-going",
    "--", "-D", "warnings",
]