From 8031fe3515f8212a8658f9a6d6a914be5c9b8be8 Mon Sep 17 00:00:00 2001 From: Daniel Lublin Date: Tue, 23 Apr 2024 15:01:35 +0200 Subject: [PATCH] test: bump deps --- Makefile | 2 +- go.mod | 10 +++++----- go.sum | 20 ++++++++++---------- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 4a1fe80..303f354 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ $(X25519OBJS): x25519/app_proto.h # .PHONY to let go-build handle deps and rebuilds .PHONY: testx25519 -testx25519: x25519/app.bin +testx25519: cp -af x25519/app.bin ./cmd/testx25519/ go build ./cmd/testx25519 diff --git a/go.mod b/go.mod index 54de6f5..d71b96c 100644 --- a/go.mod +++ b/go.mod @@ -3,14 +3,14 @@ module github.com/quite/tkey-device-x25519 go 1.20 require ( - github.com/quite/tkeyx25519 v0.0.1 + github.com/quite/tkeyx25519 v0.0.2 github.com/spf13/pflag v1.0.5 - github.com/tillitis/tkeyclient v0.0.8 + github.com/tillitis/tkeyclient v1.0.0 ) require ( github.com/creack/goselect v0.1.2 // indirect - go.bug.st/serial v1.6.1 // indirect - golang.org/x/crypto v0.16.0 // indirect - golang.org/x/sys v0.15.0 // indirect + go.bug.st/serial v1.6.2 // indirect + golang.org/x/crypto v0.22.0 // indirect + golang.org/x/sys v0.19.0 // indirect ) diff --git a/go.sum b/go.sum index 263c76d..da80e7b 100644 --- a/go.sum +++ b/go.sum @@ -2,17 +2,17 @@ github.com/creack/goselect v0.1.2 h1:2DNy14+JPjRBgPzAd1thbQp4BSIihxcBf0IXhQXDRa0 github.com/creack/goselect v0.1.2/go.mod h1:a/NhLweNvqIYMuxcMOuWY516Cimucms3DglDzQP3hKY= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/quite/tkeyx25519 v0.0.1 h1:06Bggr+E8WJM9Vr3KsvlWGMuHDn7TlGg7QEMYuP5/KA= -github.com/quite/tkeyx25519 v0.0.1/go.mod h1:dNIA8JvczoWZSSP/DbZGnW9dPKEa4ohYwkdUw3vRDTs= +github.com/quite/tkeyx25519 v0.0.2 h1:dds9fwFVyLHzaPTcyU9kWf/ropx4V4pZUwguuozEp9o= +github.com/quite/tkeyx25519 v0.0.2/go.mod h1:Iuo0t8hyb5T16hB9f7V6WmcSdDTxgITTN/423hgAmyc= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= -github.com/tillitis/tkeyclient v0.0.8 h1:ZECNCkHmcxx5BlEdyhjMPeBX4/ZiuEov+nOAiMB3cOQ= -github.com/tillitis/tkeyclient v0.0.8/go.mod h1:NPZaaOyroiprK4qNSADHY2pc7TAYDoZ3JKRIFhUMvHE= -go.bug.st/serial v1.6.1 h1:VSSWmUxlj1T/YlRo2J104Zv3wJFrjHIl/T3NeruWAHY= -go.bug.st/serial v1.6.1/go.mod h1:UABfsluHAiaNI+La2iESysd9Vetq7VRdpxvjx7CmmOE= -golang.org/x/crypto v0.16.0 h1:mMMrFzRSCF0GvB7Ne27XVtVAaXLrPmgPC7/v0tkwHaY= -golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +github.com/tillitis/tkeyclient v1.0.0 h1:Ox9mEwxon9SRUconYZXrcqrm0YxpMCblMZLPXzPtKro= +github.com/tillitis/tkeyclient v1.0.0/go.mod h1:dg2fyhB6szX7n1QIf19WcWtl/ueBPQYVlTCjY/kG5pM= +go.bug.st/serial v1.6.2 h1:kn9LRX3sdm+WxWKufMlIRndwGfPWsH1/9lCWXQCasq8= +go.bug.st/serial v1.6.2/go.mod h1:UABfsluHAiaNI+La2iESysd9Vetq7VRdpxvjx7CmmOE= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=