mirror of
https://github.com/openai/codex.git
synced 2026-09-11 20:36:49 +00:00
## What changed - Add an embedded `defaults.toml` and always install it as the lowest-precedence configuration layer when no packaged-defaults path is supplied. - Keep packaged defaults out of config RPC layer and origin metadata. - Report a user setting as overridden only when the effective layer has higher precedence, so clearing a setting can fall back to its packaged default without a false override. ## Testing - Cover loading the packaged layer when other configuration files are absent. - Cover config RPC filtering and clearing a user value that falls back to a packaged default. GitOrigin-RevId: c1c0e1e681e4ac1be2602550972533443c5df51b
8 lines
153 B
Python
8 lines
153 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "config",
|
|
compile_data = ["defaults.toml"],
|
|
crate_name = "codex_config",
|
|
)
|