synapse-proxy 0.2.17

Config-driven reverse-proxy sidecar: path-prefix routing, static header injection, and streaming passthrough.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-export of the shared `synapse-context` crate.
//!
//! The actual `ContextStore`/`ResolvedContext` implementation lives in the
//! leaf crate `synapse-context` so that other crates (e.g. `synapse-mcp`,
//! mounted independently by a downstream broker) can depend on it directly
//! (they need the exact same type, not a fork) without creating a cyclic
//! package dependency on `synapse-proxy`. Re-exporting here keeps every
//! existing `synapse_proxy::context::{ContextStore, ResolvedContext}` import
//! path unchanged.
pub use synapse_context::{ContextStore, ResolvedContext};