authkestra 0.1.2

A modular authentication framework for Rust
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"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modular authentication framework for Rust"
readme = false
keywords = [
    "auth",
    "authentication",
    "oauth2",
    "oidc",
]
categories = ["authentication"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/marcjazz/authkestra"

[features]
actix = [
    "dep:authkestra-actix",
    "authkestra-actix/flow",
    "authkestra-actix/session",
    "authkestra-actix/token",
    "authkestra-actix/guard",
]
axum = [
    "dep:authkestra-axum",
    "authkestra-axum/flow",
    "authkestra-axum/session",
    "authkestra-axum/token",
    "authkestra-axum/guard",
]
default = []
discord = ["dep:authkestra-providers-discord"]
flow = [
    "dep:authkestra-flow",
    "authkestra-flow/session",
]
full = [
    "flow",
    "session",
    "token",
    "oidc",
    "axum",
    "actix",
    "github",
    "google",
    "discord",
]
github = ["dep:authkestra-providers-github"]
google = ["dep:authkestra-providers-google"]
oidc = ["dep:authkestra-oidc"]
session = ["dep:authkestra-session"]
token = ["dep:authkestra-token"]

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

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

[dependencies.authkestra-actix]
version = "0.1.2"
optional = true

[dependencies.authkestra-axum]
version = "0.1.2"
optional = true

[dependencies.authkestra-core]
version = "0.1.2"

[dependencies.authkestra-flow]
version = "0.1.2"
optional = true

[dependencies.authkestra-oidc]
version = "0.1.2"
optional = true

[dependencies.authkestra-providers-discord]
version = "0.1.1"
optional = true

[dependencies.authkestra-providers-github]
version = "0.1.1"
optional = true

[dependencies.authkestra-providers-google]
version = "0.1.1"
optional = true

[dependencies.authkestra-session]
version = "0.1.1"
optional = true

[dependencies.authkestra-token]
version = "0.1.2"
optional = true

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