diff options
author | Jakob Unterwurzacher | 2021-04-24 10:16:45 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-04-24 12:23:17 +0200 |
commit | e6787379679a6062b38fe19eafc1cf61a1d2551c (patch) | |
tree | 50359c74119e5c529252c4e74be36a4f4b59dbbe /go.mod | |
parent | 5cb1e55714aa92a848c0fb5fc3fa7b91625210fe (diff) |
go mod: switch back to mainline go-fuse
Change was merged:
https://github.com/hanwen/go-fuse/commit/a90e1f463c3f172a7690a6449fe5955a180dfec3
Done using:
$ go mod edit -dropreplace github.com/hanwen/go-fuse/v2
$ go get github.com/hanwen/go-fuse/v2@master
go: downloading github.com/hanwen/go-fuse/v2 v2.1.1-0.20210423170155-a90e1f463c3f
go get: upgraded github.com/hanwen/go-fuse/v2 v2.0.4-0.20210125162859-8e0bbdb16cb7 => v2.1.1-0.20210423170155-a90e1f463c3f
Related: https://github.com/rfjakob/gocryptfs/issues/549
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -3,7 +3,7 @@ module github.com/rfjakob/gocryptfs go 1.13 require ( - github.com/hanwen/go-fuse/v2 v2.0.4-0.20210125162859-8e0bbdb16cb7 + github.com/hanwen/go-fuse/v2 v2.1.1-0.20210423170155-a90e1f463c3f github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115 github.com/jacobsa/oglematchers v0.0.0-20150720000706-141901ea67cd // indirect github.com/jacobsa/oglemock v0.0.0-20150831005832-e94d794d06ff // indirect @@ -17,5 +17,3 @@ require ( golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 ) - -replace github.com/hanwen/go-fuse/v2 => github.com/rfjakob/go-fuse/v2 v2.0.4-0.20210327175606-13a195d20342 |