admin-config 0.1.1

Configuration management library for Rust web applications with support for multiple databases, authentication, security, and third-party services
Documentation
[package]
name = "admin-config"
version = "0.1.1"
edition = "2024"
resolver = "3"
description = "Configuration management library for Rust web applications with support for multiple databases, authentication, security, and third-party services"
keywords = ["config", "server", "admin", "configuration", "toml"]
categories = ["config", "web-programming", "development-tools"]
license = "MIT"
readme = "README.md"
include = [
    "src/**/*",
    "config.example.toml",
    "README.md",
    "Cargo.toml",
]

[dependencies]
serde = { workspace = true }
anyhow = { workspace = true }
toml = { workspace = true }
log = { workspace = true }
clap = { workspace = true }
rand = { workspace = true }

[dev-dependencies]
dotenv = { workspace = true }