2个版本 (1个稳定版)
1.0.1 | 2020年1月18日 |
---|
#906 in HTTP服务器
每月 123 次下载
在 10 个crates中(8个直接) 使用
755KB
18K SLoC
Actix http

Actix http
文档与社区资源
- 用户指南
- API文档
- 在gitter上聊天
- Cargo包: actix-http
- 最低支持的Rust版本:1.31或更高
示例
// see examples/framed_hello.rs for complete list of used crates.
extern crate requiem_http;
use requiem_http::{h1, Response, ServiceConfig};
fn main() {
Server::new().bind("framed_hello", "127.0.0.1:8080", || {
IntoFramed::new(|| h1::Codec::new(ServiceConfig::default())) // <- create h1 codec
.and_then(TakeItem::new().map_err(|_| ())) // <- read one request
.and_then(|(_req, _framed): (_, Framed<_, _>)| { // <- send response and close conn
SendResponse::send(_framed, Response::Ok().body("Hello world!"))
.map_err(|_| ())
.map(|_| ())
})
}).unwrap().run();
}
许可证
此项目受以下任一许可证的许可:
- Apache License,版本2.0,(LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT许可证(LICENSE-MIT 或 https://open-source.org.cn/licenses/MIT)
任选其一。
行为准则
actix-http crate的贡献受贡献者誓言的约束,actix-http的维护者@fafhrd91承诺将介入以维护该行为准则。
依赖项
~21–29MB
~628K SLoC