[package]
edition = "2021"
name = "aa-auth"
version = "0.0.1-rc.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP authentication and authorization framework for Agent Assembly — API keys, JWTs, scopes, rate limiting, and the deny-by-default auth gate. Leaf crate with no aa-core/aa-gateway dependency."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ai-agent-assembly/agent-assembly"
[lib]
name = "aa_auth"
path = "src/lib.rs"
[dependencies.argon2]
version = "0.5"
[dependencies.axum]
version = "0.8"
[dependencies.dashmap]
version = "6"
[dependencies.http]
version = "1"
[dependencies.jsonwebtoken]
version = "10"
features = ["aws_lc_rs"]
[dependencies.rand]
version = "0.10"
[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.utoipa]
version = "5"
features = ["axum_extras"]
[lints.clippy]
all = "warn"
complexity = "warn"
correctness = "deny"
perf = "warn"
style = "warn"
suspicious = "deny"