diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-04 13:35:03 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-04 13:35:03 +0100 |
commit | 71cc54810fdb51e428b83a37ff89d54a6cc3d8c8 (patch) | |
tree | 04d13d72b6afedaaa06478d9d86fb74a62534f88 /go.mod | |
parent | 09f7f5fe7b55a6ab2e2326aa7ff27cf7f7bc05ba (diff) | |
download | fsverify-71cc54810fdb51e428b83a37ff89d54a6cc3d8c8.tar.gz fsverify-71cc54810fdb51e428b83a37ff89d54a6cc3d8c8.tar.bz2 |
add minisign signature verification
Diffstat (limited to '')
-rw-r--r-- | go.mod | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,8 +4,11 @@ go 1.21.6 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/sys v0.4.0 // indirect + golang.org/x/crypto v0.12.0 // indirect + golang.org/x/sys v0.11.0 // indirect ) |