Skip to content

Commit

Permalink
Use new protoc-gen-connect-go location
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Oct 5, 2023
1 parent 13a1503 commit 3bf6ad7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go-tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ TOOLS = golang.org/x/tools:cmd/stringer \
github.com/mailru/easyjson:easyjson \
github.com/dmarkham/enumer \
github.com/planetscale/vtprotobuf:cmd/protoc-gen-go-vtproto \
github.com/bufbuild/connect-go:cmd/protoc-gen-connect-go \
connectrpc.com/connect:cmd/protoc-gen-connect-go \
github.com/jfeliu007/goplantuml:cmd/goplantuml

all: sync
Expand All @@ -34,6 +34,7 @@ build:
for tool in $(TOOLS); do \
module=$$(echo $$tool | cut -d: -f1); \
version=$$(go list -m -f '{{ .Version }}' $$module); \
echo $$module-$$version; \
go get $$module; \
pkg=$$(echo $$tool | tr : /); \
binary=$$(echo $$pkg | awk -F / '{print $$NF}'); \
Expand Down
1 change: 1 addition & 0 deletions go-tools/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module install
go 1.19

require (
connectrpc.com/connect v1.11.1 // indirect
github.com/bufbuild/connect-go v1.10.0 // indirect
github.com/dmarkham/enumer v1.5.8 // indirect
github.com/jfeliu007/goplantuml v1.6.2 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go-tools/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohl
cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo=
connectrpc.com/connect v1.11.1 h1:dqRwblixqkVh+OFBOOL1yIf1jS/yP0MSJLijRj29bFg=
connectrpc.com/connect v1.11.1/go.mod h1:3AGaO6RRGMx5IKFfqbe3hvK1NqLosFNP2BxDYTPmNPo=
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
Expand Down

0 comments on commit 3bf6ad7

Please sign in to comment.