Markus Westerlind
Markus Westerlind
Given the size of the functions I doubt they are getting inlined and duplicated that way. Have you checked that you only have one version of h2/hyper/etc? I think I...
Just printing the html file where the dead link was found would be nice. That would narrow the search down a lot and is useful for non-rustdoc .html as well.
Yeah, as long as I have the link it is easy to find where it comes from (though having the line directly ould of course be better)
Also seeing this, I think this is a bug in hyper-rustls https://github.com/ctz/hyper-rustls/issues/143
As a workaround you can manually enable `http2` in hyper `hyper = { features = ["http2"] }`
Right, forgot that detail. It only seems to happen when running it as the main process in docker (PID 1) which has some special behaviour around signals. To reproduce ###...
Ah, wasn't aware that Bytes would upgrade a `Vec` based allocation into an `Arc` owned one on `clone`. In that case there is less gain than I would expect. Still,...
Feel free to close this if it isn't wanted. Treating the cookie as raw bytes definitely leaves some ambiguity as to what the right thing to do is.
Chain of consequences here are. Need to dispatch futures from an interpreter -> I need to hold a `Reactor` in the interpreter - The test library I use for some...
Ah, didn't get that `Remote` holds arbitrary trait objects. I suppose that if it were to only _hold_ arbitrary trait objects but not execute any code in them then it...