stripe_webhook/
lib.rs

1#![allow(clippy::large_enum_variant)]
2#![recursion_limit = "256"]
3//! This crate provides Rust bindings for handling [Stripe webhook events](https://stripe.com/docs/webhooks).
4//!
5//! Please see the associated examples for basic usage with
6//! [axum](https://github.com/tokio-rs/axum), [actix-web](https://github.com/actix/actix-web),
7//! and [rocket](https://rocket.rs/)
8mod error;
9mod generated;
10mod webhook;
11
12pub use error::WebhookError;
13pub use generated::*;
14pub use stripe_shared::event::EventType;
15pub use webhook::{Event, EventData, Webhook};