mise 2026.6.0

Dev tools, env vars, and tasks in one CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use eyre::Result;

/// Show the companies sponsoring mise and the en.dev project family
#[derive(Debug, clap::Args)]
pub struct Sponsors;

impl Sponsors {
    pub fn run(&self) -> Result<()> {
        miseprintln!(
            "mise and the en.dev project family are sponsored by:\n\n  37signals - https://37signals.com\n\nView all sponsors: https://en.dev/sponsors.html"
        );
        Ok(())
    }
}