pub fn dispatch(name: &str, args: &[String]) -> Result<ExitCode, String>Expand description
Resolve name and exec its real binary with args. Resolution order:
- Per-directory: the nearest
vanta.lockwalking up from the current directory — this is what gives project-local tool versions (like mise). - Fallback: the global active generation.
On unix exec replaces the process; it only returns on failure.