[package]
edition = "2021"
rust-version = "1.89.0"
name = "adminx-core"
version = "0.3.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."
readme = "README.md"
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 = "auth"
path = "tests/auth.rs"
[[test]]
name = "authz_seam"
path = "tests/authz_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"]