authbox 0.1.3

A lightweight, modular authentication framework for Rust built around traits, async support, and pluggable component
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"
name = "authbox"
version = "0.1.3"
authors = ["anomalous254"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, modular authentication framework for Rust built around traits, async support, and pluggable component"
homepage = "https://github.com/anomalous254/authbox"
documentation = "https://docs.rs/authbox"
readme = "README.md"
keywords = [
    "authentication",
    "jwt",
    "actix",
    "security",
    "auth",
]
categories = [
    "authentication",
    "web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/anomalous254/authbox"

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

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

[dependencies.actix-files]
version = "0.6.10"

[dependencies.actix-web]
version = "4.13.0"

[dependencies.actix-web-httpauth]
version = "0.8.2"

[dependencies.argon2]
version = "0.5.3"
features = ["password-hash"]

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

[dependencies.chrono]
version = "0.4.44"

[dependencies.jsonwebtoken]
version = "10.3.0"
features = ["aws_lc_rs"]

[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]

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

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

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