Crates.io | small-router |
lib.rs | small-router |
version | |
source | src |
created_at | 2025-02-21 19:54:22.585825+00 |
updated_at | 2025-02-24 16:26:19.251926+00 |
description | A simple and small router for the small-http library |
homepage | https://github.com/bplaat/crates/tree/master/lib/small-router |
repository | https://github.com/bplaat/crates |
max_upload_size | |
id | 1564629 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A simple and small router for the small-http library
A simple example the opens a http server on serves a simple response:
use std::net::{Ipv4Addr, TcpListener};
use small_http::{Request, Response, Status};
use small_router::RouterBuilder;
fn home(_req: &Request, _ctx: &()) -> Response {
Response::with_body("Home")
}
fn hello(req: &Request, _ctx: &()) -> Response {
Response::with_body(format!(
"Hello, {}!",
req.params.get("name").unwrap_or(&"World".to_string())
))
}
fn not_found(_req: &Request, _ctx: &()) -> Response {
Response::with_status(Status::NotFound).body("404 Not Found")
}
fn main() {
let router = RouterBuilder::new()
.get("/", home)
.get("/hello/:name", hello)
.fallback(not_found)
.build();
let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
.unwrap_or_else(|_| panic!("Can't bind to port"));
small_http::serve(listener, move |req| router.handle(req));
}
See the examples for many more examples.
See the documentation for more information.
Copyright © 2024-2025 Bastiaan van der Plaat
Licensed under the MIT license.