forked from linode/docker-machine-driver-linode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (27 loc) · 996 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
24
25
26
27
28
29
30
module github.com/linode/docker-machine-driver-linode
go 1.18
require (
github.com/docker/machine v0.16.2
github.com/google/go-cmp v0.6.0
github.com/linode/linodego v1.28.0
github.com/stretchr/testify v1.8.4
golang.org/x/oauth2 v0.17.0
)
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/docker v20.10.27+incompatible // indirect
github.com/go-resty/resty/v2 v2.11.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)