diff options
author | Christian Stewart | 2022-06-25 14:57:38 -0700 |
---|---|---|
committer | rfjakob | 2022-12-21 18:38:11 +0100 |
commit | 7ee4c8e9c3b0fb630b48c5940a7faa220ef5e63a (patch) | |
tree | 876db025c672902e27eb85fdac7d797b84b00390 /go.mod | |
parent | 0ec7ffbfe96887f25feb7fda60b984ea18a42e0f (diff) |
go.mod: fix jacobsa/crypto build on riscv64
Replace dependency jacobsa/crypto with a fork with support for riscv64.
Issue: https://github.com/rfjakob/gocryptfs/issues/666
Upstream PR: https://github.com/jacobsa/crypto/issues/13
Unaddressed on jacobsa/crypto:
https://github.com/jacobsa/crypto/pull/14#issuecomment-1182744229
Signed-off-by: Christian Stewart <christian@paral.in>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -3,18 +3,13 @@ module github.com/rfjakob/gocryptfs/v2 go 1.16 require ( + github.com/aperturerobotics/jacobsa-crypto v1.0.0 github.com/hanwen/go-fuse/v2 v2.1.1-0.20221117175120-915cf5413cde - 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 - github.com/jacobsa/ogletest v0.0.0-20170503003838-80d50a735a11 // indirect - github.com/jacobsa/reqtrace v0.0.0-20150505043853-245c9e0234cb // indirect github.com/pkg/xattr v0.4.3 github.com/rfjakob/eme v1.1.2 github.com/sabhiram/go-gitignore v0.0.0-20201211210132-54b8a0bf510f github.com/spf13/pflag v1.0.5 golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 - golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect - golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2 + golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 ) |