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
15 lines
346 B
TOML
15 lines
346 B
TOML
[package]
|
|
name = "mcp-types"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
ts-rs = { workspace = true, features = ["serde-json-impl", "no-serde-warnings"] }
|
|
schemars = { workspace = true }
|