Update go.mod, go.sum and also cmd/grail-fuse. The latter change is a little puzzling since the code refers to github.com/hanwen/go-fuse/fs, but the go.mod refers to v1.0.0 of github.com/hanwen/go-fuse which does not have an fs subpackage!? I've updated to use the v2 version which does have that sub package.
A similar puzzle is that version 1.4 of github.com/klauspost/compress reports a checksum mismatch as per this usse. The go.sum has the same checksum for v .8.1 and .8..4 hence the version mismatch. I updated to 1.8.5.
Update go.mod, go.sum and also cmd/grail-fuse. The latter change is a little puzzling since the code refers to github.com/hanwen/go-fuse/fs, but the go.mod refers to v1.0.0 of github.com/hanwen/go-fuse which does
not
have an fs subpackage!? I've updated to use the v2 version which does have that sub package.A similar puzzle is that version 1.4 of
github.com/klauspost/compress
reports a checksum mismatch as per this usse. The go.sum has the same checksum for v .8.1 and .8..4 hence the version mismatch. I updated to 1.8.5.