#http #web #performance #high #potato

macro potato-macro

A very simple and high performance http library

19 releases

0.1.23 Jan 23, 2025
0.1.22 Jan 22, 2025
0.1.6 Dec 29, 2024

#1555 in Procedural macros

Download history 282/week @ 2024-12-16 522/week @ 2024-12-23 699/week @ 2024-12-30 269/week @ 2025-01-06 216/week @ 2025-01-13 423/week @ 2025-01-20 17/week @ 2025-01-27 27/week @ 2025-02-03 4/week @ 2025-02-10

539 downloads per month
Used in potato

MIT license

15KB
290 lines

potato

version status

高性能、简洁语法的HTTP框架。

用法

加入库的引用:

cargo add potato
cargo add tokio --features full

Hello World

use potato::*;

// http://127.0.0.1:8080/hello
#[http_get("/hello")]
async fn hello() -> HttpResponse {
    HttpResponse::html("hello world")
}

#[tokio::main]
async fn main() {
    let mut server = HttpServer::new("0.0.0.0:8080");
    _ = server.serve_http().await;
}

更多示例请参考:https://github.com/fawdlstty/potato/tree/main/examples

Dependencies

~1–1.9MB
~38K SLoC