内容简介:Warp is a Rust web server framework focusing on composability and strongly-typed APIs.Today sees the release ofThe most exciting part of this release is the upgrade to
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!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Python灰帽子
[美] Justin Seitz / 丁赟卿 译、崔孝晨 审校 / 电子工业出版社 / 2011-3 / 39.00元
《Python灰帽子》是由知名安全机构Immunity Inc的资深黑帽Justin Seitz主笔撰写的一本关于编程语言Python如何被广泛应用于黑客与逆向工程领域的书籍。老牌黑客,同时也是Immunity Inc的创始人兼首席技术执行官(CTO)Dave Aitel为这本书担任了技术编辑一职。书中绝大部分篇幅着眼于黑客技术领域中的两大经久不衰的话题:逆向工程与漏洞挖掘,并向读者呈现了几乎每个......一起来看看 《Python灰帽子》 这本书的介绍吧!