[package]
edition = "2024"
name = "fabryk-auth"
version = "0.4.2"
authors = ["Duncan McGreggor <oubiwann@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic auth primitives for Fabryk — AuthenticatedUser, TokenValidator trait, Tower middleware"
homepage = "https://github.com/oxur/textrynum"
readme = false
license = "Apache-2.0"
repository = "https://github.com/oxur/textrynum"
resolver = "2"
[lib]
name = "fabryk_auth"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
features = [
"http1",
"json",
"tokio",
"tracing",
]
default-features = false
[dependencies.http]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tower]
version = "0.5"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"io-util",
"fs",
"sync",
"time",
"macros",
"rt-multi-thread",
]
[dev-dependencies.tower]
version = "0.5"
features = ["util"]