axum-htmx/Cargo.toml
2023-07-27 22:21:05 -04:00

23 lines
739 B
TOML

[package]
name = "axum-htmx"
authors = ["Rob Wagner <rob@sombia.com>"]
license = "MIT OR Apache-2.0"
description = "A set of htmx extractors and request guards for axum."
repository = "https://github.com/robertwayne/axum-htmx"
categories = ["web-programming"]
keywords = ["axum", "htmx"]
readme = "README.md"
version = "0.2.0"
edition = "2021"
[features]
default = []
guards = ["tower", "futures-core", "pin-project-lite"]
[dependencies]
axum = { git = "https://github.com/tokio-rs/axum", branch = "main", default-features = false }
# Optional dependencies
tower = { version = "0.4", default-features = false, optional = true }
futures-core = { version = "0.3", optional = true }
pin-project-lite = { version = "0.2", optional = true }