cmd/packserver: update to Go 1.19, update dependencies

This commit is contained in:
Laurence Withers 2022-11-26 10:14:25 +00:00
commit e0ae6bb4b6
2 changed files with 19 additions and 12 deletions

View file

@ -1,8 +1,15 @@
module src.lwithers.me.uk/go/htpack/cmd/packserver
go 1.13
go 1.19
require (
github.com/spf13/cobra v1.5.0
src.lwithers.me.uk/go/htpack v1.3.1
github.com/spf13/cobra v1.6.1
src.lwithers.me.uk/go/htpack v1.3.2
)
require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.2.0 // indirect
)