[package]
edition = "2024"
rust-version = "1.95"
name = "shipper-webhook"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Webhook notifications for shipper"
documentation = "https://docs.rs/shipper-webhook"
readme = "README.md"
keywords = [
"webhook",
"notification",
"publish",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/shipper"
[lib]
name = "shipper_webhook"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.hmac]
version = "0.12"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"json",
"rustls",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dev-dependencies.insta]
version = "1.47.2"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tiny_http]
version = "0.12"
[dev-dependencies.tokio]
version = "1.52"
features = [
"rt",
"macros",
]
[lints.clippy]
decimal_bitwise_operands = "warn"
disallowed_fields = "deny"
manual_checked_ops = "warn"
manual_ilog2 = "warn"
manual_take = "warn"
needless_type_cast = "warn"
same_length_and_capacity = "deny"
unnecessary_trailing_comma = "warn"
[lints.rust]
const_item_mutation = "deny"
unexpected_cfgs = "warn"
unknown_lints = "deny"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "deny"
unused_must_use = "deny"