Eugene Lomov

Results 17 comments of Eugene Lomov

Looks like Borsh is implemented for both `[T; N]` and `&[T]`, so it is possible, that `#[derive(BorshSerialize)]` will be sufficient. I'll try it and, if it will be successful, send...

UPD: `get_cached_power_by_index()` also overflows with similar error.

UPD2: `exponentiate_f32()` and `exponentiate_f64()` crash with `thread 'main' panicked at 'attempt to negate with overflow', //json-rust/src/number.rs:283:21`

I've looked at the code and found the following: All `unsafe` in src/lib.rs is about `str::from_utf8_unchecked()` and self-implemented methods `.bump()` and `.slice_skip()`. Usage of the methods is safe: they bump/skip...

There is [cargo sort](https://github.com/DevinR528/cargo-sort) command, that parses TOMLs and sorts dependencies and other fields. Maybe use their code for parsing workspace manifest?

Maybe we can do it in a `clippy --fix` way: warn user, that the formatting can be broken and deny to modify `Cargo.toml` unless it is backed up in `git`?

I've started working on it, you can assign me to #1285.

No, it will be an addition for both NordVPN and Mullvad drivers. I think, that it will be better to report `connecting` as a separate status (now everything except `connected`...

I've started working on this feature.

I think, I can try to implement fuzzcheck support into auto-fuzz. > The fuzz targets of fuzzcheck need to do a bit of setup to choose an appropriate Mutator and...