mpp-br 0.8.1

Rust SDK for the Machine Payments Protocol (MPP)
Documentation
# mpp Examples

Standalone, runnable examples demonstrating the mpp HTTP 402 payment flow.

## Examples

| Example | Description |
|---------|-------------|
| [basic]./basic/ | Payment-gated Fortune Teller API (Tempo) |
| [stripe]./stripe/ | Payment-gated Fortune Teller API (Stripe SPT) |
| [axum-extractor]./axum-extractor/ | Axum extractors with per-route pricing (`MppCharge<C>`) |
| [session/multi-fetch]./session/multi-fetch/ | Multiple paid requests over a single payment channel |
| [session/sse]./session/sse/ | Pay-per-token LLM streaming with SSE |

## Running Examples

Each example is a standalone Cargo crate with a server and client binary.

```bash
# Basic example (Tempo)
cd examples/basic
cargo run --bin basic-server   # Terminal 1
cargo run --bin basic-client   # Terminal 2

# Stripe example
cd examples/stripe
STRIPE_SECRET_KEY=sk_test_... cargo run --bin stripe-server   # Terminal 1
cargo run --bin stripe-client                                  # Terminal 2

# Axum extractor (per-route pricing)
cd examples/axum-extractor
cargo run --bin axum-server    # Terminal 1
cargo run --bin axum-client    # Terminal 2

# Session multi-fetch
cd examples/session/multi-fetch
cargo run --bin session-server   # Terminal 1
cargo run --bin session-client   # Terminal 2

# Session SSE streaming
cd examples/session/sse
cargo run --bin sse-server   # Terminal 1
cargo run --bin sse-client   # Terminal 2
```