Files
codex/codex-rs/tool-spec/Cargo.toml
starr-openai 4314d96e22 Extract tool schema types into codex-tool-spec
Move JsonSchema, AdditionalProperties, and schema parsing/sanitization out of codex-core into a new leaf crate, then re-export them from tools::spec to keep existing callsites stable. This creates the first real crate boundary under the tool-spec area, although the measured warm rebuild for this narrow slice is still flat because codex-core remains a dependent.

Co-authored-by: Codex <noreply@openai.com>
2026-03-19 16:01:14 -07:00

18 lines
306 B
TOML

[package]
edition.workspace = true
license.workspace = true
name = "codex-tool-spec"
version.workspace = true
[lib]
doctest = false
name = "codex_tool_spec"
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }