authkestra-engine 0.2.4

Unified authentication engine for the authkestra framework
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 = "authkestra-engine"
version = "0.2.4"
build = false
exclude = [
    "/Cargo.lock",
    "tests/**/*",
    "examples/**/*",
    ".github/**/*",
    "docs/**/*",
    "website/**/*",
    "benches/**/*",
    ".gitignore",
    ".agents/**/*",
    "plans/**/*",
    "AGENTS.md",
    "docker-compose.yml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified authentication engine for the authkestra framework"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/marcjazz/authkestra"

[features]
default = [
    "token",
    "flow",
]
flow = []
memory = []
redis = ["dep:redis"]
session = []
sql-mysql = [
    "sqlx/mysql",
    "sqlx/chrono",
    "sqlx/runtime-tokio-rustls",
    "sqlx/json",
]
sql-postgres = [
    "sqlx/postgres",
    "sqlx/chrono",
    "sqlx/runtime-tokio-rustls",
    "sqlx/json",
]
sql-sqlite = [
    "sqlx/sqlite",
    "sqlx/chrono",
    "sqlx/runtime-tokio-rustls",
    "sqlx/json",
]
token = []

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

[dependencies.aes-gcm]
version = "0.10.3"

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

[dependencies.base64]
version = "0.22.1"

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

[dependencies.http]
version = "1"

[dependencies.jsonwebtoken]
version = "10.3.0"
features = ["rust_crypto"]

[dependencies.rand]
version = "0.9.2"

[dependencies.redis]
version = "0.27"
features = ["tokio-comp"]
optional = true

[dependencies.reqwest]
version = "0.13.1"
features = [
    "json",
    "form",
]

[dependencies.rsa]
version = "0.9.6"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.sqlx]
version = "0.8.2"
optional = true

[dependencies.thiserror]
version = "2.0.18"

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

[dependencies.tracing]
version = "0.1"

[dependencies.url]
version = "2.5"

[dependencies.uuid]
version = "1.0"
features = ["v4"]

[dev-dependencies.testcontainers]
version = "0.27.3"

[dev-dependencies.testcontainers-modules]
version = "0.15.0"
features = [
    "mysql",
    "postgres",
    "redis",
]