daxpedda
daxpedda
> Vue's solution to this problem is to maintain an [ecosystem-ci](https://github.com/vuejs/ecosystem-ci) that routinely checks for breaking changes throughout their ecosystem. This sort of solution shortens feedback time and could even...
Note that the Std implementation has been overhauled in [Rust v1.62](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html#thinner-faster-mutexes-on-linux).
We could use this lint: https://rust-lang.github.io/rust-clippy/master/index.html#self_named_module_files
https://github.com/rust-lang/rust/pull/106418 is in it's FCP with a disposition to merge! Still have to figure out what to do about the MSRV then.
I would probably do it the other way around, add a crate feature that enables the new behavior but raises the MSRV. Alternatively we could use [`rustversion`](https://crates.io/crates/rustversion). In any case,...
We will see how the issues I linked above get resolved, but I don't personally have time to do it myself. I consider the linking issue blocking, the issue with...
I've tried using the [latest commit from your fork](https://github.com/06393993/lcov-reporter-action/tree/c2dc6744871841e7cc2fa528f983253ecee694ab) but it [errors out with](https://github.com/daxpedda/wasm-worker/actions/runs/10355394838/job/28663047100): ``` file:///home/runner/work/_actions/06393993/lcov-reporter-action/c2dc6744871841e7cc2fa528f983253ecee694ab/dist/main.js:3 var require$$0$1 = require('node:fs'); ^ ReferenceError: require is not defined in ES module scope,...
I'm not sure what exactly is possible to simulate on other backends in CI, but for Web you can use WebDriver to basically do everything. I've used [`fantoccini`](https://crates.io/crates/fantoccini) with great...
I don't think we want a `run_noreturn() -> !` as an extension API for Web if we already have `spawn`. Is this desirable somehow?
> The only issue is that I think `spawn` on web doesn't block at all? While the default API we want should block the caller until `run` finishes. Yes, that...