[package]
edition = "2021"
name = "cloudillo-auth-adapter-sqlite"
version = "0.8.9"
authors = ["Szilárd Hajba <szilu@symbion.hu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite-backed authentication adapter for Cloudillo: JWT, signing keys, passwords, WebAuthn, and TLS certificates"
homepage = "https://cloudillo.org"
readme = "README.md"
keywords = [
"cloudillo",
"sqlite",
"authentication",
"adapter",
"jwt",
]
categories = [
"database-implementations",
"authentication",
]
license = "LGPL-3.0-only"
repository = "https://github.com/cloudillo/cloudillo-rs"
[lib]
name = "cloudillo_auth_adapter_sqlite"
path = "src/lib.rs"
[[test]]
name = "password_security_tests"
path = "tests/password_security_tests.rs"
[[test]]
name = "phase1_jwt_and_variables"
path = "tests/phase1_jwt_and_variables.rs"
[[test]]
name = "phase3_registration"
path = "tests/phase3_registration.rs"
[[test]]
name = "phase4_key_management"
path = "tests/phase4_key_management.rs"
[[test]]
name = "phase5_webauthn"
path = "tests/phase5_webauthn.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.base64]
version = "0.22.1"
[dependencies.bcrypt]
version = "0.18.0"
[dependencies.cloudillo-types]
version = "0.8.9"
features = ["server"]
[dependencies.jsonwebtoken]
version = "10.3.0"
[dependencies.libsqlite3-sys]
version = "0.30.1"
features = ["bundled"]
[dependencies.p256]
version = "0.13.2"
features = [
"pkcs8",
"pem",
]
[dependencies.p384]
version = "0.13.1"
features = [
"pkcs8",
"pem",
]
[dependencies.rand]
version = "0.10.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8.6"
features = [
"sqlite",
"runtime-tokio-rustls",
]
[dependencies.time]
version = "0.3.47"
features = ["local-offset"]
[dependencies.tokio]
version = "1.49.0"
features = ["fs"]
[dev-dependencies.tempfile]
version = "3.25"
[dev-dependencies.tokio]
version = "1.49.0"
features = [
"rt",
"macros",
]