23

warp v0.2

 4 years ago
source link: https://seanmonstar.com/post/190293882502/warp-v02
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Warp is a Rust web server framework focusing on composability and strongly-typed APIs.

Today sees the release of v0.2 !

Async and Await

The most exciting part of this release is the upgrade to std::future , so you can now use async / await for cleaner flow control. Due to how warp encourages composition of filters, this is most noticeable at the “ends” of a filter chain, where an application is doing its “business logic”, converting input into actions and replies. And that’s where most of the app code is!

Services

In the original release of warp , I wrote:

We’d like for warp to be able to make use of all the great tower middleware that already exists.

As part of this release, that is now possible! Any Filter which returns a Reply can now be converted into a Service using warp::service(filter) . This means you can wrap your filters with any of the growing middlewares, as described in the hyper v0.13 announcement .

Thanks

This was a lot of work by over 60 new contributors , including the massive std::future refactor by new collaborator @jxs .

Be sure to check the changelog for all the goodies!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK