omnihook 0.1.2

Webhook client with payload builders for Slack, Discord, Telegram and generic webhooks with optional HMAC signing and idempotency key support.
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 = "omnihook"
version = "0.1.2"
authors = ["Serge Kovbasiuk <isserge@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Webhook client with payload builders for Slack, Discord, Telegram and generic webhooks with optional HMAC signing and idempotency key support."
readme = "README.md"
keywords = [
    "webhooks",
    "slack",
    "discord",
    "telegram",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/isSerge/omnihook"

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

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

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

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

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

[dependencies.hex]
version = "0.4.3"

[dependencies.hmac]
version = "0.13.0"

[dependencies.pulldown-cmark]
version = "0.13.4"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "stream",
]

[dependencies.reqwest-middleware]
version = "0.4"
features = ["json"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.11"

[dependencies.thiserror]
version = "1.0"

[dependencies.url]
version = "2.5"
features = ["serde"]

[dev-dependencies.dotenvy]
version = "0.15"

[dev-dependencies.mockito]
version = "1.7.2"

[dev-dependencies.tokio]
version = "1.52.3"
features = [
    "macros",
    "rt-multi-thread",
]