[package]
edition = "2024"
rust-version = "1.85"
name = "rs-auth"
version = "0.1.2"
authors = ["rs-auth contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable authentication for Rust with Axum and Postgres."
homepage = "https://rs-auth.com"
readme = "README.md"
keywords = [
"authentication",
"auth",
"axum",
"session",
"sqlx",
]
categories = [
"web-programming::http-server",
"authentication",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rs-auth/rs-auth"
resolver = "2"
[features]
axum = ["dep:rs-auth-axum"]
default = [
"postgres",
"axum",
]
postgres = ["dep:rs-auth-postgres"]
[lib]
name = "rs_auth"
path = "src/lib.rs"
[dependencies.rs-auth-axum]
version = "0.1.1"
optional = true
[dependencies.rs-auth-core]
version = "0.1.1"
[dependencies.rs-auth-postgres]
version = "0.1.1"
optional = true
[lints.clippy]
all = "warn"
todo = "warn"
[lints.rust]
unsafe_code = "forbid"