Nemo157
Nemo157
Actually, so that I can continue testing stuff I've moved my seed onto IPv4 now, if there are fixes to be tested I can switch it back as needed.
Yes, it could be put into a `static WAKER: RefCell;` or similar construct.
The problem with the GET request is `transfer-encoding: chunked`, as far as I recall this should not be sent during a GET request, as there is no body to be...
This appears to be an `isahc` integration issue, because of [how it detects](https://github.com/sagebind/isahc/blob/df1c70ffe8b9b8c25b112d5bbbf4c98032e35f51/src/body.rs#L76) whether a request has a body it will always assume that [an async-read based request](https://github.com/sagebind/isahc/blob/df1c70ffe8b9b8c25b112d5bbbf4c98032e35f51/src/body.rs#L96) without specified...
I can highly recommend [`route-recognizer`](https://crates.io/crates/route-recognizer) or a similar algorithm, e.g. to draw an almost identical example to what @yoshuawuyts just noted http://git.nemo157.com/grarr/blob/master/src/handler/blob.rs is being routed via the matcher `/*repo/blob/:ref/*path`. Having...
I think they changed github username (), which hits a edgecase that docs.rs identifies crates.io accounts by username rather than userid and doesn't update them until a new version of...
Also, there's an upstream bug about this linked in https://github.com/rust-lang/crates-build-env/pull/121
> or should it just change the `syntect` plugin to split off of a comma when trying to find a matching syntax? We did this for docs.rs' highlighting plugin (using...
Hmm, reminds me I need to find out _why_ github has changed the default to not running CI, afaik it's supposed to be secure against malicious PRs :thinking: I'll hopefully...
I think this is the relevant issue, I needed support for having a map of a string id to a nested-config object in my config, and managed to add it...