-
Notifications
You must be signed in to change notification settings - Fork 24
/
go.mod
30 lines (25 loc) · 905 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.22
toolchain go1.22.2
// This replacement is necessary to support Docker versions > v20.x.x
// which provide critical security fixes.
replace github.com/docker/machine => gitlab.com/gitlab-org/ci-cd/docker-machine v0.16.2-gitlab.27
require (
github.com/docker/machine v0.16.2
github.com/google/go-cmp v0.6.0
github.com/linode/linodego v1.43.0
github.com/stretchr/testify v1.9.0
golang.org/x/oauth2 v0.24.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-resty/resty/v2 v2.15.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/term v0.25.0 // indirect
golang.org/x/text v0.20.0 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)