Tim
Tim
@Urhengulas says: > On a sidenode: For questions like this the github discussions ([link](https://docs.github.com/en/free-pro-team@latest/github/building-a-strong-community/about-team-discussions)) might be a good solution :)
If we do this, does that mean `Client::connect` will never return `connection_refused`? Does it mean we'll need to set timeouts on all requests, since it could loop endlessly trying to...
Tokio 0.2 now has support for spawning `!Send` futures. https://github.com/tokio-rs/tokio/releases/tag/tokio-0.2.2
Tokio's channel is truly bounded, whereas futures-rs channels have a slot reserved for each clone of the sender.
Technically non-'static requests are supported today, but it's difficult to reference them in a trait item if the trait isn't parameterized by the lifetime. More generally, it may be worth...
https://github.blog/2019-08-08-github-actions-now-supports-ci-cd/
https://github.com/tokio-rs/tracing Replacing my own crates with better solutions maintained by smarter people than me is one of my favorite things!
It looks like [Failure](https://github.com/withoutboats/failure) is [positioning itself](https://www.reddit.com/r/rust/comments/7b88qp/failure_a_new_error_management_story/dpg5eyz/?st=j9otb8u1&sh=6314a4dc) as the successor to libstd's error trait.
From @jonhoo: > an interesting observation: we get ~10-20% higher throughput by removing all the debug logging calls in tarpc things like trace! compiles to a memory load and a...