Linus Färnstrand

Results 72 issues of Linus Färnstrand
trafficstars

If I create a new empty crate, add loom as a dependency and these two tests in `src/lib.rs`: ```rust #[test] fn test1() { loom::model(|| ()); } #[test] fn test2() {...

```rust #[test] fn send_on_closed_channel() { loom::model(|| { let (sender, receiver) = loom::sync::mpsc::channel(); std::mem::drop(receiver); sender.send(()).unwrap_err(); }) } ``` This simple test above fails with: ``` thread 'send_on_closed_channel' panicked at 'assertion failed:...

Hi, From what I can see, this repository does neither have any signed commits, nor tags. As such, it's not possible to get any type of guarantee that the code...

Hi! Thanks for this wrapper around gpgme. I just started using it and try to get used to it. I need to create a program that automatically configures YubiKeys. This...

Hi! I found myself implementing a very similar macro a few times. I called it `assert_pat`, but it did virtually the same thing. Today I thought I should create an...

Work in progress! Coming up with the new `PostQuantumSecure` proto definition for the next iteration of the post quantum secure tunnels. The changes/improvements from the last/current iteration include: * Change...

I wrote this with inspiration from both [gpio_interrupt.rs](https://github.com/esp-rs/esp-hal/blob/36e13b0d7cc0548d4e4d2b3d29a6010dc7bc5e98/esp32c3-hal/examples/gpio_interrupt.rs) and the [rotary-encoder-embedded readme example](https://github.com/ostenning/rotary-encoder-embedded/blob/39eb551b91373000b36b6d435d8fa89b2d2877fc/README.md#interrupt-driven-example). I figured it could be nice with a publicly available example. Maybe there is a better way...

As far as I can tell, this repository does not have any changelog. This makes it quite hard to figure out what changed between versions.

Thanks a lot for your tutorial! `gfx-hal 0.7` has been released and I would like to learn the newest API. I could not find any tutorial dealing with the 0.7...

Currently it's not possible to build and use `colorspace 0.1.0` (the only version on crates.io) on any recent Rust version. This was fixed in commit 7bb5f1f, but no release has...