2个版本 (1个稳定版)

1.0.1 2020年1月18日

#906 in HTTP服务器

Download history • Rust 包仓库 13/week @ 2023-12-11 • Rust 包仓库 14/week @ 2023-12-18 • Rust 包仓库 7/week @ 2023-12-25 • Rust 包仓库 2/week @ 2024-01-01 • Rust 包仓库 14/week @ 2024-01-08 • Rust 包仓库 3/week @ 2024-01-15 • Rust 包仓库 9/week @ 2024-01-22 • Rust 包仓库 13/week @ 2024-02-05 • Rust 包仓库 31/week @ 2024-02-12 • Rust 包仓库 13/week @ 2024-02-19 • Rust 包仓库 54/week @ 2024-02-26 • Rust 包仓库 33/week @ 2024-03-04 • Rust 包仓库 24/week @ 2024-03-11 • Rust 包仓库 23/week @ 2024-03-18 • Rust 包仓库 43/week @ 2024-03-25 • Rust 包仓库

每月 123 次下载
10 个crates中(8个直接) 使用

MIT/Apache

755KB
18K SLoC

Actix http 构建状态 codecov 加入gitter聊天 https://gitter.im/actix/actix

Actix http

文档与社区资源

示例

// 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();
}

许可证

此项目受以下任一许可证的许可:

任选其一。

行为准则

actix-http crate的贡献受贡献者誓言的约束,actix-http的维护者@fafhrd91承诺将介入以维护该行为准则。

依赖项

~21–29MB
~628K SLoC