mirror of
https://github.com/openai/codex.git
synced 2026-09-14 11:57:03 +00:00
- Move auth-owned source and tests into `auth` as a standalone workspace crate. - Move `create_client` into `codex-client` and import it directly where needed. Co-authored-by: Codex <noreply@openai.com>
26 lines
687 B
TOML
26 lines
687 B
TOML
[package]
|
|
name = "codex-chatgpt"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
codex-client = { workspace = true }
|
|
codex-connectors = { workspace = true }
|
|
codex-core = { workspace = true }
|
|
codex-utils-cli = { workspace = true }
|
|
codex-utils-cargo-bin = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
codex-git = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|