[package]
edition = "2021"
rust-version = "1.89.0"
name = "adminx-attachments"
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 = "Pluggable file attachments for the adminx admin-panel framework. Attach files to any resource, stored on local disk (S3/object-store backends to follow), with metadata over SeaORM or MongoDB and attach/serve/detach routes in the panel."
homepage = "https://github.com/srotas-space/adminx"
documentation = "https://docs.rs/adminx-attachments"
readme = "README.md"
keywords = [
"admin",
"upload",
"attachment",
"actix",
"axum",
]
categories = [
"web-programming",
"database",
]
license = "MIT"
repository = "https://github.com/srotas-space/adminx"
[lib]
name = "adminx_attachments"
path = "src/lib.rs"
[[test]]
name = "store_lifecycle"
path = "tests/store_lifecycle.rs"
[dependencies.adminx-core]
version = "3.1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.nanoid]
version = "0.4"
[dependencies.once_cell]
version = "1"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]