From c7f067f27886c1182eba77fee77c6de62c73e52f Mon Sep 17 00:00:00 2001 From: msg555 Date: Sun, 28 Apr 2019 18:20:43 -0400 Subject: [PATCH] Update vendor/ with new required vndr go.mod files Signed-off-by: msg555 --- vendor/github.com/gogo/googleapis/go.mod | 5 +++++ vendor/github.com/gogo/protobuf/go.mod | 3 +++ vendor/github.com/google/uuid/go.mod | 1 + .../konsorten/go-windows-terminal-sequences/go.mod | 1 + vendor/github.com/sirupsen/logrus/go.mod | 10 ++++++++++ vendor/golang.org/x/crypto/go.mod | 3 +++ vendor/golang.org/x/sys/go.mod | 1 + vendor/gopkg.in/yaml.v2/go.mod | 5 +++++ vendor/gotest.tools/go.mod | 8 ++++++++ 9 files changed, 37 insertions(+) create mode 100644 vendor/github.com/gogo/googleapis/go.mod create mode 100644 vendor/github.com/gogo/protobuf/go.mod create mode 100644 vendor/github.com/google/uuid/go.mod create mode 100644 vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod create mode 100644 vendor/github.com/sirupsen/logrus/go.mod create mode 100644 vendor/golang.org/x/crypto/go.mod create mode 100644 vendor/golang.org/x/sys/go.mod create mode 100644 vendor/gopkg.in/yaml.v2/go.mod create mode 100644 vendor/gotest.tools/go.mod diff --git a/vendor/github.com/gogo/googleapis/go.mod b/vendor/github.com/gogo/googleapis/go.mod new file mode 100644 index 000000000..4cdef556e --- /dev/null +++ b/vendor/github.com/gogo/googleapis/go.mod @@ -0,0 +1,5 @@ +module github.com/gogo/googleapis + +go 1.12 + +require github.com/gogo/protobuf v1.2.1 diff --git a/vendor/github.com/gogo/protobuf/go.mod b/vendor/github.com/gogo/protobuf/go.mod new file mode 100644 index 000000000..6f7e29139 --- /dev/null +++ b/vendor/github.com/gogo/protobuf/go.mod @@ -0,0 +1,3 @@ +module github.com/gogo/protobuf + +require github.com/kisielk/errcheck v1.1.0 // indirect diff --git a/vendor/github.com/google/uuid/go.mod b/vendor/github.com/google/uuid/go.mod new file mode 100644 index 000000000..fc84cd79d --- /dev/null +++ b/vendor/github.com/google/uuid/go.mod @@ -0,0 +1 @@ +module github.com/google/uuid diff --git a/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod b/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod new file mode 100644 index 000000000..716c61312 --- /dev/null +++ b/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod @@ -0,0 +1 @@ +module github.com/konsorten/go-windows-terminal-sequences diff --git a/vendor/github.com/sirupsen/logrus/go.mod b/vendor/github.com/sirupsen/logrus/go.mod new file mode 100644 index 000000000..8261a2b3a --- /dev/null +++ b/vendor/github.com/sirupsen/logrus/go.mod @@ -0,0 +1,10 @@ +module github.com/sirupsen/logrus + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/konsorten/go-windows-terminal-sequences v1.0.1 + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/stretchr/objx v0.1.1 // indirect + github.com/stretchr/testify v1.2.2 + golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 +) diff --git a/vendor/golang.org/x/crypto/go.mod b/vendor/golang.org/x/crypto/go.mod new file mode 100644 index 000000000..d2b06cac5 --- /dev/null +++ b/vendor/golang.org/x/crypto/go.mod @@ -0,0 +1,3 @@ +module golang.org/x/crypto + +require golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e diff --git a/vendor/golang.org/x/sys/go.mod b/vendor/golang.org/x/sys/go.mod new file mode 100644 index 000000000..6dfcf51e2 --- /dev/null +++ b/vendor/golang.org/x/sys/go.mod @@ -0,0 +1 @@ +module golang.org/x/sys diff --git a/vendor/gopkg.in/yaml.v2/go.mod b/vendor/gopkg.in/yaml.v2/go.mod new file mode 100644 index 000000000..1934e8769 --- /dev/null +++ b/vendor/gopkg.in/yaml.v2/go.mod @@ -0,0 +1,5 @@ +module "gopkg.in/yaml.v2" + +require ( + "gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405 +) diff --git a/vendor/gotest.tools/go.mod b/vendor/gotest.tools/go.mod new file mode 100644 index 000000000..39d0a1a77 --- /dev/null +++ b/vendor/gotest.tools/go.mod @@ -0,0 +1,8 @@ +module gotest.tools + +require ( + github.com/google/go-cmp v0.2.0 + github.com/pkg/errors v0.8.0 + github.com/spf13/pflag v1.0.3 + golang.org/x/tools v0.0.0-20180810170437-e96c4e24768d +)