churust 0.3.2

Churust — a Ktor-inspired, secure, easy-to-learn Rust web framework (Churro + Rust).
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.96"
name = "churust"
version = "0.3.2"
authors = ["David Cruz Anaya <david.cruz@davthecoder.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Churust — a Ktor-inspired, secure, easy-to-learn Rust web framework (Churro + Rust)."
homepage = "https://github.com/davthecoder/Churust"
readme = "README.md"
keywords = [
    "web",
    "framework",
    "http",
    "ktor",
    "async",
]
categories = [
    "web-programming::http-server",
    "asynchronous",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/davthecoder/Churust"

[package.metadata.docs.rs]
all-features = true

[features]
auth = ["dep:churust-auth"]
client = ["dep:churust-client"]
client-tls = [
    "client",
    "churust-client/tls",
]
compression = ["dep:churust-compression"]
cors = ["dep:churust-cors"]
default = []
fs = ["churust-core/fs"]
full = [
    "json",
    "logging",
    "cors",
    "auth",
    "ratelimit",
    "compression",
    "templates",
]
http3 = ["churust-core/http3"]
json = ["dep:churust-json"]
logging = ["dep:churust-logging"]
multipart = ["churust-core/multipart"]
openapi = [
    "dep:churust-openapi",
    "json",
]
ratelimit = ["dep:churust-ratelimit"]
redis = ["dep:churust-redis"]
templates = ["dep:churust-templates"]
tls = ["churust-core/tls"]
ws = ["churust-core/ws"]

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

[[test]]
name = "macro_main"
path = "tests/macro_main.rs"

[dependencies.churust-auth]
version = "0.3.2"
optional = true

[dependencies.churust-client]
version = "0.3.2"
optional = true

[dependencies.churust-compression]
version = "0.3.2"
optional = true

[dependencies.churust-core]
version = "0.3.2"

[dependencies.churust-cors]
version = "0.3.2"
optional = true

[dependencies.churust-json]
version = "0.3.2"
optional = true

[dependencies.churust-logging]
version = "0.3.2"
optional = true

[dependencies.churust-macros]
version = "0.3.2"

[dependencies.churust-openapi]
version = "0.3.2"
optional = true

[dependencies.churust-ratelimit]
version = "0.3.2"
optional = true

[dependencies.churust-redis]
version = "0.3.2"
optional = true

[dependencies.churust-templates]
version = "0.3.2"
optional = true

[dependencies.http]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "net",
    "io-util",
    "time",
    "sync",
    "signal",
    "macros",
]