-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
23 lines (20 loc) · 836 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/glesys/docker-machine-driver-glesys
require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/docker/docker v1.13.2-0.20170601211448-f5ec1e2936dc // indirect
github.com/docker/machine v0.16.2
github.com/glesys/glesys-go/v6 v6.1.0
github.com/google/go-cmp v0.5.9 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.5.0 // indirect
github.com/stretchr/testify v1.3.0
golang.org/x/crypto v0.17.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gotest.tools v2.2.0+incompatible // indirect
)
replace (
github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.5.0
github.com/docker/docker => github.com/docker/engine v1.4.2-0.20190822205725-ed20165a37b4
)
go 1.14