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