servable 0.0.5

A tiny web stack built around htmx, Axum, and Maud.
Documentation
[dependencies.axum]
version = "0.8"

[dependencies.chrono]
version = "0.4"

[dependencies.image]
optional = true
version = "0.25"

[dependencies.maud]
version = "0.27"

[dependencies.mime]
version = "0.3"

[dependencies.rand]
version = "0.9"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_urlencoded]
version = "0.7"

[dependencies.strum]
features = ["derive"]
optional = true
version = "0.27"

[dependencies.thiserror]
optional = true
version = "2.0"

[dependencies.tokio]
optional = true
version = "1.48"

[dependencies.tower]
version = "0.5"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tower-http]
features = ["compression-full"]
version = "0.6"

[features]
default = []
"htmx-2.0.8" = []
image = ["dep:image", "dep:strum", "dep:thiserror", "dep:tokio"]

[lib]
name = "servable"
path = "src/lib.rs"

[lints.clippy]
allow_attributes = "deny"
cargo_common_metadata = "deny"
comparison_chain = "allow"
create_dir = "deny"
dbg_macro = "deny"
expect_used = "warn"
filetype_is_file = "deny"
identity_op = "allow"
implicit_clone = "deny"
integer_division = "allow"
large_types_passed_by_value = "deny"
lossy_float_literal = "deny"
map_err_ignore = "deny"
missing_safety_doc = "warn"
multiple_crate_versions = "deny"
mutex_atomic = "deny"
needless_raw_strings = "deny"
needless_return = "allow"
negative_feature_names = "deny"
new_without_default = "allow"
print_stderr = "deny"
print_stdout = "deny"
redundant_feature_names = "deny"
result_large_err = "allow"
str_to_string = "deny"
string_add = "deny"
tabs_in_doc_comments = "allow"
todo = "deny"
too_many_arguments = "allow"
type_complexity = "allow"
unimplemented = "deny"
uninlined_format_args = "allow"
unwrap_used = "warn"
upper_case_acronyms = "deny"
use_debug = "allow"
verbose_file_reads = "deny"
wildcard_dependencies = "deny"

[lints.rust]
absolute_paths_not_starting_with_crate = "deny"
elided_lifetimes_in_paths = "deny"
explicit_outlives_requirements = "warn"
macro_use_extern_crate = "deny"
missing_docs = "warn"
non_ascii_idents = "deny"
redundant_lifetimes = "warn"
single_use_lifetimes = "deny"
unit_bindings = "deny"
unused_crate_dependencies = "warn"
unused_import_braces = "deny"

[package]
authors = ["rm-dr"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "web-programming::http-server"]
description = "A tiny web stack built around htmx, Axum, and Maud."
edition = "2024"
keywords = ["htmx", "web", "webui", "maud", "framework"]
license = "GPL-3.0"
name = "servable"
readme = "README.md"
repository = "https://github.com/rm-dr/servable"
resolver = "2"
rust-version = "1.90.0"
version = "0.0.5"