[package]
edition = "2021"
name = "allora-http"
version = "0.0.10"
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"
[[test]]
name = "http_outbound_adapter"
path = "tests/http_outbound_adapter.rs"
[dependencies.allora-core]
version = "0.0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.hyper]
version = "0.14"
features = ["full"]
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.39"
features = [
"rt",
"rt-multi-thread",
"macros",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.8"
features = ["v4"]
[dev-dependencies.rcgen]
version = "0.13"
[dev-dependencies.rustls]
version = "0.23"
features = ["ring"]
[dev-dependencies.rustls-pemfile]
version = "2"
[dev-dependencies.tokio-rustls]
version = "0.26"
[dev-dependencies.tracing-test]
version = "0.2"
features = ["no-env-filter"]