src/doc/contrib/src/implementation/filesystem.md
Cargo tends to get run on a very wide array of file systems. Different file systems can have a wide range of capabilities, and Cargo should strive to do its best to handle them. Some examples of issues to deal with:
fs::canonicalize function doesn't work on all file systems
(particularly some Windows file systems). If that function is used, there
should be a fallback if it fails. This function will also return \\?\
style paths on Windows, which can have some issues (such as some tools not
supporting them, or having issues with relative paths).fingerprint module has a deeper
discussion of this. One example is that Docker cache layers will erase the
fractional part of the time stamp.