1 个不稳定版本

使用旧的 Rust 2015

0.11.0 2018年5月14日

#5#finchers


2 个crate 使用

MIT/Apache

53KB
1.5K SLoC

finchers

Crates.io Crates.io (Downloads) Docs.rs Master doc Rustc Version dependency status Gitter

finchers 是一个用于构建异步 HTTP 服务的组合库。

其概念和设计深受 finch 的启发。

功能

  • 由 futures 和 Tokio 提供的异步处理能力
  • 通过 组合 基本组件来构建 HTTP 服务
  • 类型安全的路由,无需(不稳定的)过程宏

用法

将此项目添加到您的项目中的 Cargo.toml

[dependencies]
finchers = "0.14.0-dev"

示例

use finchers::{
    prelude::*,
    endpoint::syntax::path,
};

fn main() -> izanami::Result<()> {
    let endpoint = path!(@get "/greeting/<String>")
        .map(|name: String| {
            format!("Hello, {}!\n", name)
        });

    izanami::Server::build()
        .start(endpoint.into_service())
}

资源

贡献特性

状态

Travis CI Codecov
Travis CI Codecov

许可证

本项目根据您的选择,受以下许可证之一约束:

依赖关系

~9MB
~155K SLoC