-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
29 lines (25 loc) · 817 Bytes
/
Copy pathgo.mod
File metadata and controls
29 lines (25 loc) · 817 Bytes
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
module github.com/solarwinds/swo-client-go
go 1.23
require (
github.com/Khan/genqlient v0.8.1
github.com/cenkalti/backoff/v5 v5.0.3
github.com/google/uuid v1.6.0
github.com/sirupsen/logrus v1.9.3
)
require (
github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
github.com/kr/pretty v0.3.0 // indirect
golang.org/x/sync v0.8.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/alexflint/go-arg v1.5.1 // indirect
github.com/alexflint/go-scalar v1.2.0 // indirect
github.com/google/go-cmp v0.7.0
github.com/vektah/gqlparser/v2 v2.5.19 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/tools v0.24.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)