-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
33 lines (28 loc) · 1015 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
31
32
33
module github.com/ionos-cloud/docker-machine-driver
go 1.22.0
toolchain go1.23.2
require (
github.com/golang/mock v1.6.0
github.com/hashicorp/go-multierror v1.1.1
github.com/ionos-cloud/sdk-go/v6 v6.1.11
github.com/rancher/machine v0.15.0-rancher119
github.com/stretchr/testify v1.9.0
)
require (
github.com/tidwall/gjson v1.17.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/docker/docker v20.10.27+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/oauth2 v0.22.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.23.0 // indirect
)