diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-04 15:17:20 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-04 15:17:20 +0100 |
commit | 39bfdffd0cc5f278720e3198c7cac257d9831e4e (patch) | |
tree | e5a7a313be162c0a6525a153a4ce62e884a53d1e /go.mod | |
parent | 5b3826f5de82eb3dcb43bcb85261cd56e298668a (diff) | |
download | fsverify-39bfdffd0cc5f278720e3198c7cac257d9831e4e.tar.gz fsverify-39bfdffd0cc5f278720e3198c7cac257d9831e4e.tar.bz2 |
bump golang.org/x/crypto to 0.17.0
Diffstat (limited to '')
-rw-r--r-- | go.mod | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -3,12 +3,15 @@ module github.com/axtloss/fsverify go 1.21.6 require ( + github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267 + github.com/spf13/cobra v1.8.0 + github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07 + go.etcd.io/bbolt v1.3.8 +) + +require ( github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267 // indirect - github.com/spf13/cobra v1.8.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07 // indirect - go.etcd.io/bbolt v1.3.8 // indirect - golang.org/x/crypto v0.12.0 // indirect - golang.org/x/sys v0.11.0 // indirect + golang.org/x/crypto v0.17.0 // indirect + golang.org/x/sys v0.15.0 // indirect ) |