lib-humus 0.6.0

Helps creating configurable frontends for humans and computers using axum, Tera and toml.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2026 Slatian <baschdel@disroot.org>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

//! This module contains structs for decoding HTTP headers that are not in the [headers][axum_extra::headers] (via [axum_extra]) crate.

mod accept_header;
mod accept_language_header;
mod parser;

pub use accept_language_header::AcceptLanguageHeader;
pub use accept_language_header::AcceptLanguageHeaderLanguage;

pub use accept_header::AcceptHeader;
pub use accept_header::AcceptHeaderItem;