This repository was archived by the owner on Sep 16, 2024. It is now read-only.
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
update_one cannot accept CanonicalPathBuf for deleted files #45
This is an oversight of implementation in #42
See #38 for more context. TL;DR: We use
update_onefor cases when a resource by some path changed or was deleted at all. We can't canonicalize a non-existent path, so we fail to callupdate_onein this case. This API should receive plainPath-like type:Path,PathBufor be generic withAsRef<Path>.