htmxtools 0.1.4

A lightweight Rust crate for working with HTMX headers, specifically designed to integrate seamlessly with axum.
Documentation
1
2
3
4
5
6
7
8
9
10
//! HTMX response header options.
mod events;
mod location_options;
mod swap_option;

pub use self::{
    events::{Event, Events},
    location_options::LocationOptions,
    swap_option::SwapOption,
};