aboutsummaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2022-04-08 23:16:59 -0700
committerEric Biggers <ebiggers@google.com>2022-04-08 23:38:01 -0700
commitca7a84b8aea203025acbda193f78ea98946236b5 (patch)
tree2b9e781db960662c570b5b35f840369130fc87a7 /tools.go
parenta224e769a478cc446c05dbfd5eb7e32d31933172 (diff)
Switch to google.golang.org/protobuf/proto
github.com/golang/protobuf/proto has been deprecated in favor of google.golang.org/protobuf/proto, so migrate to the non-deprecated one.
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools.go b/tools.go
index d34637e..404851f 100644
--- a/tools.go
+++ b/tools.go
@@ -5,9 +5,9 @@ package tools
import (
_ "github.com/client9/misspell/cmd/misspell"
- _ "github.com/golang/protobuf/protoc-gen-go"
_ "github.com/wadey/gocovmerge"
_ "golang.org/x/lint/golint"
_ "golang.org/x/tools/cmd/goimports"
+ _ "google.golang.org/protobuf/cmd/protoc-gen-go"
_ "honnef.co/go/tools/cmd/staticcheck"
)