[package]
edition = "2024"
name = "authbox"
version = "0.2.5"
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_flow"
path = "tests/auth_flow.rs"
[[test]]
name = "email_and_password_reset"
path = "tests/email_and_password_reset.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"]