jjl
jjl
i find `cargo-msrv` to be a pretty easy way to determine an MSRV
I see your point with the auto-promotion, but I think a small map type may be beneficial. You know your benchmark results better than me, of course.
Hi The garbage collector isn't one of the standard implementations because i'm being an awkward bugger^W^W^W^Wpushing boundaries again... So my processes look something like this: ```c++ class heap { void...
Sorry, I didn't explain myself very well. For purposes of this, I'm writing an erlang implementation (It isn't quite, but close enough). An erlang VM typically has: - an OS...
+1 from me here. I want precisely the described behaviour of embedding the README.md (in html form) at the beginning of the marginalia output.
I've got a WIP PR #99 where i've started to implement this. At the minute, most things are basically commented out with `cfg`, but I've started some of the basic...
The last commit sketches a possible structure out. I've created a new 'WebExecutor' and I've replaced the innards of Task with a PhantomData on wasm, and removed everything but the...
Hiya, So timers are pretty easy, they can just be the equivalent of `window.setTimeout`, task spawning is... more complicated... 1. I discovered the wasm environment is not as single threaded...
Oh, and it's [web-sys](https://docs.rs/web-sys/0.3.39/web_sys/struct.Window.html#method.set_timeout_with_callback) that has all the relevant browser apis, but the moment you have to actually pass data across the boundary it gets a bit tedious.
Oh, one more thing I should mention, I have been taking inspiration (although not too much of it) from [wasm-bindgen-futures](https://crates.io/crates/wasm-bindgen-futures).