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
16 lines
248 B
TOML
16 lines
248 B
TOML
[package]
|
|
name = "codex-process-hardening"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_process_hardening"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
libc = { workspace = true }
|