1//! Canonicalise without caching. For one-shot calls where the result is
2//! immediately discarded - avoids polluting the cache with paths that won't be
3//! repeated.
45use std::path::{Path, PathBuf};
67pub fn Fn(Path:&Path) -> std::io::Result<PathBuf> { dunce::canonicalize(Path) }