Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
136 changes: 53 additions & 83 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,17 @@ categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
# Protocol/wire-type crates live in launchapp-dev/animus-protocol, never in
# this repo. `protocol` + `animus-config-protocol` moved out in v0.6.1; all
# animus-protocol git deps are pinned to the SAME tag (v0.1.24) so transitive
# animus-protocol git deps are pinned to the SAME tag (v0.1.25) so transitive
# animus-subject-protocol resolves to one source (no duplicate-crate type
# mismatches). animus-plugin-protocol/runtime remain in-tree pending a
# follow-up move.
animus-plugin-protocol = { path = "crates/animus-plugin-protocol" }
animus-config-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.24" }
animus-provider-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.24" }
animus-session-backend = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.24" }
animus-subject-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.24" }
protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.24", package = "protocol" }
animus-actor = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.25" }
animus-config-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.25" }
animus-provider-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.25" }
animus-session-backend = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.25" }
animus-subject-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.25" }
protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.25", package = "protocol" }
orchestrator-daemon-runtime = { path = "crates/orchestrator-daemon-runtime" }
orchestrator-logging = { path = "crates/orchestrator-logging" }
orchestrator-plugin-host = { path = "crates/orchestrator-plugin-host" }
Expand Down
2 changes: 1 addition & 1 deletion crates/animus-mcp-oauth/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ pub fn resolve_server_url(
// case. So: only propagate the load error when a workflow YAML source
// actually exists; otherwise fall back to the builtin default and continue
// to project config.
let loaded = match load_workflow_config_with_metadata(project_root) {
let loaded = match load_workflow_config_with_metadata(project_root, None) {
Ok(loaded) => loaded,
Err(err) if workflow_yaml_present(project_root) => {
return Err(ServerResolutionError::WorkflowConfig(err.to_string()));
Expand Down
Loading
Loading