qhook 0.5.0

Lightweight webhook gateway and workflow engine with queue, retry, and signature verification.
Documentation
[package]
name = "qhook"
version = "0.5.0"
edition = "2024"
rust-version = "1.85"
description = "Lightweight webhook gateway and workflow engine with queue, retry, and signature verification."
license = "Apache-2.0"
repository = "https://github.com/totte-dev/qhook"
homepage = "https://totte-dev.github.io/qhook/"
documentation = "https://totte-dev.github.io/qhook/"
readme = "README.md"
keywords = ["webhook", "workflow", "event-driven", "queue", "orchestration"]
categories = ["web-programming", "asynchronous", "network-programming"]
exclude = [
    "tests/",
    "examples/",
    "docs/",
    "scripts/",
    "sdks/",
    ".github/",
    ".claude/",
    ".devcontainer/",
    ".dockerignore",
    "docker-compose*.yaml",
    "Dockerfile",
    "KANBAN.md",
    "CLAUDE.md",
    "CONTRIBUTING.md",
    "SECURITY.md",
    "renovate.json",
    "CHANGELOG.md",
]

[dependencies]
# Web
axum = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "signal", "net", "time"] }
reqwest = { version = "0.13", features = ["json"] }
tower-http = { version = "0.6", features = ["trace", "limit", "compression-gzip"] }

# DB
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "postgres", "chrono"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml_ng = "0.10"

# Crypto
hmac = "0.12"
sha2 = { version = "0.10", features = ["oid"] }
hex = "0.4"
base64 = "0.22"
subtle = "2"
rsa = "0.9"
sha1 = { version = "0.10", features = ["oid"] }
pkcs1 = "0.7"
x509-parser = "0.18"

# CLI
clap = { version = "4", features = ["derive"] }

# Utilities
ulid = "1"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "registry"] }
opentelemetry = { version = "0.31", optional = true }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"], optional = true }
opentelemetry-otlp = { version = "0.31", features = ["http-json"], optional = true }
tracing-opentelemetry = { version = "0.32", optional = true }
regex-lite = "0.1"
ipnet = "2"
jsonschema = "0.45"
governor = "0.10"
anyhow = "1"
thiserror = "2"
croner = "3.0.1"

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "process"] }
reqwest = { version = "0.13", features = ["json"] }
serde_json = "1"
serde_yaml_ng = "0.10"
axum = "0.8"
wiremock = "0.6"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
ulid = "1"
proptest = "1"
insta = { version = "1", features = ["json", "yaml"] }
criterion = { version = "0.8", features = ["html_reports"] }

[[bench]]
name = "benchmarks"
harness = false

[features]
default = []
otel = ["opentelemetry", "opentelemetry_sdk", "opentelemetry-otlp", "tracing-opentelemetry"]