mirror of
https://github.com/robertwayne/axum-htmx
synced 2024-11-23 20:02:50 +01:00
23 lines
739 B
TOML
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.1"
|
|
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 }
|