[package]
edition = "2021"
name = "rustauth-axum"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Axum integration for RustAuth."
homepage = "https://github.com/salasebas/rustauth"
documentation = "https://docs.rs/rustauth-axum"
readme = "README.md"
keywords = [
"auth",
"oauth",
"sso",
"scim",
"identity",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/salasebas/rustauth"
[features]
test-utils = []
[lib]
name = "rustauth_axum"
path = "src/lib.rs"
[[test]]
name = "accounts"
path = "tests/accounts.rs"
[[test]]
name = "adapter_regression"
path = "tests/adapter_regression.rs"
[[test]]
name = "body_limit"
path = "tests/body_limit.rs"
[[test]]
name = "email_password"
path = "tests/email_password.rs"
[[test]]
name = "email_verification"
path = "tests/email_verification.rs"
[[test]]
name = "error_contract"
path = "tests/error_contract.rs"
[[test]]
name = "http_contract"
path = "tests/http_contract.rs"
[[test]]
name = "password"
path = "tests/password.rs"
[[test]]
name = "routing"
path = "tests/routing.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "security_upstream"
path = "tests/security_upstream.rs"
[[test]]
name = "session_fields"
path = "tests/session_fields.rs"
[[test]]
name = "social"
path = "tests/social.rs"
[[test]]
name = "storage_smoke"
path = "tests/storage_smoke.rs"
[[test]]
name = "user_session_lifecycle"
path = "tests/user_session_lifecycle.rs"
[dependencies.axum]
version = "0.8"
[dependencies.http-body-util]
version = "0.1"
[dependencies.rustauth]
version = "0.2.0"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
[dev-dependencies.rustauth-core]
version = "0.2.0"
features = ["test-utils"]
default-features = false
[dev-dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"io-util",
"macros",
"net",
"rt-multi-thread",
"time",
]
default-features = false
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[dev-dependencies.url]
version = "2"
[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"