tideway 0.7.17

A batteries-included Rust web framework built on Axum for building SaaS applications quickly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Webhook handling utilities.
//!
//! Provides signature verification, idempotency checking, and event handling
//! for incoming webhooks from external services.

pub mod handler;
pub mod idempotency;
pub mod verification;

pub use handler::{WebhookEvent, WebhookHandler};
pub use idempotency::IdempotencyStore;
pub use verification::WebhookVerifier;