folk-plugin-http 0.1.1

HTTP plugin for Folk — accepts connections via hyper and dispatches to PHP workers
Documentation
[package]
name = "folk-plugin-http"
version = "0.1.1"
edition = "2024"
rust-version = "1.85"
license = "MIT"
description = "HTTP plugin for Folk — accepts connections via hyper and dispatches to PHP workers"
repository = "https://github.com/Folk-Project/folk-plugin-http"
homepage = "https://github.com/Folk-Project"
keywords = ["folk", "php", "http", "plugin"]
categories = ["asynchronous", "web-programming"]

[dependencies]
folk-api = "0.1.1"
# folk-api = "0.1.1"

tokio = { version = "1", features = ["full"] }
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
bytes = { version = "1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmp-serde = "1"
rmpv = { version = "1", features = ["with-serde"] }
async-trait = "0.1"
anyhow = "1"
tracing = "0.1"
humantime-serde = "1"

[dev-dependencies]
tokio = { version = "1", features = ["full"] }