Rushmore Mushambi

Results 54 comments of Rushmore Mushambi

We can prevent the user from not making such a mistake by not exposing the enum or checking for such mistakes when encoding the packet. As for creating it when...

By doing the construction through methods. Say `Value::issue`, `Value::issue_wild` etc that do the construction on the user's behalf.

That boils down to your API design choice but [here is one way to do it](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=303317b289454a8b70e41e4fc64c2c5d).

https://github.com/algesten/hreq/pull/36 eliminated `publicsuffix`.

I've always wanted to add `no_std` support. It's just that I haven't had a strong motivation to do it so far as all the projects I'm working on run in...

I agree. `git` is a runtime dependency and as such, `nox` should be wrapped to add it in its path.

Thanks for reporting this. I will look into it when I get some time. > this problem also hard to solve because we can not serialize json multiple time in...

Just ran into this while trying to package [TiKV v6.2.0](https://github.com/tikv/tikv/blob/v6.2.0/Cargo.lock). I tried both `release-0.11.0` and `unstable`.

@flosse Can you compile the default hello world program that comes with `cargo new` for binaries?

I noticed that same issue with `rayon-core` v1.4.0 earlier when trying to compile [one of my crates](https://github.com/rethinkdb-rs/reql) for the `musl` target but it went away after `cargo update`. Now it...