mirror of
https://github.com/openai/codex.git
synced 2026-05-01 11:52:10 +03:00
31 lines
820 B
TOML
31 lines
820 B
TOML
[package]
|
|
name = "codex-cloud-tasks-client"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "codex_cloud_tasks_client"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["online"]
|
|
online = ["dep:reqwest", "dep:tokio", "dep:codex-backend-client"]
|
|
mock = []
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
codex-cloud-tasks-api = { path = "../cloud-tasks-api" }
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
codex-apply-patch = { path = "../apply-patch" }
|
|
diffy = "0.4.2"
|
|
reqwest = { version = "0.12", features = ["json"], optional = true }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"], optional = true }
|
|
codex-backend-client = { path = "../backend-client", optional = true }
|