webhook-dispatcher 0.1.2

In-process webhook delivery engine with retries, DLQ, signatures, rate limits, and pluggable storage.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "webhook-dispatcher"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-process webhook delivery engine with retries, DLQ, signatures, rate limits, and pluggable storage."
readme = "README.md"
keywords = [
    "webhooks",
    "queue",
    "retries",
    "dlq",
    "rust",
]
categories = [
    "web-programming",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/webhook-labs/webhook-dispatcher"

[features]
http = ["dep:reqwest"]
metrics = ["dep:metrics"]
postgres = ["dep:tokio-postgres"]
redis = ["dep:redis"]
tracing = ["dep:tracing"]

[lib]
name = "webhook_dispatcher"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "verify_receiver"
path = "examples/verify_receiver.rs"

[[test]]
name = "dispatcher_test"
path = "tests/dispatcher_test.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.fastrand]
version = "2.0"

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.metrics]
version = "0.24"
optional = true

[dependencies.redis]
version = "0.27"
features = ["tokio-comp"]
optional = true

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.tokio-postgres]
version = "0.7"
features = ["with-serde_json-1"]
optional = true

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.tokio]
version = "1.0"
features = ["full"]