/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.dureuill.net
| | github.com
1.9 parsecs away

Travel
| | A small and fast async runtime for Rust. Contribute to smol-rs/smol development by creating an account on GitHub.
| | boats.gitlab.io
3.8 parsecs away

Travel
| | One of the big sources of difficulty on the async ecosystem is spawning tasks. Because there is no API in std for spawning tasks, library authors who want their library to spawn tasks have to depend on one of the multiple executors in the ecosystem to spawn a task, coupling the library to that executor in undesirable ways. Ideally, many of these library authors would not need to spawn tasks at all.
| | brokenco.de
3.2 parsecs away

Travel
| | a moderately technical blog
| | mark-story.com
15.2 parsecs away

Travel
| I'm working on an infrastructure application that provides a GRPC API to its clients. This will be a high throughput system, so we are building it in Rust using tonic and tokio to build the gRPC API. I wanted to implement request authentication for this system so that the service was resilient to Server-Side-Request-Forgery, and unauthenticated requests.