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