[package]
edition = "2024"
name = "responses-proxy"
version = "0.1.2"
authors = ["CallOrRet <CallOrRet@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenAI Responses API proxy over any Chat Completions provider. Supports HTTP SSE and WebSocket streaming, reasoning/thinking content, tool calling, and can serve as a drop-in Codex CLI backend via DeepSeek or other Chat API-compatible models."
homepage = "https://github.com/CallOrRet/responses-proxy"
documentation = "https://docs.rs/responses-proxy"
readme = "README.md"
keywords = [
"openai",
"responses-api",
"proxy",
"deepseek",
"websocket",
]
categories = [
"api-bindings",
"web-programming::http-server",
]
license = "Apache-2.0"
repository = "https://github.com/CallOrRet/responses-proxy"
[[bin]]
name = "responses-proxy"
path = "src/main.rs"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-tungstenite]
version = "0.26"
[dependencies.tower-http]
version = "0.6"
features = [
"trace",
"cors",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio-test]
version = "0.4"