mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
27 lines
871 B
TOML
27 lines
871 B
TOML
[package]
|
|
edition = "2024"
|
|
name = "codex-common"
|
|
version = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1", optional = true }
|
|
chrono = { version = "0.4", features = ["serde"], optional = true }
|
|
clap = { version = "4", features = ["derive", "wrap_help"], optional = true }
|
|
codex-core = { path = "../core" }
|
|
reqwest = { version = "0.12", features = ["json"], optional = true }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
serde_json = { version = "1", optional = true }
|
|
tokio = { version = "1", features = ["fs"], optional = true }
|
|
toml = { version = "0.9", optional = true }
|
|
tracing = "0.1.41"
|
|
|
|
[features]
|
|
# Separate feature so that `clap` is not a mandatory dependency.
|
|
cli = ["clap", "serde", "toml"]
|
|
elapsed = []
|
|
sandbox_summary = []
|
|
updates = ["anyhow", "chrono", "reqwest", "serde", "serde_json", "tokio"]
|