Asger Hautop Drewsen

Results 136 comments of Asger Hautop Drewsen

> It sounds like you have a > > ``` > [build] > target = "x86_64-unknown-linux-musl" > ``` > > Set in one of the locations you can put a...

I think I found the cause of the problem. If I install `cargo-fuzz` with `cargo install cargo-fuzz` everything works. However, I had installed `cargo-fuzz` with `cargo binstall cargo-fuzz` which installs...

If you don't want to change the default target to the host target, then I think either of these should be done: - Provide a ` cargo-fuzz-*-x86_64-unknown-linux-gnu.tar.gz` download for each...

This matches the current `setOnInsert` function which is also overloaded.

> I think this is currently a nightly-only flag? Nope, this was stabilized in Cargo 1.84.0: https://blog.rust-lang.org/2025/01/09/Rust-1.84.0.html#cargo-considers-rust-versions-for-dependency-version-selection

It seems like `serde` is calling `deserialize_string` for `str`, but `deserialize_any` for `inner_str`. Is this a bug in `serde`?

Yeah, it seems to be unsupported in `serde`: https://github.com/serde-rs/serde/issues/1881 That's unfortunate :/

I think it would be weird to have a `NonZeroInt` type in `num-integer` which can't implement `Integer`, due to the `Integer: Num: Zero` requirement.

Doesn't make sense for `BigInt`. You probably want it on `num_traits::PrimInt`.