From 2b1625ef5ce7fdefefe4a0d8751cdc17cb1f9cda Mon Sep 17 00:00:00 2001 From: Nick Ruest <127058086+nicholas-ruest@users.noreply.github.com> Date: Mon, 27 Jul 2026 15:43:40 +0000 Subject: [PATCH] Fix llm-config-manager dependency name to llm-config-core The workspace dependency declared `llm-config-manager`, a crate name that config-manager has never published. The repo's crates are `llm-config-core` plus `llm-config-{api,cli,cache,storage,crypto,...}`; `config-manager` is the repository name, not a crate name. Implements the shield portion of agentics-enforcement/plans/adr/ADR-015 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 031da04..ff1433e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ repository = "https://github.com/llm-shield/llm-shield-rs" [workspace.dependencies] # LLM-Dev-Ops upstream dependencies (Phase 2A - compile-time only) llm-policy-engine = { git = "https://github.com/LLM-Dev-Ops/policy-engine", branch = "main" } -llm-config-manager = { git = "https://github.com/LLM-Dev-Ops/config-manager", branch = "main" } +llm-config-core = { git = "https://github.com/LLM-Dev-Ops/config-manager", branch = "main" } # LLM-Dev-Ops Infra dependencies (Phase 2B - provider layer) infra-errors = { git = "https://github.com/LLM-Dev-Ops/infra", branch = "main" }