[package]
edition = "2024"
name = "hotaru_http"
version = "0.8.4"
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"
homepage = "https://hotaru.rs"
readme = "README.md"
keywords = [
"hotaru",
"http",
"http1",
"web",
"framework",
]
categories = [
"network-programming",
"web-programming::http-server",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/Field-of-Dream-Studio/hotaru"
[features]
compression = ["hotaru_lib/compression"]
default = []
io_tokio = ["hotaru_io_tokio/std"]
spawn_send = ["hotaru_core/spawn_send"]
std = ["hotaru_core/std"]
tls = ["dep:hotaru_tls"]
tokio = [
"hotaru_core/std",
"hotaru_core/spawn_send",
"hotaru_io_tokio/std",
]
[lib]
name = "hotaru_http"
path = "src/lib.rs"
[dependencies.akari]
version = "0.2.8"
features = ["full"]
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.hotaru_core]
version = "=0.8.4"
[dependencies.hotaru_io_tokio]
version = "=0.8.4"
[dependencies.hotaru_lib]
version = "=0.8.3"
features = ["url_encoding"]
[dependencies.hotaru_tls]
version = "=0.8.3"
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"