mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* yew::platform? * Stream Response. * Migrate example * Remove old implementation. * Remove extra implementation. * Prefer String instead of Cow. * Fix MSRV. * Fix trybuild. * Optimise Memory Allocation. * More optimisation. * BufWriter. * Fix tests. * Optimise BufWriter. * Remove more allocations. * Allow setting of buffer capacity. * Fix capacity size. * Fix capacity size. * Remove unneeded const notation. * Fix macro tests. * Slightly optimises BufWriter committing logic. * Optimise Implementation. * Move BufWriter to a separate file. * Additional Implementation Note. * Adjust API so it matches `std::channel::mpsc::channel`. * Fix feature soundness. * Make a compatibility layer on channels. * Fix clippy. * Fix feature soundness. * Fix CI. * Inlining. * Add documentation. * Punctuation. * Switch to tokio channel. * Remvoe pin-project. * Fix feature soundness. * Typo. * Move io to platform. * Tokio does not compile. * Fix workflow. * Restore wrongly removed docs. * Does tokio work? * Switch back to tokio. * Remove pin-project. * Use cargo resolver 2. * Add panic notice. * Update documentation. * Properties does not have to be send. * Fix capacity checking as pointed in the review. * Implementation order. * Update note.
17 lines
369 B
TOML
17 lines
369 B
TOML
[tasks.test]
|
|
clear = true
|
|
toolchain = "1.60.0"
|
|
command = "cargo"
|
|
# test target can be optionally specified like `cargo make test html_macro`,
|
|
args = ["test", "${@}"]
|
|
|
|
[tasks.test-lint]
|
|
clear = true
|
|
toolchain = "nightly"
|
|
command = "cargo"
|
|
args = ["test", "test_html_lints", "--features", "lints"]
|
|
|
|
[tasks.test-overwrite]
|
|
extend = "test"
|
|
env = { TRYBUILD = "overwrite" }
|