[package]
edition = "2024"
rust-version = "1.85"
name = "webhookloader"
version = "0.1.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trigger HTTP webhooks by name from a TOML config. Small async library with retries and automatic Content-Type detection."
documentation = "https://docs.rs/webhookloader"
readme = "README.md"
keywords = [
"webhook",
"http",
"reqwest",
"async",
"config",
]
license = "MIT"
[lib]
name = "webhookloader"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.config]
version = "0.15.13"
[dependencies.rand]
version = "0.9.1"
[dependencies.reqwest]
version = "0.12.22"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
features = ["default"]
[dependencies.tokio]
version = "1.46.1"
features = [
"rt-multi-thread",
"time",
]
[dependencies.toml]
version = "0.9.2"