mirror of
https://github.com/openai/codex.git
synced 2026-05-01 18:06:47 +00:00
Summary: - Add a checked-in codex-core public API listing generated by cargo-public-api. - Add scripts/regen-public-api.sh with an embedded crate list, auto-install for cargo-public-api 0.51.0, pinned nightly, and --check mode. - Add Rust CI jobs on the codex Linux x64 runner pool to verify the listing stays up to date. Testing: - bash -n scripts/regen-public-api.sh - just regen-public-api --check - yq '.' .github/workflows/rust-ci.yml .github/workflows/rust-ci-full.yml - git diff --check
18 lines
490 B
TOML
18 lines
490 B
TOML
[package]
|
|
name = "codex-thread-manager-sample"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
# Keep this sample limited to a single Codex workspace dependency.
|
|
# Add new Codex surface area to `codex-core-api` instead of depending on
|
|
# additional `codex-*` crates here.
|
|
codex-core-api = { workspace = true }
|
|
tracing = { workspace = true }
|