8 个不稳定版本 (3 个破坏性更新)

使用旧的 Rust 2015

0.3.0 2016 年 10 月 9 日
0.2.1 2016 年 6 月 16 日
0.2.0 2016 年 5 月 13 日
0.1.3 2016 年 4 月 5 日
0.0.1 2015 年 12 月 13 日

#9 in #micro-framework

BSD-3-Clause

225KB
2K SLoC

#Pencil

Build Status Crates.io Version Crates.io LICENSE

受 Flask 启发的 Rust 微型框架。

extern crate pencil;

use pencil::{Pencil, Request, Response, PencilResult};

fn hello(_: &mut Request) -> PencilResult {
    Ok(Response::from("Hello World!"))
}

fn main() {
    let mut app = Pencil::new("/web/hello");
    app.get("/", "hello", hello);
    app.run("127.0.0.1:5000");
}

简要介绍: https://fengsp.github.io/blog/2016/3/introducing-pencil/

如果您觉得有任何不妥,欢迎反馈或提交拉取请求。


lib.rs:

Pencil 是一个受 Flask 启发的 Rust 微型框架。

安装

这个包名为 pencil,您可以通过 cargo 依赖它

[dependencies]
pencil = "*"

快速入门

Pencil 的简要介绍。

最小化应用程序

一个最小的 Pencil 应用程序看起来像这样

extern crate pencil;

use pencil::Pencil;
use pencil::{Request, PencilResult, Response};
use pencil::method::Get;


fn hello(_: &mut Request) -> PencilResult {
    Ok(Response::from("Hello World!"))
}


fn main() {
    let mut app = Pencil::new("/web/hello");
    app.route("/", &[Get], "hello", hello);
    app.run("127.0.0.1:5000");
}

依赖

~12MB
~248K SLoC