[package]
edition = "2024"
name = "hotaru_http"
version = "0.8.0"
authors = ["Redstone <redstone@fds.moe>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP/1.1 implementation for the Hotaru web framework"
readme = "README.md"
keywords = [
"hotaru",
"http",
"http1",
"web",
"framework",
]
categories = [
"network-programming",
"web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/Field-of-Dreams-Studio/hotaru"
[features]
default = []
tls = ["dep:hotaru_tls"]
[lib]
name = "hotaru_http"
path = "src/lib.rs"
[dependencies.akari]
version = "0.2.7"
features = ["full"]
[dependencies.async-trait]
version = "0.1.88"
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.hotaru_core]
version = "0.8.0"
[dependencies.hotaru_lib]
version = "0.8.0"
features = [
"url_encoding",
"compression",
]
[dependencies.hotaru_tls]
version = "0.8.0"
optional = true
[dependencies.once_cell]
version = "1.19"
[dependencies.tokio]
version = "1.28"
features = ["full"]
[dev-dependencies.once_cell]
version = "1.19"
[dev-dependencies.tokio-test]
version = "0.4"