You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/tools/tools.go

33 lines
1.4 KiB

// +build tools
// This file ensures tool dependencies are kept in sync. This is the
// recommended way of doing this according to
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// To install the following tools at the version used by this repo run:
// $ make bootstrap
// or
// $ go generate -tags tools tools/tools.go
package tools
//go:generate go install github.com/bufbuild/buf/cmd/buf
import _ "github.com/bufbuild/buf/cmd/buf"
//go:generate go install github.com/go-swagger/go-swagger/cmd/swagger
import _ "github.com/go-swagger/go-swagger/cmd/swagger"
//go:generate go install github.com/favadi/protoc-go-inject-tag
import _ "github.com/favadi/protoc-go-inject-tag"
// use this instead of google.golang.org/protobuf/cmd/protoc-gen-go since this supports grpc plugin while the other does not.
// see https://github.com/golang/protobuf/releases#v1.4-generated-code and
// https://github.com/protocolbuffers/protobuf-go/releases/tag/v1.20.0#v1.20-grpc-support
//go:generate go install github.com/golang/protobuf/protoc-gen-go
import _ "github.com/golang/protobuf/protoc-gen-go"
//go:generate go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
import _ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway"
//go:generate go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
import _ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger"