forked from reviewdog/reviewdog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
76 lines (73 loc) · 3.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module github.com/reviewdog/reviewdog
go 1.21.7
require (
cloud.google.com/go/compute/metadata v0.3.0
cloud.google.com/go/datastore v1.17.0
code.gitea.io/sdk/gitea v0.18.0
contrib.go.opencensus.io/exporter/stackdriver v0.13.12
github.com/bradleyfalzon/ghinstallation/v2 v2.10.0
github.com/golang/protobuf v1.5.4
github.com/google/go-cmp v0.6.0
github.com/google/go-github/v60 v60.0.0
github.com/haya14busa/go-actions-toolkit v0.0.0-20200105081403-ca0307860f01
github.com/haya14busa/secretbox v0.0.0-20180525171038-07c7ecf409f5
github.com/justinas/nosurf v1.1.1
github.com/kylelemons/godebug v1.1.0
github.com/mattn/go-shellwords v1.0.12
github.com/rakyll/statik v0.1.7
github.com/reva2/bitbucket-insights-api v1.0.0
github.com/reviewdog/errorformat v0.0.0-20240311054359-739e471a49b3
github.com/reviewdog/go-bitbucket v0.0.0-20201024094602-708c3f6a7de0
github.com/stretchr/testify v1.9.0
github.com/vvakame/sdlog v1.2.0
github.com/xanzy/go-gitlab v0.105.0
go.opencensus.io v0.24.0
golang.org/x/build v0.0.0-20240529054859-68ac94bf7f67
golang.org/x/oauth2 v0.20.0
golang.org/x/sync v0.7.0
google.golang.org/protobuf v1.34.1
gopkg.in/yaml.v3 v3.0.1
)
require (
cloud.google.com/go v0.112.2 // indirect
cloud.google.com/go/auth v0.3.0 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
cloud.google.com/go/monitoring v1.18.1 // indirect
cloud.google.com/go/trace v1.10.6 // indirect
github.com/aws/aws-sdk-go v1.43.31 // indirect
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/davidmz/go-pageant v1.0.2 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-fed/httpsig v1.1.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
github.com/googleapis/gax-go/v2 v2.12.4 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/prometheus v2.5.0+incompatible // indirect
github.com/stretchr/objx v0.5.2 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
go.opentelemetry.io/otel v1.24.0 // indirect
go.opentelemetry.io/otel/metric v1.24.0 // indirect
go.opentelemetry.io/otel/trace v1.24.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/api v0.178.0 // indirect
google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect
google.golang.org/grpc v1.63.2 // indirect
)