Crates.io | actori-web |
lib.rs | actori-web |
version | 2.0.0 |
source | src |
created_at | 2020-01-20 01:36:42.5607 |
updated_at | 2020-01-20 01:36:42.5607 |
description | Actori web is a simple, pragmatic and extremely fast web framework for Rust. |
homepage | https://actori.t42x.net |
repository | https://github.com/actori/actori-web.git |
max_upload_size | |
id | 200316 |
size | 620,943 |
Actori web is a small, pragmatic, and extremely fast rust web framework
Actori web is a simple, pragmatic and extremely fast web framework for Rust.
Dependencies:
[dependencies]
actori-web = "2"
actori-rt = "1"
Code:
use actori_web::{get, web, App, HttpServer, Responder};
#[get("/{id}/{name}/index.html")]
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", info.1, info.0)
}
#[actori_rt::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| App::new().service(index))
.bind("127.0.0.1:8080")?
.run()
.await
}
You may consider checking out this directory for more examples.
This project is licensed under either of
at your option.
Contribution to the actori-web crate is organized under the terms of the Contributor Covenant, the maintainer of actori-web, @fafhrd91, promises to intervene to uphold that code of conduct.