Axum Static Macro

! ! ! THIS REPOSITORY IS NO LONGER MAINTAINED! ! ! !

Instead, you can use

rust router.route("/", get(|| async { ([("Content-Type", "text/html")], include_bytes!("index.html")) }))

toml axum = "0.4" # Required axum_static_macro = "1" This package has a single macro (staticfile) which takes arguments for name, file path, and content type and fills out the proper statics. \ In debug mode, it will read the file live so you can change it without recompiling the program. (Works only in crate root.) \ It takes three arguments. Function name (this is what you wrap in the axum get handler), file path, and content type. \ Does not panic in release mode. Debug mode can panic if the file does not exist. \ Includes a module (contenttypes) with consts for common content types.

```rust

[tokio::main]

async fn main() { // create our static file handler axumstaticmacro::staticfile!(index, "index.html", axumstaticmacro::contenttypes::HTML); // build our application with a single route let app = axum::Router::new().route("/", axum::routing::get(index)); // run it with hyper on localhost:3000 axum::Server::bind(&"0.0.0.0:3000".parse().unwrap()) .serve(app.intomakeservice()) .await .unwrap(); } ```