rs-auth 0.1.2

Composable authentication for Rust with Axum and Postgres.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"