Open
Description
Describe the bug
Between workspace restarts, the precision of the 'modified' timestamp on files under /workspace
degrades from nanosecond to second precision.
As of now, cargo
relies on this timestamp to detect dirty dependencies. The effect is that cargo rebuilds the whole project including all dependencies on each restart because it things the present artifacts are outdated.
To Reproduce
- Create new workspace
touch test
stat test
- Stop and restart workspace
stat test
Expected behavior
Workspace should have identical timestamps after restart.