webserver-base 0.1.11

A Rust library which contains shared logic for all of my webserver projects.
Documentation
[dependencies.axum]
features = ["ws", "multipart", "tracing", "macros", "tokio"]
version = "0.7.4"

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

[dependencies.handlebars]
version = "5.1.0"

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

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

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

[dependencies.serde_json]
version = "1.0.113"

[dependencies.tracing]
version = "0.1.40"

[lib]
path = "src/lib.rs"
[lints.clippy.all]
level = "deny"
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 = 1

[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.unsafe_code]
level = "forbid"
priority = 0

[package]
authors = ["Todd Everett Griffin <toddgriffin@protonmail.com>"]
categories = ["web-programming"]
description = "A Rust library which contains shared logic for all of my webserver projects."
edition = "2021"
exclude = [".idea/*", ".github/*"]
homepage = "https://www.toddgriffin.me/"
keywords = ["Todd", "Everett", "Griffin", "webserver", "base"]
license-file = "LICENSE"
name = "webserver-base"
readme = "README.md"
repository = "https://github.com/goddtriffin/webserver-base"
rust-version = "1.76"
version = "0.1.11"