[package]
edition = "2024"
rust-version = "1.85"
name = "folk-plugin-http"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP plugin for Folk — accepts connections via hyper and dispatches to PHP workers"
homepage = "https://github.com/Folk-Project"
readme = "README.md"
keywords = [
"folk",
"php",
"http",
"plugin",
]
categories = [
"asynchronous",
"web-programming",
]
license = "MIT"
repository = "https://github.com/Folk-Project/folk-plugin-http"
[lib]
name = "folk_plugin_http"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
features = ["serde"]
[dependencies.folk-api]
version = "0.1.1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.humantime-serde]
version = "1"
[dependencies.hyper]
version = "1"
features = ["full"]
[dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
[dependencies.rmp-serde]
version = "1"
[dependencies.rmpv]
version = "1"
features = ["with-serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]