-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
55 lines (52 loc) · 2.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module github.com/aserto-dev/scc-lib
go 1.23.4
require (
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/aserto-dev/errors v0.0.12
github.com/aserto-dev/go-grpc v0.9.2
github.com/friendsofgo/errors v0.9.2
github.com/google/go-github/v66 v66.0.0
github.com/google/wire v0.6.0
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/jpillora/backoff v1.0.0
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.33.0
github.com/shurcooL/githubv4 v0.0.0-20240727222349-48295856cce7
github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466
github.com/stretchr/testify v1.10.0
gitlab.com/gitlab-org/api/client-go v0.117.0
go.uber.org/mock v0.5.0
golang.org/x/crypto v0.31.0
golang.org/x/oauth2 v0.24.0
google.golang.org/grpc v1.68.1
k8s.io/utils v0.0.0-20241210054802-24370beab758
)
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/subcommands v1.2.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/huandu/xstrings v1.5.0 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.7.0 // indirect
golang.org/x/tools v0.26.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241216192217-9240e9c98484 // indirect
google.golang.org/protobuf v1.36.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)