mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
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>
18 lines
306 B
TOML
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 }
|