Results 54 issues of Guillaume E

Looking at [this page](https://google.github.io/comprehensive-rust/ownership/lifetimes-function-calls.html), it seems that syntax highlighting (and line spacing) is inconsistent between code blocks marked as `editable` vs. `ignore`. I find the colors somewhat better for `ignore`,...

This page mentions: > At the time of writing, the latest stable Rust release has these version numbers: > > ``` > % rustc --version > rustc 1.61.0 (fe5b13d68 2022-05-18)...

In https://github.com/google/comprehensive-rust/pull/329, I'm adding some text which makes a line exceed the 80-column standard formatting of markdown files. I'm waiting for the workflows to be approved to see if they...

This exercise is about making the unit tests pass, so we can remove the `main()` function, which is empty and unused. Otherwise the Rust playground complains about dead code.

One caveat: the exercise required changing `len(self)` to `len(&self)` and I'm not sure how best to encode that with the anchors.

The current coverage as reported by `llvm-cov` is 87% ([Codecov](https://app.codecov.io/gh/gendx/lzma-rs)). Reaching 100% coverage is a blocker to stabilizing the crate.

help wanted
testing

Currently, the wall time is reported with detailed statistics both in the TUI (mean + stddev + median + min + max), and in the JSON output (list of all...

It seems that the [`subset()`](https://docs.rs/allsorts/latest/allsorts/subset/fn.subset.html) function is hard-coded to output the result in OpenType format. I was wondering if you would consider adding a way to serialize into WOFF2 format...

I wanted to try piston_window on a computer that only supports OpenGL 2.1. I adapted the hello world code to use OpenGL 2.1, but I get the following error. thread...

This PR adds test vectors for ML-DSA, for two versions: the [round 3 proposal](https://csrc.nist.gov/Projects/post-quantum-cryptography/post-quantum-cryptography-standardization/round-3-submissions) (CRYSTALS-DILITHIUM) and the current [draft](https://csrc.nist.gov/pubs/fips/204/ipd) of the FIPS 204 standard. These tests aim to cover the...