github.com/bazelbuild/rules_go@v0.47.2-0.20240515105122-e7ddb9ea474e/tools.go (about)

     1  //go:build tools
     2  
     3  package rules_go
     4  
     5  // These imports only exist to keep go.mod entries for packages that are referenced in BUILD files,
     6  // but not in Go code.
     7  
     8  import (
     9  	_ "github.com/gogo/protobuf/proto"
    10  	_ "github.com/golang/mock/mockgen"
    11  	_ "github.com/golang/protobuf/protoc-gen-go"
    12  	_ "golang.org/x/net/context"
    13  	_ "google.golang.org/genproto/protobuf/api"
    14  	_ "google.golang.org/grpc"
    15  	_ "google.golang.org/protobuf/cmd/protoc-gen-go"
    16  	_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
    17  )