Files
codex/codex-rs/agent-roles/Cargo.toml
rhan-oai fb9311db5c Extract agent role loading into a dedicated crate (#40487)
## What changed

- Add `codex-agent-roles` for agent role configuration types, parsing,
  discovery, validation, and layered loading.
- Update `codex-core` to consume the new crate's public role configuration and
  parsing APIs.

GitOrigin-RevId: 5a963a219a581b2848dae6fd071aa31a0b5ff22c
2026-08-24 22:40:35 +00:00

24 lines
549 B
TOML

[package]
edition.workspace = true
license.workspace = true
name = "codex-agent-roles"
version.workspace = true
[lib]
doctest = false
name = "codex_agent_roles"
path = "src/lib.rs"
test = false
[lints]
workspace = true
[dependencies]
codex-config = { workspace = true }
codex-file-system = { workspace = true }
codex-utils-absolute-path = { workspace = true }
codex-utils-path-uri = { workspace = true }
serde = { workspace = true, features = ["derive"] }
toml = { workspace = true, features = ["preserve_order"] }
tracing = { workspace = true }