-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
32 lines (29 loc) · 1.04 KB
/
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
module github.com/sacloud/iaas-api-go
go 1.21
require (
github.com/fatih/structs v1.1.0
github.com/fsnotify/fsnotify v1.8.0
github.com/hashicorp/go-multierror v1.1.1
github.com/huandu/xstrings v1.5.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.0
github.com/sacloud/api-client-go v0.2.10
github.com/sacloud/go-http v0.1.9
github.com/sacloud/packages-go v0.0.11
github.com/stretchr/testify v1.10.0
golang.org/x/crypto v0.33.0
)
require (
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
go.uber.org/ratelimit v0.3.1 // indirect
golang.org/x/sys v0.30.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)