alun 0.1.1

Alun: A fast, simple, and productive Rust web framework - config-driven, plugin-extensible, batteries included
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.74"
name = "alun"
version = "0.1.1"
authors = ["alun contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Alun: A fast, simple, and productive Rust web framework - config-driven, plugin-extensible, batteries included"
homepage = "https://github.com/wild1024/alun"
documentation = "https://docs.rs/alun"
readme = "README.md"
keywords = [
    "web",
    "framework",
    "axum",
    "api",
    "rest",
]
categories = [
    "web-programming",
    "api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/wild1024/alun"

[features]
cache = [
    "dep:alun-cache",
    "alun-web/cache",
]
config = ["alun-web/config"]
db = [
    "config",
    "dep:alun-db",
    "alun-web/db",
]
default = ["full"]
fs = ["dep:alun-fs"]
full = [
    "db",
    "template",
    "cache",
    "plugin",
    "kafka",
    "task",
    "fs",
]
kafka = ["dep:alun-kafka"]
plugin = ["dep:alun-plugin"]
task = ["dep:alun-task"]
template = [
    "dep:alun-template",
    "alun-web/template",
]

[lib]
name = "alun"
path = "src/lib.rs"

[dependencies.alun-cache]
version = "0.1.0"
optional = true

[dependencies.alun-config]
version = "0.1.0"

[dependencies.alun-core]
version = "0.1.0"

[dependencies.alun-db]
version = "0.1.0"
optional = true

[dependencies.alun-fs]
version = "0.1.0"
optional = true

[dependencies.alun-kafka]
version = "0.1.0"
optional = true

[dependencies.alun-macros]
version = "0.1.0"

[dependencies.alun-plugin]
version = "0.1.0"
optional = true

[dependencies.alun-task]
version = "0.1.0"
optional = true

[dependencies.alun-template]
version = "0.1.0"
optional = true

[dependencies.alun-web]
version = "0.1.2"
features = ["config"]

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
version = "0.8"

[dependencies.linkme]
version = "0.3"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "v7",
]