Multithreaded asynchronous web server, written in Rust.
You can install this crate using crates.io.
toml
[dependencies]
craweb = "*" # Or you can replace version with specific ones.
In order to start the server, you must do the following:
main.rs
file.Here's an example (as well as in the example_server in the root repository):
```rust use std::sync::Arc; use std::collections::HashMap;
use craweb::{ models::{Request, Response, ServerRoute, RequestMethod}, server::Server, };
// handler for our /
path
fn handlehomeroute(_: Request) -> Response {
let mut headers = HashMap::new();
headers.insert(String::from("Content-Type"), String::from("text/html"));
return Response {
content: Some(String::from("<html><h1>Hello, world!</h1></html>")),
status_message: String::from("OK"),
status_code: 200,
headers,
};
}
async fn main() { let mut server = Server::new(None, None, None, None);
// registering a new route
match server.on(
String::from("/"), // it will respond to us in `/` path.
ServerRoute {
method: RequestMethod::GET, // it will respond only on `GET` request
handler: handle_home_route, // and our function will handle it
},
) {
Ok(()) => {}
Err(err) => {
eprintln!("Unable to register a server route: {}", err);
}
}
Arc::new(server).bind("127.0.0.1:3000").await; // binding the server onto specific IP address and port
} ```
This crate is licensed under the MIT License. You can read the full license text here.