Brent Lewis
Brent Lewis
test_multiplication_with_scalar has been dependent on the prior state of self.ureg.autoconvert_offset_to_baseunit making the `(10, "deC")` case pass/fail intermittently. Set `self.ureg.autoconvert_offset_to_baseunit = False` at the start of the test. Note that this...
Currently dividing by the constant QuadTwoPi. Precompute its reciprocal and multiply for performance gain.
I'm working on compiling WebRTC on the Xtensa (ESP32s3) platform. - Tokio was recently updated to support more platforms, but certain features are not available (and may never be). The...
While building the [p384](https://crates.io/crates/p384) crate on an experimental platform I encountered a consistent ICE. Initially, the problem seemed to be due to the experimental platform. However, identifying the minimal reproduction...
Recent commits brokes some signing and verifying code that I have: ```rust let private_key: RsaPrivateKey = ... let signing_key = SigningKey::::new(private_key); ``` Error ``` error[E0599]: the function or associated item...
Building with master causes the below error depending on usage. ``` error[E0277]: `::FieldElement` doesn't implement `Debug` --> /home/coder0xff/Dropbox/Documents/Projects/Community/src/community/elliptic-curves/primeorder/src/affine.rs:290:30 | 290 | impl PrimeCurveAffine for AffinePoint | ^^^^^^^^^^^^^^ `::FieldElement` cannot be...
The graph ``` digraph G { A -> B; } ``` produces a ParseException reading "The vertex with id A was used before it was defined."
A graph such as ``` digraph G { subgraph cluster_0 { subgraph cluster_1 { A; B; A -> B; } } } ``` Does not preserve the subgraph hierarchy, instead...