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
23 lines
573 B
TOML
23 lines
573 B
TOML
[package]
|
|
name = "codex-backend-openapi-models"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_backend_openapi_models"
|
|
path = "src/lib.rs"
|
|
|
|
# Important: generated code often violates our workspace lints.
|
|
# Allow unwrap/expect in this crate so the workspace builds cleanly
|
|
# after models are regenerated.
|
|
# Lint overrides are applied in src/lib.rs via crate attributes
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_with = "3"
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["serde_with"]
|