[package]
edition = "2021"
rust-version = "1.89.0"
name = "adminx-core"
version = "3.1.0"
authors = [
"Snm Maurya <xsmmaurya@gmail.com>",
"Deepak Maurya <deepxmaurya@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Framework-neutral core for the adminx admin-panel framework: the Resource trait, storage abstraction, registry, and neutral request/response types shared by every web-framework and database adapter."
homepage = "https://github.com/srotas-space/adminx"
documentation = "https://docs.rs/adminx-core"
readme = "README.md"
keywords = [
"admin",
"panel",
"crud",
"actix",
"axum",
]
categories = [
"web-programming",
"authentication",
]
license = "MIT"
repository = "https://github.com/srotas-space/adminx"
[lib]
name = "adminx_core"
path = "src/lib.rs"
[[test]]
name = "actions_export"
path = "tests/actions_export.rs"
[[test]]
name = "audit_best_effort"
path = "tests/audit_best_effort.rs"
[[test]]
name = "audit_disabled"
path = "tests/audit_disabled.rs"
[[test]]
name = "audit_override"
path = "tests/audit_override.rs"
[[test]]
name = "audit_seam"
path = "tests/audit_seam.rs"
[[test]]
name = "audit_strict"
path = "tests/audit_strict.rs"
[[test]]
name = "auth"
path = "tests/auth.rs"
[[test]]
name = "authz_seam"
path = "tests/authz_seam.rs"
[[test]]
name = "mfa"
path = "tests/mfa.rs"
[[test]]
name = "search_seam"
path = "tests/search_seam.rs"
[[test]]
name = "ui_render"
path = "tests/ui_render.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bcrypt]
version = "0.17"
[dependencies.jsonwebtoken]
version = "9.3"
[dependencies.lazy_static]
version = "1.4"
[dependencies.once_cell]
version = "1"
[dependencies.qrcode]
version = "0.14"
features = ["svg"]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.tera]
version = "1.19"
[dependencies.totp-rs]
version = "5.6"
features = [
"otpauth",
"gen_secret",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]