1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00
actix-extras/README.md

47 lines
2.0 KiB
Markdown
Raw Normal View History

2018-10-05 20:04:59 +02:00
# Actix http [![Build Status](https://travis-ci.org/fafhrd91/actix-http.svg?branch=master)](https://travis-ci.org/fafhrd91/actix-http) [![Build status](https://ci.appveyor.com/api/projects/status/kkdb4yce7qhm5w85/branch/master?svg=true)](https://ci.appveyor.com/project/fafhrd91/actix-web-hdy9d/branch/master) [![codecov](https://codecov.io/gh/fafhrd91/actix-http/branch/master/graph/badge.svg)](https://codecov.io/gh/fafhrd91/actix-http) [![crates.io](https://meritbadge.herokuapp.com/actix-web)](https://crates.io/crates/actix-web) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2017-09-30 18:16:59 +02:00
2018-10-05 02:00:27 +02:00
Actix http
2017-11-04 20:36:37 +01:00
2018-04-10 19:29:10 +02:00
## Documentation & community resources
2017-12-15 05:12:28 +01:00
2018-05-23 20:20:12 +02:00
* [User Guide](https://actix.rs/docs/)
2018-04-13 23:36:07 +02:00
* [API Documentation (Development)](https://actix.rs/actix-web/actix_web/)
2018-07-21 13:19:02 +02:00
* [API Documentation (Releases)](https://actix.rs/api/actix-web/stable/actix_web/)
2018-01-31 15:34:50 +01:00
* [Chat on gitter](https://gitter.im/actix/actix)
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
2018-05-25 06:09:20 +02:00
* Minimum supported Rust version: 1.26 or later
2018-01-31 15:34:50 +01:00
## Example
2018-03-12 17:13:04 +01:00
```rust
2018-01-31 15:34:50 +01:00
extern crate actix_web;
2018-05-23 20:20:12 +02:00
use actix_web::{http, server, App, Path, Responder};
2018-01-31 15:34:50 +01:00
2018-05-23 20:20:12 +02:00
fn index(info: Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", info.1, info.0)
2018-01-31 15:34:50 +01:00
}
fn main() {
2018-04-06 18:45:10 +02:00
server::new(
2018-04-01 02:15:44 +02:00
|| App::new()
2018-04-10 19:39:16 +02:00
.route("/{id}/{name}/index.html", http::Method::GET, index))
2018-01-31 15:34:50 +01:00
.bind("127.0.0.1:8080").unwrap()
.run();
}
```
2017-12-15 05:12:28 +01:00
2017-12-05 21:25:57 +01:00
## License
2017-10-21 11:08:07 +02:00
2017-12-19 01:48:30 +01:00
This project is licensed under either of
2017-12-30 16:07:39 +01:00
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0))
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))
2017-12-19 01:48:30 +01:00
at your option.
2018-01-22 00:29:02 +01:00
## Code of Conduct
Contribution to the actix-web crate is organized under the terms of the
2018-10-05 02:00:27 +02:00
Contributor Covenant, the maintainer of actix-net, @fafhrd91, promises to
2018-01-22 00:29:02 +01:00
intervene to uphold that code of conduct.