webserver-base 0.1.22

A Rust library which contains shared logic for all of my webserver projects.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93"
name = "webserver-base"
version = "0.1.22"
authors = ["Todd Everett Griffin <tgriffin115@gmail.com>"]
build = false
include = [
    "**/*.rs",
    "Cargo.toml",
    ".clippy.toml",
    "LICENSE",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library which contains shared logic for all of my webserver projects."
homepage = "https://www.toddgriffin.me/"
readme = "README.md"
keywords = [
    "Todd",
    "Everett",
    "Griffin",
    "webserver",
    "base",
]
categories = ["web-programming"]
license-file = "LICENSE"
repository = "https://github.com/goddtriffin/webserver-base"
resolver = "2"

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

[[test]]
name = "temp"
path = "tests/temp.rs"

[dependencies.axum]
version = "0.7.9"
features = [
    "ws",
    "multipart",
    "tracing",
    "macros",
    "tokio",
]

[dependencies.chrono]
version = "0.4.42"
features = [
    "default",
    "serde",
]

[dependencies.handlebars]
version = "6.3.2"

[dependencies.md5]
version = "0.7.0"

[dependencies.plausible-rs]
version = "0.1.5"

[dependencies.regex]
version = "1.11.3"

[dependencies.reqwest]
version = "0.12.23"
features = [
    "json",
    "rustls-tls",
]
default-features = false

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

[dependencies.serde_json]
version = "1.0.145"

[dependencies.tracing]
version = "0.1.41"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.allow_attributes]
level = "forbid"
priority = 1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.complexity]
level = "deny"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1

[lints.clippy.nursery]
level = "allow"
priority = 0

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.clippy.perf]
level = "deny"
priority = -1

[lints.clippy.style]
level = "deny"
priority = -1

[lints.clippy.suspicious]
level = "deny"
priority = -1

[lints.rust.unfulfilled_lint_expectations]
level = "forbid"
priority = 1

[lints.rust.unsafe_code]
level = "forbid"
priority = 0