ferro-stripe 0.9.0

Stripe payment integration for the Ferro framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Stripe webhook handling — signature verification, typed event structs,
//! synchronous dispatch registry, and queue-path job.

pub mod events;
pub mod queue;
pub mod sync;
pub mod verify;

pub use events::StripeEvent;
pub use events::{
    StripeChargeDisputeCreated, StripeChargeRefunded, StripeCheckoutCompleted,
    StripeCheckoutExpired, StripeConnectAccountUpdated, StripeConnectPaymentSucceeded,
    StripeInvoicePaid, StripePaymentIntentFailed, StripeSubscriptionDeleted,
    StripeSubscriptionUpdated, WebhookEvent,
};
pub use queue::ProcessStripeWebhook;
pub use sync::SyncDispatcher;
pub use verify::verify_webhook;