aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vendor/github.com/containers/psgo/go.mod11
-rw-r--r--vendor/github.com/fsouza/go-dockerclient/go.mod42
-rw-r--r--vendor/github.com/hashicorp/errwrap/go.mod1
-rw-r--r--vendor/github.com/hashicorp/go-multierror/go.mod3
-rw-r--r--vendor/github.com/stretchr/testify/go.mod7
-rw-r--r--vendor/golang.org/x/text/go.mod3
-rw-r--r--vendor/gopkg.in/yaml.v2/go.mod5
7 files changed, 72 insertions, 0 deletions
diff --git a/vendor/github.com/containers/psgo/go.mod b/vendor/github.com/containers/psgo/go.mod
new file mode 100644
index 000000000..dd671bbb0
--- /dev/null
+++ b/vendor/github.com/containers/psgo/go.mod
@@ -0,0 +1,11 @@
+module github.com/containers/psgo
+
+go 1.12
+
+require (
+ github.com/opencontainers/runc v0.0.0-20190425234816-dae70e8efea4
+ github.com/pkg/errors v0.0.0-20190227000051-27936f6d90f9
+ github.com/sirupsen/logrus v0.0.0-20190403091019-9b3cdde74fbe
+ github.com/stretchr/testify v1.2.2
+ golang.org/x/sys v0.0.0-20190425145619-16072639606e
+)
diff --git a/vendor/github.com/fsouza/go-dockerclient/go.mod b/vendor/github.com/fsouza/go-dockerclient/go.mod
new file mode 100644
index 000000000..bcf549c21
--- /dev/null
+++ b/vendor/github.com/fsouza/go-dockerclient/go.mod
@@ -0,0 +1,42 @@
+module github.com/fsouza/go-dockerclient
+
+require (
+ github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
+ github.com/Microsoft/go-winio v0.4.11
+ github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5
+ github.com/containerd/continuity v0.0.0-20180814194400-c7c5070e6f6e // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/docker/docker v0.7.3-0.20180827131323-0c5f8d2b9b23
+ github.com/docker/go-connections v0.4.0 // indirect
+ github.com/docker/go-units v0.3.3
+ github.com/docker/libnetwork v0.8.0-dev.2.0.20180608203834-19279f049241 // indirect
+ github.com/fsnotify/fsnotify v1.4.7 // indirect
+ github.com/gogo/protobuf v1.1.1 // indirect
+ github.com/golang/protobuf v1.2.0 // indirect
+ github.com/google/go-cmp v0.2.0
+ github.com/gorilla/context v1.1.1 // indirect
+ github.com/gorilla/mux v1.6.2
+ github.com/hpcloud/tail v1.0.0 // indirect
+ github.com/onsi/ginkgo v1.6.0 // indirect
+ github.com/onsi/gomega v1.4.1 // indirect
+ github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
+ github.com/opencontainers/image-spec v1.0.1 // indirect
+ github.com/opencontainers/runc v0.1.1 // indirect
+ github.com/pkg/errors v0.8.0 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/sirupsen/logrus v1.0.6
+ github.com/stretchr/testify v1.2.2 // indirect
+ github.com/vishvananda/netlink v1.0.0 // indirect
+ github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc // indirect
+ golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac // indirect
+ golang.org/x/net v0.0.0-20180826012351-8a410e7b638d // indirect
+ golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect
+ golang.org/x/sys v0.0.0-20180824143301-4910a1d54f87
+ golang.org/x/text v0.3.0 // indirect
+ gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
+ gopkg.in/fsnotify.v1 v1.4.7 // indirect
+ gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
+ gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
+ gopkg.in/yaml.v2 v2.2.1 // indirect
+ gotest.tools v2.1.0+incompatible // indirect
+)
diff --git a/vendor/github.com/hashicorp/errwrap/go.mod b/vendor/github.com/hashicorp/errwrap/go.mod
new file mode 100644
index 000000000..c9b84022c
--- /dev/null
+++ b/vendor/github.com/hashicorp/errwrap/go.mod
@@ -0,0 +1 @@
+module github.com/hashicorp/errwrap
diff --git a/vendor/github.com/hashicorp/go-multierror/go.mod b/vendor/github.com/hashicorp/go-multierror/go.mod
new file mode 100644
index 000000000..2534331d5
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-multierror/go.mod
@@ -0,0 +1,3 @@
+module github.com/hashicorp/go-multierror
+
+require github.com/hashicorp/errwrap v1.0.0
diff --git a/vendor/github.com/stretchr/testify/go.mod b/vendor/github.com/stretchr/testify/go.mod
new file mode 100644
index 000000000..90e5dbe25
--- /dev/null
+++ b/vendor/github.com/stretchr/testify/go.mod
@@ -0,0 +1,7 @@
+module github.com/stretchr/testify
+
+require (
+ github.com/davecgh/go-spew v1.1.0
+ github.com/pmezard/go-difflib v1.0.0
+ github.com/stretchr/objx v0.1.0
+)
diff --git a/vendor/golang.org/x/text/go.mod b/vendor/golang.org/x/text/go.mod
new file mode 100644
index 000000000..5eb1e8b16
--- /dev/null
+++ b/vendor/golang.org/x/text/go.mod
@@ -0,0 +1,3 @@
+module golang.org/x/text
+
+require golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
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
+)