Jacob Rothstein

Results 44 issues of Jacob Rothstein

I'm unsure if I'm holding the new interface wrong somehow or if I've encountered a bug. Given [this diff](https://github.com/trillium-rs/trillium/pull/595/files) that attempts to track the event-listener interface changes, I'm encountering a...

Currently, tokio-rustls and futures-rustls share very similar code duplicated across two different repositories. Every PR that is opened to one of them must be manually duplicated in other in order...

I was excited to see the addition of `StaticExecutor` and `StaticLocalExecutor` optimizations, and started [async-global-executor#17](https://github.com/async-rs/async-global-executor/pull/17) with the intent to adopt both of them. However, it is unclear from the examples...

The [`StaticExecutor`](https://github.com/smol-rs/async-executor/blob/master/src/static_executors.rs#L112-L128) type introduced in [[email protected]](https://github.com/smol-rs/async-executor/releases/tag/v1.12.0) seems well suited for the async-global-executor use case, so this PR adopts that optimization. My initial intent was also to adopt [`StaticLocalExecutor`](https://github.com/smol-rs/async-executor/blob/master/src/static_executors.rs#L297-L309) but I'm...