Vinzent Steinberg

Results 84 comments of Vinzent Steinberg

@BurntSushi FWIW, the incorrect libc version in Rand was fixed. It's true that the Rand CI is not set up to test for the minimal versions, but I think pull...

I'm not sure how many users of `aho-corasick` will read this here. Maybe just go ahead and deprecate it? If there are a lot of objections, you can always revert...

Sure, just removing it in the next breaking release also works. I just thought that deprecating would be the most reliable way to get potential objections. FWIW, I cannot find...

Thanks, that makes a lot of sense! I think we can also update the docs about the recommended traits to implement. I'll need to have a closer look at the...

For now, you can just use a for loop: ```rust let mut var_a = Variance::new(); let mut var_b = Variance::new(); for v in 0..10 { var_a.add(v); var_b.add(v*2); } ``` Implementing...

Here is some [official advice](https://github.com/serde-rs/serde/issues/1220) for how this could be done: ```rust use serde::{de, Deserialize, Deserializer}; #[derive(Deserialize, Debug)] #[serde(remote = "Self")] struct Invariant { /// len() >= 3 s: String,...

I'm afraid this has to be closed, because now there are more contributors who would have to be asked.

By allowing direct access to the numerator and denominator it is possible to do the operations without simplification if required by some use case, so I don't see a reason...

I think this can be closed? The README has TLS examples.