Linus Färnstrand

Results 72 issues of Linus Färnstrand

Here I make the minimal amount of changes needed to make this project build in Linux (some of it borrowed from #15. Then I add a container definition file that...

Currently the test that sends a `[u8; 4096]` is gated to run only when not under loom. This causes invalid memory access under loom and I have no idea why....

bug

Currently we have one benchmark to measure the time it takes to create a channel and another one to measure how long it takes to create a channel plus send...

Even if correctness and API niceness is the most important, speed is what sells :) Write benchmarks that performs some common channel operations and compare the times between `oneshot` and...

When async support was introduced and the `Thread` instance was replaced with a `ReceiverWaker`, heap usage went from 8 to 24 bytes for this object. This is not a lot,...

Add what's needed to easily fuzz this library.

This is going to be a very vague issue report. Sorry for that. But we have seen this for quite some time now, and I figured better a vague report...

The documentation states that: > Then run `build` to build the project and `package` to package it into a zip file. > `package.zip` will be present in your project directory....

Hi. I have been experimenting with the same thing you do here. However, I want to avoid having the key be a file on disk if I can. I really...

The fact that the format of the list of allowed verbs is like: ```ts export const SET = new Set([ 'abandon', ... 'write', ]); ``` Makes it unnecessarily hard to...