-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
38 lines (35 loc) · 1.26 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
33
34
35
36
37
38
module github.com/Cray-HPE/hms-sls/v2
go 1.19
require (
github.com/Cray-HPE/hms-base/v2 v2.0.1
github.com/Cray-HPE/hms-s3 v1.9.2
github.com/Cray-HPE/hms-xname v1.3.0
github.com/aws/aws-sdk-go v1.32.4
github.com/golang-migrate/migrate/v4 v4.13.0
github.com/gorilla/mux v1.7.4
github.com/hashicorp/go-retryablehttp v0.7.1
github.com/lib/pq v1.3.0
github.com/namsral/flag v1.7.4-pre
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.1
github.com/victorspringer/http-cache v0.0.0-20221205073845-df6d061f29cb
go.uber.org/zap v1.15.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
go.uber.org/atomic v1.6.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.4.0 // indirect
golang.org/x/tools v0.1.12 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)