[package]
edition = "2024"
rust-version = "1.88.0"
name = "autumn-admin-plugin"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Out-of-the-box admin panel plugin for autumn-web applications"
homepage = "https://github.com/madmax983/autumn"
readme = "README.md"
keywords = [
"web",
"admin",
"axum",
"htmx",
"fullstack",
]
categories = [
"web-programming",
"web-programming::http-server",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/madmax983/autumn"
[lib]
name = "autumn_admin_plugin"
path = "src/lib.rs"
[dependencies.autumn-web]
version = "0.5.0"
features = [
"maud",
"htmx",
"db",
"flash",
"multipart",
]
[dependencies.axum]
version = "0.8"
features = [
"macros",
"ws",
"multipart",
]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.csv]
version = "1.3"
[dependencies.diesel]
version = "2"
features = [
"sqlite",
"postgres",
]
[dependencies.diesel-async]
version = "0.8"
features = [
"deadpool",
"postgres",
]
[dependencies.form_urlencoded]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.maud]
version = "0.27"
features = ["axum"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt",
]
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"