Closed
Description
Transitioning from futures
0.1 to std::future::Future
would greatly improve the user experience in the near future, especially with async/await stabilizing in Rust 1.39 and std::future::Future
compatible versions of tokio
, hyper
, and tower
on the horizon. It seems that jsonrpc-core
is currently the only library in my personal JSON-RPC projects that still relies exclusively on futures
0.1, and it is blocking me from switching over to the new trait completely. I understand if this issue will sit on the backburner for the time being until at least tokio
0.2.0 is released, though.