From d3cdb9e3f73314e04061d4d18f654e7e80b0dc18 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 3 May 2026 20:03:42 +0900 Subject: feat(repository): support only/exclude/canonical repo filters Composer's FilterRepository wraps a repository with three knobs: `only` / `exclude` to drop packages by name, and `canonical: false` to relax the repo's authoritative claim on its package names so lower-priority repos can still answer. Mozart was ignoring all three, so first-listed inline / composer-repo entries always shadowed later repos and `only` / `exclude` lists were silently no-ops. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/mozart/src/commands/init.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crates/mozart/src') diff --git a/crates/mozart/src/commands/init.rs b/crates/mozart/src/commands/init.rs index 49176ab..1a6df37 100644 --- a/crates/mozart/src/commands/init.rs +++ b/crates/mozart/src/commands/init.rs @@ -704,6 +704,9 @@ fn parse_repositories(repos: &[String]) -> anyhow::Result> { repo_type, url: Some(url), package: None, + only: None, + exclude: None, + canonical: None, }); } else { // Plain URL @@ -711,6 +714,9 @@ fn parse_repositories(repos: &[String]) -> anyhow::Result> { repo_type: "vcs".to_string(), url: Some(repo.clone()), package: None, + only: None, + exclude: None, + canonical: None, }); } } -- cgit v1.3.1