2025-05-06 17:38:56 -07:00
|
|
|
[package]
|
2025-07-30 18:37:00 -07:00
|
|
|
edition = "2024"
|
2025-05-06 17:38:56 -07:00
|
|
|
name = "codex-common"
|
2025-05-07 10:08:06 -07:00
|
|
|
version = { workspace = true }
|
2025-05-06 17:38:56 -07:00
|
|
|
|
2025-05-08 09:46:18 -07:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2025-05-06 17:38:56 -07:00
|
|
|
[dependencies]
|
2025-09-22 18:47:01 +02:00
|
|
|
clap = { workspace = true, features = ["derive", "wrap_help"], optional = true }
|
|
|
|
|
codex-core = { workspace = true }
|
|
|
|
|
codex-protocol = { workspace = true }
|
|
|
|
|
serde = { workspace = true, optional = true }
|
|
|
|
|
toml = { workspace = true, optional = true }
|
2025-05-06 17:38:56 -07:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
# Separate feature so that `clap` is not a mandatory dependency.
|
2025-07-30 18:37:00 -07:00
|
|
|
cli = ["clap", "serde", "toml"]
|
2025-05-16 08:14:50 -07:00
|
|
|
elapsed = []
|
2025-06-24 17:48:51 -07:00
|
|
|
sandbox_summary = []
|