mise 2026.9.4

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 jdx.dev open source tools
#[derive(Debug, usage_rs::Args)]
pub(crate) struct Sponsors;

impl Sponsors {
    pub(crate) fn run(&self) -> Result<()> {
        miseprintln!(
            "mise and the jdx.dev open source tools are sponsored by:\n\n  entire.io - https://entire.io\n  Omacom Foundation - https://omarchy.org/patrons/\n\nView all sponsors: https://jdx.dev/sponsors.html"
        );
        Ok(())
    }
}