John-John Tedro

Results 370 comments of John-John Tedro

For some reason they're not included. Thanks for the report!

Same here, holding back from upgrading since the new URI container does not seem to: * Allow for modifying the path of the URI. * Have a [to_file_path](https://docs.rs/url/latest/url/struct.Url.html#method.to_file_path) replacement.

It's an interesting suggestion. I have been thinking about something along the lines of supporting copy types. There are broadly two approaches that are possible: * We only support `Copy`...

Cheers. FYI, since garde has serde impls and (this implementation doesn't look specialized) you likely could use the available [serde integration](https://docs.rs/musli/latest/musli/serde/). I am not psyched about adding impls here so...

It's doable, but we'd have to change the internal architecture. Rather than bounding on the number of waiters though it would at least to me make more sense to bound...

My expectation was that if the internals were changed to support this, then you could have functions which do yield by a pending token limit that are fallible, and the...

It cannot accept slices directly, since we wouldn't know what yo do with them. You'd have to wrap the type passed in into something deriving Any. Like a newtype. That...

I was just depending on `compiler_builtins` from git in some project with `features = ["mem"]`. Even if I wasn't using `musl` I believe it's being checked out defensively by cargo...

Oh, good question. If memory serves there used to be a missing symbol during linking. That no longer seems to be the case. So I've removed the dependency now. Thanks...

@michael-p I believe the idea is that it works without depending on compiler-builtins at all, through the Rust compiler. So just try and remove the dependency and see if it...