Guillaume Thiolliere
Guillaume Thiolliere
I have a binary crate with a workspace section with one member pointing to a library crate [like here](https://github.com/thiolliere/cargo_check_issue) `cargo rustc -- -Zno-trans` works fine `cargo check` prints `error: no...
doc is: https://github.com/rust-num/num-traits/blob/d394467906aab26065b5e518f4449aa982c6dcb1/src/sign.rs#L13-L14 but implementation is https://github.com/rust-num/num-traits/blob/d394467906aab26065b5e518f4449aa982c6dcb1/src/sign.rs#L48-L50 the implementation doesn't return MIN but actually panic with overflow, see: ```rust fn abs(t: &i32) -> i32 { if t.is_negative() { -*t }...
the beginning of the sound is not correct. full example can be found there: https://github.com/thiolliere/rodio_debug I'm on linux ``` extern crate rodio; use std::thread::sleep; use std::time::Duration; use std::io; use std::io::BufReader;...
Out of the box rust-portaudio used OSS API. It result in not being able to use multiple sound sources. (launching vlc and then my_program -> my_program failed because device busy,...
As written in https://www.mapeditor.org/2022/06/25/tiled-1-9-released.html > Unified Custom Types > > Object Types have been merged into the Property Types, now simply called “Custom Types”. This means custom classes can now...
TLDR: Maybe the doc could notify that pairing the usb receiver on a windows computer is needed for the receiver to be detected? I have Mouse MX master 3 for...
Similarly to what has been done for storages in the main trie, we should introduce the habits of prefixing the child storage key with the hash of the module name...
In the app there is the information:` "Hardware seed protection: false"` but no other information is given. I think some help should be shown explaining what are the risks and...