mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
unfortunately tokio-tungstenite doesn't support proxy configuration outbox, while https://github.com/snapview/tokio-tungstenite/pull/370 is in review, we can depend on source code for now.
22 lines
577 B
TOML
22 lines
577 B
TOML
[package]
|
|
name = "codex-backend-client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls-webpki-roots", "rustls-tls-native-roots"] }
|
|
codex-backend-openapi-models = { path = "../codex-backend-openapi-models" }
|
|
codex-protocol = { workspace = true }
|
|
codex-core = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1"
|