stackenv 0.1.6

Native, zero-container multi-project dev environment manager. No Docker, no VMs.
1
2
3
4
5
6
7
8
9
10
11
12
pub const VFOX_VERSION: &str = "1.0.11";
pub const UV_VERSION: &str = "0.11.7";
pub const CADDY_VERSION: &str = "2.11.4";

pub fn pinned_version(tool: &str) -> Option<&'static str> {
    match tool {
        "vfox" => Some(VFOX_VERSION),
        "uv" => Some(UV_VERSION),
        "caddy" => Some(CADDY_VERSION),
        _ => None,
    }
}