[package]
edition = "2024"
name = "authbox"
version = "1.0.0"
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"
resolver = "2"
[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.async-trait]
version = "0.1.89"
[dependencies.authbox-argon2]
version = "0.1.0"
[dependencies.authbox-core]
version = "1.0.0"
[dependencies.authbox-jwt]
version = "0.1.0"
[dependencies.tokio]
version = "1"
features = ["full"]