- Renamed directory: codex-backend-openapi-models -> llmx-backend-openapi-models
- Updated all Cargo.toml files:
- Package names: codex-* -> llmx-*
- Library names: codex_* -> llmx_*
- Workspace dependencies updated
- Renamed Rust source files:
- codex*.rs -> llmx*.rs (all modules)
- codex_conversation -> llmx_conversation
- codex_delegate -> llmx_delegate
- codex_message_processor -> llmx_message_processor
- codex_tool_* -> llmx_tool_*
- Updated all Rust imports:
- use codex_* -> use llmx_*
- mod codex* -> mod llmx*
- Updated environment variables in code:
- CODEX_HOME -> LLMX_HOME
- .codex -> .llmx paths
- Updated protocol crate lib name for proper linking
Note: Some compilation errors remain (type inference issues) but all
renaming is complete. Will fix compilation in next phase.
🤖 Generated with Claude Code
22 lines
544 B
TOML
22 lines
544 B
TOML
[package]
|
|
name = "llmx-backend-openapi-models"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "llmx_backend_openapi_models"
|
|
path = "src/lib.rs"
|
|
|
|
# Important: generated code often violates our workspace lints.
|
|
# Allow unwrap/expect in this crate so the workspace builds cleanly
|
|
# after models are regenerated.
|
|
# Lint overrides are applied in src/lib.rs via crate attributes
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_with = "3"
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["serde_with"]
|