You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(sys): work around missing UNC path support in MSVC
`std::fs::canonicalize` always converts paths to UNC on Windows.
However, a plenty of software lacks support for this naming convention,
notably Microsoft's C/C++ Compiler.
`dunce::canonicalize` is a commonly used solution that picks the most
compatible path representation on Windows and calls `fs::canonicalize`
on any other platform.
0 commit comments