1 2 3 4 5 6 7 8
//! mise — polyglot dev tool version manager. use std::path::Path; /// Detected via `mise.toml` or `.mise.toml`. pub(crate) fn detect(dir: &Path) -> bool { dir.join("mise.toml").exists() || dir.join(".mise.toml").exists() }