arcly-http-identity 0.9.0

CIAM building-block engine for arcly-http: identity store traits, password hashing, MFA (TOTP), passwordless & account lifecycle, risk signals, and an OIDC provider — storage-agnostic, zero-lock, all I/O behind traits.
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"
rust-version = "1.85"
name = "arcly-http-identity"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CIAM building-block engine for arcly-http: identity store traits, password hashing, MFA (TOTP), passwordless & account lifecycle, risk signals, and an OIDC provider — storage-agnostic, zero-lock, all I/O behind traits."
documentation = "https://docs.rs/arcly-http-identity"
readme = false
keywords = [
    "ciam",
    "identity",
    "oidc",
    "auth",
    "mfa",
]
categories = [
    "authentication",
    "web-programming",
]
license = "MIT"
repository = "https://gitlab.com/arcly/arcly-http/arcly-http"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
argon2 = []
default = [
    "argon2",
    "totp",
]
full = [
    "totp",
    "passkey",
    "oidc",
    "scim",
    "saml",
]
oidc = []
passkey = []
saml = []
scim = []
totp = []

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

[[test]]
name = "dpop"
path = "tests/dpop.rs"

[[test]]
name = "federation"
path = "tests/federation.rs"

[[test]]
name = "flows"
path = "tests/flows.rs"

[[test]]
name = "htier"
path = "tests/htier.rs"

[[test]]
name = "l3"
path = "tests/l3.rs"

[dependencies.arc-swap]
version = "1"

[dependencies.arcly-http-core]
version = "0.9.0"

[dependencies.argon2]
version = "0.5"

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

[dependencies.base32]
version = "0.4"

[dependencies.base64]
version = "0.22"

[dependencies.bcrypt]
version = "0.15"

[dependencies.futures]
version = "0.3"

[dependencies.hmac]
version = "0.12"

[dependencies.jsonwebtoken]
version = "9"

[dependencies.password-hash]
version = "0.5"

[dependencies.rand]
version = "0.8"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2"

[dependencies.tokio]
version = "1.38"
features = [
    "rt",
    "sync",
    "time",
    "macros",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tokio]
version = "1.38"
features = [
    "rt-multi-thread",
    "macros",
]