[package]
edition = "2021"
rust-version = "1.96"
name = "churust"
version = "0.2.0"
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"]
cors = ["dep:churust-cors"]
default = []
fs = ["churust-core/fs"]
full = [
"json",
"logging",
"cors",
"auth",
]
json = ["dep:churust-json"]
logging = ["dep:churust-logging"]
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.2.0"
optional = true
[dependencies.churust-core]
version = "0.2.0"
[dependencies.churust-cors]
version = "0.2.0"
optional = true
[dependencies.churust-json]
version = "0.2.0"
optional = true
[dependencies.churust-logging]
version = "0.2.0"
optional = true
[dependencies.churust-macros]
version = "0.2.0"
[dependencies.http]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"io-util",
"time",
"sync",
"signal",
"macros",
]