authx-plugins 0.1.0

Auth plugin collection for authx-rs: email/password, TOTP, magic link, OAuth, API keys, organizations, and more
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 = "2021"
name = "authx-plugins"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Auth plugin collection for authx-rs: email/password, TOTP, magic link, OAuth, API keys, organizations, and more"
homepage = "https://github.com/hamzzy/authx-rs"
documentation = "https://docs.rs/authx-plugins"
readme = "README.md"
keywords = [
    "authentication",
    "totp",
    "oauth",
    "magic-link",
    "mfa",
]
categories = [
    "authentication",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/hamzzy/authx-rs"

[features]
redis-tokens = ["dep:redis"]

[lib]
name = "authx_plugins"
path = "src/lib.rs"

[dependencies.argon2]
version = "0.5"
features = ["std"]

[dependencies.async-trait]
version = "0.1"

[dependencies.authx-core]
version = "0.1"

[dependencies.authx-storage]
version = "0.1"

[dependencies.axum]
version = "0.7"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.email_address]
version = "0.2"

[dependencies.hex]
version = "0.4"

[dependencies.rand]
version = "0.8"

[dependencies.redis]
version = "1.0.4"
features = [
    "aio",
    "tokio-comp",
]
optional = true

[dependencies.reqwest]
version = "0.12"
features = ["json"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.totp-rs]
version = "5"
features = [
    "gen_secret",
    "otpauth",
]

[dependencies.tracing]
version = "0.1"

[dependencies.urlencoding]
version = "2"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.tokio]
version = "1"
features = ["full"]