[package]
edition = "2021"
name = "allora-http"
version = "0.0.8"
authors = ["Allora Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP inbound/outbound adapters for Allora integration flows (request/reply & fire-and-forget)."
homepage = "https://github.com/fialucci/allora"
documentation = "https://docs.rs/allora-http"
readme = "README.md"
keywords = [
"http",
"webhook",
"integration",
"client",
"server",
]
categories = [
"web-programming::http-server",
"web-programming::http-client",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/fialucci/allora"
[lib]
name = "allora_http"
path = "src/lib.rs"
[dependencies.allora-core]
version = "0.0.8"
[dependencies.async-trait]
version = "0.1"
[dependencies.hyper]
version = "0.14"
features = ["full"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.39"
features = [
"rt",
"rt-multi-thread",
"macros",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.8"
features = ["v4"]