2025-07-11 13:30:11 -04:00
|
|
|
[package]
|
2025-07-30 18:37:00 -07:00
|
|
|
edition = "2024"
|
2025-07-11 13:30:11 -04:00
|
|
|
name = "codex-chatgpt"
|
|
|
|
|
version = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-09-22 18:47:01 +02:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
|
codex-common = { workspace = true, features = ["cli"] }
|
|
|
|
|
codex-core = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2025-09-30 03:10:33 -07:00
|
|
|
codex-git-apply = { path = "../git-apply" }
|
2025-07-11 13:30:11 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-09-22 18:47:01 +02:00
|
|
|
tempfile = { workspace = true }
|