stackenv 0.1.1

Native, zero-container multi-project dev environment manager. No Docker, no VMs.
1
2
3
4
5
6
7
8
/// Downloads the exact pinned-version asset directly from the tool's own GitHub
/// Releases (same mechanism as every other platform — see PLAN.md section 20; this
/// is the specific path that avoids needing to pick one Linux package manager, since
/// apt/dnf/pacman aren't interchangeable). Not yet implemented; not runtime-verified
/// regardless, since there is no Linux machine in this environment.
pub fn install_pinned(tool: &str, version: &str) -> anyhow::Result<()> {
    anyhow::bail!("install_pinned({tool}, {version}) not yet implemented — see PLAN.md step 25")
}