forked from google/zoekt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
48 lines (46 loc) · 2.07 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
module github.com/google/zoekt
require (
cloud.google.com/go v0.82.0
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20210707164159-52430bf6b52c // indirect
github.com/RoaringBitmap/roaring v0.9.4
github.com/andygrunwald/go-gerrit v0.0.0-20191101112536-3f5e365ccf57
github.com/bits-and-blooms/bitset v1.2.1 // indirect
github.com/bmatcuk/doublestar v1.3.4
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/fsnotify/fsnotify v1.4.9
github.com/gfleury/go-bitbucket-v1 v0.0.0-20200312180434-e5170e3280fb
github.com/go-enry/go-enry/v2 v2.8.0
github.com/go-git/go-git/v5 v5.4.2
github.com/gobwas/glob v0.2.3
github.com/google/go-cmp v0.5.5
github.com/google/go-github/v27 v27.0.6
github.com/google/slothfs v0.0.0-20190417171004-6b42407d9230
github.com/grafana/regexp v0.0.0-20220202152701-6a046c4caf32
github.com/hashicorp/go-hclog v0.12.1 // indirect
github.com/hashicorp/go-retryablehttp v0.6.4
github.com/keegancsmith/rpc v1.1.0
github.com/keegancsmith/tmpfriend v0.0.0-20180423180255-86e88902a513
github.com/kevinburke/ssh_config v1.1.0 // indirect
github.com/kylelemons/godebug v1.1.0
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
github.com/opentracing/opentracing-go v1.2.0
github.com/prometheus/client_golang v1.5.1
github.com/prometheus/procfs v0.0.10 // indirect
github.com/rs/xid v1.3.0
github.com/sergi/go-diff v1.2.0 // indirect
github.com/sourcegraph/go-ctags v0.0.0-20220210084826-96f4236f0a78
github.com/uber/jaeger-client-go v2.25.0+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible
github.com/xanzy/go-gitlab v0.28.0
go.uber.org/atomic v1.9.0
go.uber.org/automaxprocs v1.3.0
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
humungus.tedunangst.com/r/gerc v0.1.2
)
go 1.13