mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
- add GitHub workflow running cargo-deny on push/PR - document cargo-deny allowlist with workspace-dep notes and advisory ignores - align workspace crates to inherit version/edition/license for consistent checks
24 lines
589 B
TOML
24 lines
589 B
TOML
[package]
|
|
name = "core_test_support"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
assert_cmd = { workspace = true }
|
|
base64 = { workspace = true }
|
|
codex-core = { workspace = true }
|
|
codex-protocol = { workspace = true }
|
|
notify = { workspace = true }
|
|
regex-lite = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["time"] }
|
|
walkdir = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
shlex = { workspace = true }
|