authbeam 2.0.2

Authentication manager
Documentation
[package]
name = "authbeam"
version = "2.0.2"
edition = "2021"
description = "Authentication manager"
authors = ["trisuaso", "swmff"]
homepage = "https://rainbeam.net"
repository = "https://github.com/swmff/rainbeam"
license = "MIT"

[features]
postgres = ["databeam/postgres"]
mysql = ["databeam/mysql"]
sqlite = ["databeam/sqlite"]
default = ["databeam/sqlite"]    # for development

[dependencies]
axum = { version = "0.7.9", features = ["macros"] }
axum-macros = "0.4.2"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
dotenv = "0.15.0"
axum-extra = { version = "0.9.6", features = ["cookie"] }
regex = "1.11.1"
reqwest = "0.12.9"
hcaptcha-no-wasm = { version = "3.0.1" }
mime_guess = "2.0.5"
citrus-client = { version = "0.1.0" }
rainbeam-shared = { version = "0.1.3" }
databeam = { version = "0.1.1", default-features = false }
image = "0.25.5"

[lib]
doctest = false