alun-web 0.1.2

Alun web layer: router, middleware, extractors, responses, JWT authentication
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 = "2021"
rust-version = "1.74"
name = "alun-web"
version = "0.1.2"
authors = ["alun contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Alun web layer: router, middleware, extractors, responses, JWT authentication"
homepage = "https://github.com/wild1024/alun"
documentation = "https://docs.rs/alun-web"
readme = "README.md"
keywords = [
    "web",
    "framework",
    "router",
    "middleware",
    "jwt",
]
categories = [
    "web-programming",
    "authentication",
]
license = "Apache-2.0"
repository = "https://github.com/wild1024/alun"

[features]
cache = ["dep:alun-cache"]
config = []
db = [
    "dep:alun-db",
    "config",
]
template = ["dep:alun-template"]

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

[dependencies.alun-cache]
version = "0.1.0"
optional = true

[dependencies.alun-config]
version = "0.1.0"

[dependencies.alun-core]
version = "0.1.0"
features = ["web"]

[dependencies.alun-db]
version = "0.1.0"
optional = true

[dependencies.alun-log]
version = "0.1.0"

[dependencies.alun-macros]
version = "0.1.0"

[dependencies.alun-template]
version = "0.1.0"
optional = true

[dependencies.alun-utils]
version = "0.1.0"
features = ["validator-integration"]

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
version = "0.8"

[dependencies.base64]
version = "0.22"

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.http]
version = "1"

[dependencies.jsonwebtoken]
version = "9"

[dependencies.linkme]
version = "0.3"

[dependencies.parking_lot]
version = "0.12"

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

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.tokio]
version = "1"
features = [
    "full",
    "net",
    "signal",
]

[dependencies.toml]
version = "0.8"

[dependencies.tower]
version = "0.5"

[dependencies.tower-http]
version = "0.6"
features = [
    "cors",
    "trace",
    "compression-gzip",
    "limit",
    "fs",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-appender]
version = "0.2"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]

[dependencies.uuid]
version = "1"
features = ["v4"]

[dependencies.validator]
version = "0.20"
features = ["derive"]