actori-web

Crates.ioactori-web
lib.rsactori-web
version2.0.0
sourcesrc
created_at2020-01-20 01:36:42.5607
updated_at2020-01-20 01:36:42.5607
descriptionActori web is a simple, pragmatic and extremely fast web framework for Rust.
homepagehttps://actori.t42x.net
repositoryhttps://github.com/actori/actori-web.git
max_upload_size
id200316
size620,943
Christian Haynes (06chaynes)

documentation

https://docs.rs/actori-web/

README

Actori web

Actori web is a small, pragmatic, and extremely fast rust web framework

Build Status codecov crates.io Join the chat at https://gitter.im/actori/actori Documentation Download Version License

Website | Chat | Examples


Actori web is a simple, pragmatic and extremely fast web framework for Rust.

Example

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
}

More examples

You may consider checking out this directory for more examples.

Benchmarks

License

This project is licensed under either of

at your option.

Code of Conduct

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.

Commit count: 3038

cargo fmt