Crates.io | tower-web |
lib.rs | tower-web |
version | 0.3.7 |
source | src |
created_at | 2018-03-11 17:47:04.279948 |
updated_at | 2019-04-10 20:33:46.812043 |
description | Web framework with a focus on removing boilerplate |
homepage | https://github.com/carllerche/tower-web |
repository | https://github.com/carllerche/tower-web |
max_upload_size | |
id | 55026 |
size | 484,273 |
A web framework for Rust with a focus on removing boilerplate.
Tower Web is:
#[macro_use]
extern crate tower_web;
extern crate tokio;
use tower_web::ServiceBuilder;
use tokio::prelude::*;
/// This type will be part of the web service as a resource.
#[derive(Clone, Debug)]
struct HelloWorld;
/// This will be the JSON response
#[derive(Response)]
struct HelloResponse {
message: &'static str,
}
impl_web! {
impl HelloWorld {
#[get("/")]
#[content_type("json")]
fn hello_world(&self) -> Result<HelloResponse, ()> {
Ok(HelloResponse {
message: "hello world",
})
}
}
}
pub fn main() {
let addr = "127.0.0.1:8080".parse().expect("Invalid address");
println!("Listening on http://{}", addr);
ServiceBuilder::new()
.resource(HelloWorld)
.run(&addr)
.unwrap();
}
Tower Web aims to decouple all HTTP concepts from the application logic. You define a "plain old Rust method" (PORM?). This method takes only the data it needs to complete and returns a struct representing the response. Tower Web does the rest.
The impl_web
macro looks at the definition and generates the glue code,
allowing the method to respond to HTTP requests.
The best way to get started is to read the examples and API docs.
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in tower-web
by you, shall be licensed as MIT, without any
additional terms or conditions.