forked from MarcelRaschke/sourcegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
232 lines (219 loc) · 11.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
module github.com/sourcegraph/sourcegraph
go 1.14
require (
cloud.google.com/go v0.56.0
cloud.google.com/go/bigquery v1.6.0 // indirect
cloud.google.com/go/pubsub v1.3.1
cloud.google.com/go/storage v1.6.0
github.com/Masterminds/semver v1.5.0
github.com/NYTimes/gziphandler v1.1.1
github.com/OneOfOne/xxhash v1.2.8 // indirect
github.com/RoaringBitmap/roaring v0.5.1
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
github.com/aphistic/sweet-junit v0.2.0 // indirect
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
github.com/avelino/slugify v0.0.0-20180501145920-855f152bd774
github.com/aws/aws-sdk-go v1.29.15
github.com/aws/aws-sdk-go-v2 v0.20.0
github.com/beevik/etree v1.1.0
github.com/boj/redistore v0.0.0-20180917114910-cd5dcc76aeff
github.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894 // indirect
github.com/cockroachdb/errors v1.8.1
github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2
github.com/containerd/containerd v1.4.0 // indirect
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/coreos/go-semver v0.3.0
github.com/crewjam/saml v0.4.1
github.com/dave/jennifer v1.4.1 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/daviddengcn/go-colortext v1.0.0
github.com/dghubble/gologin v2.2.0+incompatible
github.com/dgraph-io/ristretto v0.0.3
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/dineshappavoo/basex v0.0.0-20170425072625-481a6f6dc663
github.com/dnaeon/go-vcr v1.0.1
github.com/efritz/glock v0.0.0-20181228234553-f184d69dff2c
github.com/efritz/go-genlib v0.0.0-20200616012750-c21aae2e13ac // indirect
github.com/efritz/go-mockgen v0.0.0-20200524175724-37e2c732ee40
github.com/efritz/pentimento v0.0.0-20190429011147-ade47d831101
github.com/ericchiang/k8s v1.2.0
github.com/fatih/astrewrite v0.0.0-20191207154002-9094e544fcef
github.com/fatih/color v1.9.0
github.com/felixge/fgprof v0.9.1
github.com/felixge/httpsnoop v1.0.1
github.com/fsnotify/fsnotify v1.4.9
github.com/gchaincl/sqlhooks v1.3.0
github.com/getsentry/raven-go v0.2.0
github.com/ghodss/yaml v1.0.0
github.com/gitchander/permutation v0.0.0-20181107151852-9e56b92e9909
github.com/gliderlabs/ssh v0.3.0 // indirect
github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a // indirect
github.com/go-enry/go-enry/v2 v2.6.0
github.com/go-git/go-git/v5 v5.1.0 // indirect
github.com/go-openapi/runtime v0.19.21 // indirect
github.com/go-openapi/spec v0.19.9 // indirect
github.com/go-openapi/strfmt v0.19.5
github.com/go-openapi/validate v0.19.11 // indirect
github.com/go-redsync/redsync v1.4.2
github.com/gobwas/glob v0.2.3
github.com/golang-migrate/migrate/v4 v4.11.0
github.com/golang/gddo v0.0.0-20200831202555-721e228c7686
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
github.com/gomodule/oauth1 v0.0.0-20181215000758-9a59ed3b0a84
github.com/gomodule/redigo v2.0.0+incompatible
github.com/google/go-cmp v0.5.2
github.com/google/go-github v17.0.0+incompatible
github.com/google/go-github/v28 v28.1.1
github.com/google/go-github/v31 v31.0.0
github.com/google/go-querystring v1.0.0
github.com/google/pprof v0.0.0-20200905233945-acf8798be1f7 // indirect
github.com/google/uuid v1.1.2
github.com/google/zoekt v0.0.0-20200720095054-b48e35d16e83
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/gorilla/context v1.1.1
github.com/gorilla/csrf v1.7.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/schema v1.2.0
github.com/gorilla/securecookie v1.1.1
github.com/gorilla/sessions v1.2.1
github.com/gosimple/slug v1.9.0 // indirect
github.com/goware/urlx v0.3.1
github.com/grafana-tools/sdk v0.0.0-20200908142517-0a69ce5bbb82
github.com/graph-gophers/graphql-go v0.0.0-20200819123640-3b5ddcd884ae
github.com/graphql-go/graphql v0.7.9
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
github.com/hashicorp/go-hclog v0.14.1 // indirect
github.com/hashicorp/go-multierror v1.1.0
github.com/hashicorp/go-retryablehttp v0.6.7 // indirect
github.com/honeycombio/libhoney-go v1.14.0
github.com/imdario/mergo v0.3.11 // indirect
github.com/inconshreveable/log15 v0.0.0-20200109203555-b30bc20e4fd1
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/jmoiron/sqlx v1.2.1-0.20190826204134-d7d95172beb5
github.com/joho/godotenv v1.3.0
github.com/jonboulle/clockwork v0.2.1 // indirect
github.com/jordan-wright/email v4.0.1-0.20200824153738-3f5bafa1cd84+incompatible
github.com/jpillora/backoff v1.0.0 // indirect
github.com/json-iterator/go v1.1.10
github.com/karrick/godirwalk v1.16.1
github.com/keegancsmith/rpc v1.3.0
github.com/keegancsmith/sqlf v1.1.0
github.com/keegancsmith/tmpfriend v0.0.0-20180423180255-86e88902a513
github.com/kevinburke/go-bindata v3.21.0+incompatible
github.com/klauspost/compress v1.11.0 // indirect
github.com/kr/text v0.2.0
github.com/kylelemons/godebug v1.1.0
github.com/leanovate/gopter v0.2.8
github.com/lib/pq v1.8.0
github.com/machinebox/graphql v0.2.2
github.com/mailru/easyjson v0.7.6 // indirect
github.com/matryer/is v1.4.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/microcosm-cc/bluemonday v1.0.4
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/mschoch/smat v0.2.0 // indirect
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
github.com/neelance/parallel v0.0.0-20160708114440-4de9ce63d14c
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opentracing-contrib/go-stdlib v1.0.0
github.com/opentracing/opentracing-go v1.2.0
github.com/peterbourgon/ff v1.7.0
github.com/peterhellberg/link v1.1.0
github.com/pkg/errors v0.9.1
github.com/pquerna/cachecontrol v0.0.0-20200819021114-67c6ae64274f // indirect
github.com/princjef/gomarkdoc v0.1.3
github.com/prometheus/alertmanager v0.21.0
github.com/prometheus/client_golang v1.6.0
github.com/prometheus/common v0.10.0
github.com/prometheus/procfs v0.1.3 // indirect
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be
github.com/russellhaering/gosaml2 v0.6.0
github.com/russellhaering/goxmldsig v1.1.0
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/schollz/progressbar/v3 v3.5.0
github.com/segmentio/fasthash v1.0.3
github.com/sergi/go-diff v1.1.0
github.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470
github.com/shurcooL/go v0.0.0-20200502201357-93f07166e636 // indirect
github.com/shurcooL/highlight_diff v0.0.0-20181222201841-111da2e7d480 // indirect
github.com/shurcooL/highlight_go v0.0.0-20191220051317-782971ddf21b // indirect
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749
github.com/shurcooL/httpgzip v0.0.0-20190720172056-320755c1c1b0
github.com/shurcooL/octicon v0.0.0-20191102190552-cbb32d6a785c // indirect
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d // indirect
github.com/sourcegraph/campaignutils v0.0.0-20201124155628-5d86cf20398d
github.com/sourcegraph/codeintelutils v0.0.0-20200824140252-1db3aed5cf58
github.com/sourcegraph/ctxvfs v0.0.0-20180418081416-2b65f1b1ea81
github.com/sourcegraph/go-ctags v0.0.0-20201109224903-0e02e034fdb1
github.com/sourcegraph/go-diff v0.6.1
github.com/sourcegraph/go-jsonschema v0.0.0-20200907102109-d14e9f2f3a28
github.com/sourcegraph/go-langserver v2.0.1-0.20181108233942-4a51fa2e1238+incompatible
github.com/sourcegraph/go-lsp v0.0.0-20200429204803-219e11d77f5d
github.com/sourcegraph/gosyntect v0.0.0-20200429204402-842ed26129d0
github.com/sourcegraph/jsonx v0.0.0-20200629203448-1a936bd500cf
github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images v0.0.0-00010101000000-000000000000
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/stretchr/objx v0.3.0 // indirect
github.com/stripe/stripe-go v70.15.0+incompatible
github.com/temoto/robotstxt v1.1.1
github.com/tidwall/gjson v1.6.1
github.com/tinylib/msgp v1.1.2 // indirect
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80
github.com/uber/gonduit v0.11.0
github.com/uber/jaeger-client-go v2.25.0+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible
github.com/willf/bitset v1.1.11 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonschema v1.2.0
github.com/xeonx/timeago v1.0.0-rc4
github.com/zenazn/goji v1.0.1 // indirect
go.mongodb.org/mongo-driver v1.4.1 // indirect
go.opencensus.io v0.22.4 // indirect
go.uber.org/atomic v1.7.0
go.uber.org/automaxprocs v1.3.0
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
golang.org/x/tools v0.0.0-20200915031644-64986481280e
google.golang.org/api v0.29.0
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20200413115906-b5235f65be36 // indirect
google.golang.org/grpc v1.31.1 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.3.0
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
)
replace (
// protobuf v1.3.5+ causes issues - https://github.com/sourcegraph/sourcegraph/issues/11804
github.com/golang/protobuf => github.com/golang/protobuf v1.3.5
// We need our fork until https://github.com/graph-gophers/graphql-go/pull/400 is merged upstream
// Our change limits the number of goroutines spawned by resolvers which was causing memory spikes on our frontend
github.com/graph-gophers/graphql-go => github.com/sourcegraph/graphql-go v0.0.0-20201007040903-ec61a5417d66
github.com/mattn/goreman => github.com/sourcegraph/goreman v0.1.2-0.20180928223752-6e9a2beb830d
// prom-wrapper needs to be able to write alertmanager configuration with secrets, etc, which
// the alertmanager project is currently not planning on accepting changes for.
github.com/prometheus/alertmanager => github.com/sourcegraph/alertmanager v0.21.1-0.20200727091526-3e856a90b534
github.com/russellhaering/gosaml2 => github.com/sourcegraph/gosaml2 v0.6.1-0.20201216035416-70944041979a
)
// We maintain our own fork of Zoekt. Update with ./dev/zoekt/update
replace github.com/google/zoekt => github.com/sourcegraph/zoekt v0.0.0-20201124084228-b6ed3e04a806
replace github.com/russross/blackfriday => github.com/russross/blackfriday v1.5.2
replace github.com/dghubble/gologin => github.com/sourcegraph/gologin v1.0.2-0.20181110030308-c6f1b62954d8
replace golang.org/x/oauth2 => github.com/sourcegraph/oauth2 v0.0.0-20201011192344-605770292164
replace github.com/golang/lint => golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f
// See: https://github.com/ghodss/yaml/pull/65
replace github.com/ghodss/yaml => github.com/sourcegraph/yaml v1.0.1-0.20200714132230-56936252f152
replace github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images => ./enterprise/dev/ci/images