1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-23 15:24:36 +01:00
Özgür Akkurt 4c646962a9
Merge pull request #312 from eddomuke/master
Add HttpMessage::readlines()
2018-06-14 00:40:29 +03:00
2018-06-14 00:19:48 +03:00
2018-06-13 01:33:28 +03:00
2018-05-17 12:20:20 -07:00
2018-05-24 21:09:20 -07:00
2017-11-27 16:41:37 -08:00
2018-06-05 10:08:42 -07:00
2018-05-10 09:13:26 -07:00
2018-06-05 09:00:21 -07:00
2018-06-14 00:19:48 +03:00
2018-01-21 15:29:02 -08:00
2017-12-17 10:08:44 -08:00
2018-03-24 09:35:52 +03:00
2018-04-16 09:30:59 -07:00
2018-06-10 10:24:34 -07:00
2018-06-10 10:31:19 -07:00
2018-06-01 10:27:23 -07:00

Actix web Build Status Build status codecov crates.io Join the chat at https://gitter.im/actix/actix

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

Documentation & community resources

Example

extern crate actix_web;
use actix_web::{http, server, App, Path, Responder};

fn index(info: Path<(u32, String)>) -> impl Responder {
    format!("Hello {}! id:{}", info.1, info.0)
}

fn main() {
    server::new(
        || App::new()
            .route("/{id}/{name}/index.html", http::Method::GET, index))
        .bind("127.0.0.1:8080").unwrap()
        .run();
}

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 actix-web crate is organized under the terms of the Contributor Covenant, the maintainer of actix-web, @fafhrd91, promises to intervene to uphold that code of conduct.

Description
No description provided
Readme 30 MiB
Languages
Rust 98.6%
Just 0.9%
HTML 0.5%