High-level http auth extractors for axum
Bearer Authentication:
```rust use axum_auth::AuthBearer;
/// Handler for a typical axum route, takes a token
and returns it
async fn handler(AuthBearer(token): AuthBearer) -> String {
format!("Found a bearer token: {}", token)
}
```
Basic Authentication:
```rust use axum_auth::AuthBasic;
/// Takes basic auth details and shows a message async fn handler(AuthBasic((id, password)): AuthBasic) -> String { if let Some(password) = password { format!("User '{}' with password '{}'", id, password) } else { format!("User '{}' without password", id) } } ```
Check out the crate documentation for more in-depth information into how both of these methods work!
Simply place the following inside of your Cargo.toml
file for Axum 0.5:
toml
[dependencies]
axum-auth = "0.3"
You can enable just basic/bearer auth via features. To enable just basic auth, you can add this to the Cargo.toml
file instead:
toml
[dependencies]
axum-auth = { version = "0.3", default-features = false, features = ["auth-basic"] }
Some essential security considerations to take into account are the following:
This project is dual-licensed under both the MIT and Apache, so feel free to use either at your discretion.