mpp-br 0.8.1

Rust SDK for the Machine Payments Protocol (MPP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Paid API proxy that gates upstream services behind the 402 protocol.
//!
//! Routes incoming requests to upstream APIs (OpenAI, Anthropic, etc.),
//! requires payment for configured endpoints, and provides service discovery.
//!
//! This module provides the routing/config/discovery layer only — actual HTTP
//! proxying is left to the consumer (e.g., via `reqwest` or `hyper`).

pub mod service;
pub mod services;

pub use service::{Endpoint, PaidEndpoint, ProxyConfig, Route, Service, ServiceBuilder};