From 7982be0f5b006a67168ab52cd80a5d5f89d60d89 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 15 Oct 2020 11:06:43 +0200 Subject: go.mod: explicitly vendor gopkg.in/yaml.v3 Needed for subsequent changes that will use yaml parser. Update #2171 --- go.mod | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 47e80a186..fedf3ec5d 100644 --- a/go.mod +++ b/go.mod @@ -5,25 +5,16 @@ go 1.14 require ( cloud.google.com/go/pubsub v1.7.0 cloud.google.com/go/storage v1.10.0 - github.com/BurntSushi/toml v0.3.1 // indirect github.com/Djarvur/go-err113 v0.1.0 // indirect - github.com/coreos/go-etcd v2.0.0+incompatible // indirect - github.com/cpuguy83/go-md2man v1.0.10 // indirect github.com/dvyukov/go-fuzz v0.0.0-20200318091601-be3528f3a813 - github.com/go-lintpack/lintpack v0.5.2 // indirect - github.com/gogo/protobuf v1.3.1 // indirect - github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect - github.com/golang/protobuf v1.4.2 // indirect github.com/golangci/golangci-lint v1.31.0 github.com/golangci/misspell v0.3.5 // indirect github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect github.com/google/go-cmp v0.5.2 - github.com/googleapis/gax-go v1.0.4-0.20191018151119-b443e5a67ec8 // indirect github.com/gostaticanalysis/analysisutil v0.2.1 // indirect github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6 github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect github.com/jstemmer/go-junit-report v0.9.2-0.20191008195320-984a47ca6b0a // indirect - github.com/klauspost/cpuid v1.2.0 // indirect github.com/magiconair/properties v1.8.3 // indirect github.com/matoous/godox v0.0.0-20200801072554-4fb83dc2941e // indirect github.com/mitchellh/mapstructure v1.3.3 // indirect @@ -35,7 +26,6 @@ require ( github.com/stretchr/objx v0.3.0 // indirect github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect - github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect golang.org/x/net v0.0.0-20200904194848-62affa334b73 golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 golang.org/x/sys v0.0.0-20200915084602-288bc346aa39 @@ -43,8 +33,7 @@ require ( google.golang.org/api v0.32.0 google.golang.org/appengine v1.6.6 gopkg.in/ini.v1 v1.61.0 // indirect - gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect + gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 mvdan.cc/gofumpt v0.0.0-20200802201014-ab5a8192947d // indirect mvdan.cc/unparam v0.0.0-20200501210554-b37ab49443f7 // indirect - sourcegraph.com/sqs/pbtypes v1.0.0 // indirect ) -- cgit mrf-deployment