Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Nov 17, 2021
1 parent b40ee88 commit cb866bd
Show file tree
Hide file tree
Showing 7 changed files with 107 additions and 93 deletions.
33 changes: 21 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,21 +1,30 @@
module github.com/gunk/gunk

go 1.16
go 1.17

require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20210912230133-d1bdfacee922 // indirect
github.com/emicklei/proto v1.9.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/emicklei/proto v1.9.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.6.0
github.com/gunk/opt v0.1.0
github.com/karelbilek/dirchanges v0.0.0-20210218071031-880a92f1a313
github.com/kenshaw/ini v0.5.1
github.com/kenshaw/snaker v0.1.3
github.com/rogpeppe/go-internal v1.8.0
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
golang.org/x/tools v0.1.5
google.golang.org/genproto v0.0.0-20210714021259-044028024a4f
github.com/kenshaw/snaker v0.1.6
github.com/rogpeppe/go-internal v1.8.1-0.20211023094830-115ce09fd6b4
golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c
golang.org/x/tools v0.1.8-0.20211102182255-bb4add04ddef
google.golang.org/genproto v0.0.0-20211116182654-e63d96a377c4
google.golang.org/protobuf v1.27.1
gopkg.in/alecthomas/kingpin.v2 v2.2.6
mvdan.cc/gofumpt v0.1.1
mvdan.cc/gofumpt v0.2.0
)

require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/errgo.v2 v2.1.0 // indirect
)
82 changes: 44 additions & 38 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import (
"fmt"
"os"

"github.com/alecthomas/kingpin"
"github.com/gunk/gunk/convert"
"github.com/gunk/gunk/dump"
"github.com/gunk/gunk/format"
"github.com/gunk/gunk/generate"
"github.com/gunk/gunk/generate/downloader"
"github.com/gunk/gunk/log"
"github.com/gunk/gunk/vetconfig"
kingpin "gopkg.in/alecthomas/kingpin.v2"
)

var (
Expand Down
35 changes: 15 additions & 20 deletions testdata/generate/all.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 16 additions & 8 deletions testdata/generate/all.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions testdata/generate/all_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 6 additions & 10 deletions testdata/generate/imported/all.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cb866bd

Please sign in to comment.