2025-11-25 18:06:12 +00:00
|
|
|
[package]
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
2025-12-02 07:57:55 -08:00
|
|
|
name = "codex-client"
|
|
|
|
|
version.workspace = true
|
2025-11-25 18:06:12 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
bytes = { workspace = true }
|
2025-12-02 07:57:55 -08:00
|
|
|
eventsource-stream = { workspace = true }
|
2025-11-25 18:06:12 +00:00
|
|
|
futures = { workspace = true }
|
|
|
|
|
http = { workspace = true }
|
2025-12-12 17:07:17 -08:00
|
|
|
opentelemetry = { workspace = true }
|
2025-12-02 07:57:55 -08:00
|
|
|
rand = { workspace = true }
|
2025-11-25 18:06:12 +00:00
|
|
|
reqwest = { workspace = true, features = ["json", "stream"] }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["macros", "rt", "time", "sync"] }
|
2025-12-02 07:57:55 -08:00
|
|
|
tracing = { workspace = true }
|
2025-12-12 17:07:17 -08:00
|
|
|
tracing-opentelemetry = { workspace = true }
|
2026-01-07 13:21:40 -08:00
|
|
|
zstd = { workspace = true }
|
2025-11-25 18:06:12 +00:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
2025-12-12 17:07:17 -08:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
opentelemetry_sdk = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|