mockforge-proxy 0.3.142

Proxy functionality for forwarding requests to upstream services
Documentation
[package]
name = "mockforge-proxy"
description = "Proxy functionality for forwarding requests to upstream services"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme = "../../README.md"
keywords = ["mock", "proxy", "api", "testing"]
categories = ["development-tools::testing"]

[features]
schema = ["dep:schemars"]

[dependencies]
schemars = { version = "0.8", optional = true }
mockforge-core = { version = "0.3.142", path = "../mockforge-core" }
axum = { workspace = true }
# `server::ProxyServer` (moved from `mockforge-http` under #555 phase 1)
# needs `tokio::sync::RwLock` + `#[tokio::test]` in its unit tests; `http`
# crate's `HeaderName` / `HeaderValue` reach the middleware directly
# rather than through axum's re-export so the qualified path keeps
# working post-move.
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread", "time"] }
http = "1.3"
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }