pub fn resolve_all(
manifest: &ProjectManifest,
project_root: &Path,
ci_mode: bool,
) -> ResolveReportExpand description
Resolve all plugins declared in a project manifest.
For each plugin:
- Check if already installed with a satisfying version
- Based on source scheme, download or build
- Verify integrity (sha256 for downloads)
- Install to
.ta/plugins/<type>/<name>/
ci_mode: If true, treat optional plugin failures as hard errors.