Anthony Ramine

Results 269 comments of Anthony Ramine

I don't think this is useful to keep this issue open. We know that splitting the script crate is something we can consider, but this will be done so far...

There are various Unicode-related bugs in the project that are getting fixed: https://github.com/matrix-org/matrix-react-sdk/pull/177 https://github.com/vector-im/vector-web/issues/990 https://github.com/vector-im/vector-web/issues/976 The last one seems to be the culprit here, given it happens when loading the...

We have no immediate plan to support lone surrogates any time soon. Meanwhile, that Servo crashes on that on Slack means there is a bug on Slack somewhere.

`hyper_util::server::conn::auto::Builder` itself could also be equipped with new methods `serve_buffered_connection` and `serve_buffered_connection_with_upgrades` to accomodate for users doing their own kind of prebuffering (we do such things at work so we...

Of course, another solution would be to just move `hyper_util::server::conn::auto` to `hyper::server::conn::auto`.

> At least from my feelings, I don't love including a method like `serve_buffered_connection`. It feels like exposing an internal detail that wouldn't otherwise be something we would expose. Tbh...

@seanmonstar Can we make some progress about this?

I'll make a `hyper_util` PR with a new module `hyper_util::server::conn::auto::upgrade`: ```rust pub fn downcast

There is still an issue with that though, the return type should be `Result` but hyper_util cannot construct a `Parts` as it is `non_exhaustive`.