Valentin

Results 76 issues of Valentin

The cargo book writes about the Manifest options `include` and `exclude` [here](https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields) and about publishing [here](https://doc.rust-lang.org/cargo/reference/publishing.html). I find it confusing that the book does not explain which files you should...

A-documenting-cargo-itself
C-feature-request
S-triage

There are several ways you can do debouncing. [This](https://docs.qmk.fm/feature_debounce_type) page outlines some of them. The way Kaleidoscope currently does debouncing is called "defer" in the link. (I determined this by...

enhancement

An f32 (32 bit floating point value) can represent the number `2147483904` exactly. Ryu formats this number incorrectly. Ryu formats the number as the string `2.147484E9`. Ryu should format the...

`HashTable::with_capacity` docs say: > The hash table will be able to hold at least `capacity` elements without reallocating. The following test shows that this statement is incorrect: ```rust #[test] fn...

This is like ParamsFromIter but with named parameters. This is useful for the same reasons as ParamsFromIter. Sometimes you cannot use the macro and the Params implementations for arrays and...

In glutin-winit the default [ApiPreference](https://github.com/rust-windowing/glutin/blob/2c09d897760205b961264de00d0d401ccfb51dd9/glutin-winit/src/lib.rs#L221) is FallbackEgl. This choice should be justified with a comment. Why is not PreferEgl so that by default we pick EGL over GLX and WGL?

documentation