Skip to content

Commit

Permalink
Excavator: Manage go module dependencies (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot authored Dec 12, 2023
1 parent 85e564d commit 07121af
Show file tree
Hide file tree
Showing 17 changed files with 209 additions and 546 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ require (
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f
github.com/nmiyake/pkg/gofiles v1.2.0
github.com/palantir/amalgomate v1.35.0
github.com/palantir/godel/v2 v2.95.0
github.com/palantir/godel/v2 v2.96.0
github.com/palantir/okgo v1.42.0
github.com/palantir/pkg/cobracli v1.2.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.4
golang.org/x/text v0.14.0
golang.org/x/tools v0.16.0
golang.org/x/tools v0.16.1
gopkg.in/yaml.v2 v2.4.0
)

Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ github.com/nwaples/rardecode v1.0.0 h1:r7vGuS5akxOnR4JQSkko62RJ1ReCMXxQRPtxsiFMB
github.com/nwaples/rardecode v1.0.0/go.mod h1:5DzqNKiOdpKKBH87u8VlvAnPZMXcGRhxWkRpHbbfGS0=
github.com/palantir/amalgomate v1.35.0 h1:cPkHFcQHXcj6r92v3cOGV3/3L3+Ci3iHh99MRZG0L7Q=
github.com/palantir/amalgomate v1.35.0/go.mod h1:nIJ2u611kps25zPhdcLC4QM4Cs3We8pdG+hF7/hdp+k=
github.com/palantir/godel/v2 v2.95.0 h1:hIw12XbAo33SyFaFhjlJAHKQP8VLWtLjnI3OlFfXFu0=
github.com/palantir/godel/v2 v2.95.0/go.mod h1:t0gYySCtv9GePmFr0rt8SR3uuI681xzl1DUsr+h/gRQ=
github.com/palantir/godel/v2 v2.96.0 h1:HIuQSKnqFurVYqF/VSP8J/uEjxYKy45Bvrb5Vrq4W14=
github.com/palantir/godel/v2 v2.96.0/go.mod h1:yAJ30vkjIQILr49QjZBEAW98GF0KnW0ioS9FIBYUlMA=
github.com/palantir/okgo v1.42.0 h1:93O6KbbQMhyMwDgeDCWHuLBWE0ZUu5xD6mh5QTJdr/s=
github.com/palantir/okgo v1.42.0/go.mod h1:5GBwRvE8OUIVUxrVtjuPCRbBseWADWukkz1adIJ7Koc=
github.com/palantir/pkg v1.1.0 h1:0EhrSUP8oeeh3MUvk7V/UU7WmsN1UiJNTvNj0sN9Cpo=
Expand Down Expand Up @@ -137,8 +137,8 @@ golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGm
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20200225230052-807dcd883420/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM=
golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0=
golang.org/x/tools v0.16.1 h1:TLyB3WofjdOEepBHAU20JdNC1Zbg87elYofWYAY5oZA=
golang.org/x/tools v0.16.1/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
Expand Down

Large diffs are not rendered by default.

34 changes: 27 additions & 7 deletions vendor/golang.org/x/tools/go/packages/doc.go

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

3 changes: 1 addition & 2 deletions vendor/golang.org/x/tools/go/packages/packages.go

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

14 changes: 7 additions & 7 deletions vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

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

21 changes: 21 additions & 0 deletions vendor/golang.org/x/tools/internal/event/keys/util.go

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

31 changes: 15 additions & 16 deletions vendor/golang.org/x/tools/internal/gcimporter/iexport.go

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

Loading

0 comments on commit 07121af

Please sign in to comment.