#axum #middleware #helmet #security #rust

axum-helmet

HTTP security headers middleware core for axum web framework

2 unstable releases

new 0.2.0 Apr 2, 2025
0.1.0 Jan 5, 2024

#984 in HTTP server

Download history 202/week @ 2024-12-11 140/week @ 2024-12-18 36/week @ 2024-12-25 80/week @ 2025-01-01 125/week @ 2025-01-08 141/week @ 2025-01-15 210/week @ 2025-01-22 202/week @ 2025-01-29 160/week @ 2025-02-05 204/week @ 2025-02-12 99/week @ 2025-02-19 243/week @ 2025-02-26 246/week @ 2025-03-05 207/week @ 2025-03-12 301/week @ 2025-03-19 226/week @ 2025-03-26

1,049 downloads per month

MIT license

74KB
945 lines

axum-core - Security Middleware for the axum web framework

crate docs

It works by setting HTTP headers for you. These headers can help protect your app from some well-known web vulnerabilities:

Usage

Add this to your Cargo.toml:

[dependencies]
axum-helmet = "0.1"

Example

use axum::{self, Router};
use axum_helmet::Helmet;

let app = Router::new()
    .route("/", axum::handler::get(|| async { "Hello, World!" }))
    .layer(Helmet::default());

// ...

License

This project is licensed under the MIT license.

Dependencies

~5–11MB
~111K SLoC