mirror of
https://github.com/openai/codex.git
synced 2026-02-01 22:47:52 +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
19 lines
447 B
TOML
19 lines
447 B
TOML
[package]
|
|
name = "codex-utils-readiness"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
time = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync", "time"] }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
|
|
|
|
[lints]
|
|
workspace = true
|