-
Notifications
You must be signed in to change notification settings - Fork 1
/
versions.json
4289 lines (4289 loc) · 238 KB
/
versions.json
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"1.0.0": {
"Go": "1.13.0",
"Deps": {
"cloud.google.com/go": "v0.38.0",
"contrib.go.opencensus.io/exporter/aws": "v0.0.0-20181029163544-2befc13012d0",
"contrib.go.opencensus.io/exporter/jaeger": "v0.0.0-20190424224017-5b8293c22f36",
"contrib.go.opencensus.io/exporter/ocagent": "v0.4.2",
"contrib.go.opencensus.io/exporter/prometheus": "v0.0.0-20190424224027-f02a6e68f94d",
"contrib.go.opencensus.io/exporter/stackdriver": "v0.9.1",
"contrib.go.opencensus.io/exporter/zipkin": "v0.0.0-20190424224031-c96617f51dc6",
"contrib.go.opencensus.io/integrations/ocsql": "v0.1.3",
"contrib.go.opencensus.io/resource": "v0.0.0-20190131005048-21591786a5e0",
"dmitri.shuralyov.com/app/changes": "v0.0.0-20180602232624-0a106ad413e3",
"dmitri.shuralyov.com/html/belt": "v0.0.0-20180602232347-f7d459c86be0",
"dmitri.shuralyov.com/service/change": "v0.0.0-20181023043359-a85b471d5412",
"dmitri.shuralyov.com/state": "v0.0.0-20180228185332-28bcc343414c",
"git.apache.org/thrift.git": "v0.12.0",
"github.com/Azure/azure-amqp-common-go": "v1.1.4",
"github.com/Azure/azure-pipeline-go": "v0.1.8",
"github.com/Azure/azure-sdk-for-go": "v26.0.0+incompatible",
"github.com/Azure/azure-service-bus-go": "v0.4.1",
"github.com/Azure/azure-storage-blob-go": "v0.0.0-20190104215108-45d0c5e3638e",
"github.com/Azure/go-ansiterm": "v0.0.0-20170929234023-d6e3b3328b78",
"github.com/Azure/go-autorest": "v11.6.0+incompatible",
"github.com/BurntSushi/toml": "v0.3.1",
"github.com/DataDog/datadog-go": "v0.0.0-20180822151419-281ae9f2d895",
"github.com/GoogleCloudPlatform/cloudsql-proxy": "v0.0.0-20181215173202-6f1ecdcf9588",
"github.com/Jeffail/gabs": "v1.1.1",
"github.com/Masterminds/semver": "v1.4.2",
"github.com/Masterminds/sprig": "v2.16.0+incompatible",
"github.com/Microsoft/go-winio": "v0.4.11",
"github.com/NYTimes/gziphandler": "v1.0.1",
"github.com/Nvveen/Gotty": "v0.0.0-20120604004816-cd527374f1e5",
"github.com/OneOfOne/xxhash": "v1.2.2",
"github.com/PuerkitoBio/goquery": "v1.4.0",
"github.com/RoaringBitmap/roaring": "v0.4.16",
"github.com/SAP/go-hdb": "v0.13.2",
"github.com/SermoDigital/jose": "v0.9.2-0.20161205224733-f6df55f235c2",
"github.com/Shopify/sarama": "v1.19.0",
"github.com/Shopify/toxiproxy": "v2.1.4+incompatible",
"github.com/alcortesm/tgz": "v0.0.0-20161220082320-9c5fe88206d7",
"github.com/alecthomas/assert": "v0.0.0-20170929043011-405dbfeb8e38",
"github.com/alecthomas/chroma": "v0.6.3",
"github.com/alecthomas/colour": "v0.0.0-20160524082231-60882d9e2721",
"github.com/alecthomas/kingpin": "v2.2.6+incompatible",
"github.com/alecthomas/kong": "v0.1.15",
"github.com/alecthomas/repr": "v0.0.0-20180818092828-117648cd9897",
"github.com/alecthomas/template": "v0.0.0-20160405071501-a0175ee3bccc",
"github.com/alecthomas/units": "v0.0.0-20151022065526-2efee857e7cf",
"github.com/alexeyco/binder": "v0.0.0-20180729220023-2a21303f588a",
"github.com/aliyun/alibaba-cloud-sdk-go": "v0.0.0-20190122153857-e0ace9b64d22",
"github.com/andreyvit/diff": "v0.0.0-20170406064948-c7f18ee00883",
"github.com/andybalholm/cascadia": "v1.0.0",
"github.com/anmitsu/go-shlex": "v0.0.0-20161002113705-648efa622239",
"github.com/antlr/antlr4": "v0.0.0-20190223165740-dade65a895c2",
"github.com/aokoli/goutils": "v1.0.1",
"github.com/apache/arrow/go/arrow": "v0.0.0-20181217213538-e9ed591db9cb",
"github.com/apache/thrift": "v0.12.0",
"github.com/apex/log": "v1.1.0",
"github.com/araddon/gou": "v0.0.0-20190110011759-c797efecbb61",
"github.com/armon/consul-api": "v0.0.0-20180202201655-eb2c6b5be1b6",
"github.com/armon/go-metrics": "v0.0.0-20180917152333-f0300d1749da",
"github.com/armon/go-radix": "v1.0.0",
"github.com/asaskevich/govalidator": "v0.0.0-20180720115003-f9ffefc3facf",
"github.com/auth0-community/go-auth0": "v1.0.0",
"github.com/aws/aws-lambda-go": "v1.10.0",
"github.com/aws/aws-sdk-go": "v1.19.16",
"github.com/benbjohnson/tmpl": "v1.0.0",
"github.com/beorn7/perks": "v0.0.0-20180321164747-3a771d992973",
"github.com/bgentry/speakeasy": "v0.1.0",
"github.com/bitly/go-hostpool": "v0.0.0-20171023180738-a3a6125de932",
"github.com/blakesmith/ar": "v0.0.0-20150311145944-8bd4349a67f2",
"github.com/bmizerany/assert": "v0.0.0-20160611221934-b7ed37b82869",
"github.com/boltdb/bolt": "v1.3.1",
"github.com/boombuler/barcode": "v1.0.0",
"github.com/bouk/httprouter": "v0.0.0-20160817010721-ee8b3818a7f5",
"github.com/bradfitz/go-smtpd": "v0.0.0-20170404230938-deb6d6237625",
"github.com/briankassouf/jose": "v0.9.1",
"github.com/c-bata/go-prompt": "v0.2.2",
"github.com/caarlos0/ctrlc": "v1.0.0",
"github.com/campoy/unique": "v0.0.0-20180121183637-88950e537e7e",
"github.com/catalinc/hashcash": "v0.0.0-20161205220751-e6bc29ff4de9",
"github.com/cenkalti/backoff": "v2.1.1+incompatible",
"github.com/census-instrumentation/opencensus-proto": "v0.2.0",
"github.com/centrify/cloud-golang-sdk": "v0.0.0-20180119173102-7c97cc6fde16",
"github.com/cespare/xxhash": "v1.1.0",
"github.com/chrismalek/oktasdk-go": "v0.0.0-20181212195951-3430665dfaa0",
"github.com/chzyer/logex": "v1.1.10",
"github.com/chzyer/readline": "v0.0.0-20180603132655-2972be24d48e",
"github.com/chzyer/test": "v0.0.0-20180213035817-a1ea475d72b1",
"github.com/circonus-labs/circonus-gometrics": "v2.2.5+incompatible",
"github.com/circonus-labs/circonusllhist": "v0.1.3",
"github.com/clbanning/mxj": "v1.8.4",
"github.com/client9/misspell": "v0.3.4",
"github.com/codahale/hdrhistogram": "v0.0.0-20161010025455-3a0bb77429bd",
"github.com/codegangsta/negroni": "v1.0.0",
"github.com/containerd/continuity": "v0.0.0-20181203112020-004b46473808",
"github.com/coreos/bbolt": "v1.3.1-coreos.6",
"github.com/coreos/etcd": "v3.3.13+incompatible",
"github.com/coreos/go-etcd": "v2.0.0+incompatible",
"github.com/coreos/go-oidc": "v2.0.0+incompatible",
"github.com/coreos/go-semver": "v0.2.0",
"github.com/coreos/go-systemd": "v0.0.0-20181012123002-c6f51f82210d",
"github.com/coreos/pkg": "v0.0.0-20180928190104-399ea9e2e55f",
"github.com/dancannon/gorethink": "v4.0.0+incompatible",
"github.com/danwakefield/fnmatch": "v0.0.0-20160403171240-cbb64ac3d964",
"github.com/davecgh/go-spew": "v1.1.1",
"github.com/denisenkom/go-mssqldb": "v0.0.0-20190121005146-b04fd42d9952",
"github.com/devopsfaith/bloomfilter": "v0.0.0-20190317200532-4687d0b9aa2a",
"github.com/devopsfaith/flatmap": "v0.0.0-20190628155411-90b768d6668b",
"github.com/devopsfaith/krakend": "v0.0.0-20190921111907-6ff3a6860ce0",
"github.com/devopsfaith/krakend-amqp": "v0.0.0-20190315181526-5f14dc177694",
"github.com/devopsfaith/krakend-botdetector": "v0.0.0-20190711145323-c5fcb969addb",
"github.com/devopsfaith/krakend-cel": "v0.0.0-20190502130550-d6872fd4f97e",
"github.com/devopsfaith/krakend-circuitbreaker": "v0.0.0-20190405155253-cf7c0a538981",
"github.com/devopsfaith/krakend-cobra": "v0.0.0-20190403130617-3f056666a23e",
"github.com/devopsfaith/krakend-consul": "v0.0.0-20190130102841-7623a4da32a1",
"github.com/devopsfaith/krakend-cors": "v0.0.0-20190921115348-8233f1195319",
"github.com/devopsfaith/krakend-etcd": "v0.0.0-20180215165313-bd645943ff8c",
"github.com/devopsfaith/krakend-flexibleconfig": "v0.0.0-20190408143848-fc4ef2b4d5cf",
"github.com/devopsfaith/krakend-gelf": "v0.0.0-20181019222239-59c0250b1c60",
"github.com/devopsfaith/krakend-gologging": "v0.0.0-20190131142345-f3f256584ecc",
"github.com/devopsfaith/krakend-httpcache": "v0.0.0-20181030153148-8474476ff874",
"github.com/devopsfaith/krakend-httpsecure": "v0.0.0-20180922151646-cce73b27c717",
"github.com/devopsfaith/krakend-jose": "v0.0.0-20190226224132-34c0555a9893",
"github.com/devopsfaith/krakend-jsonschema": "v0.0.0-20190124184701-5705a5015d7a",
"github.com/devopsfaith/krakend-lambda": "v0.0.0-20190505185714-4a509c7d9c5d",
"github.com/devopsfaith/krakend-logstash": "v0.0.0-20190131142205-17f4745d3502",
"github.com/devopsfaith/krakend-lua": "v0.0.0-20190615141219-523d807d45b7",
"github.com/devopsfaith/krakend-martian": "v0.0.0-20190424133031-29314a524a91",
"github.com/devopsfaith/krakend-metrics": "v0.0.0-20190114200758-1e2c2a1f6a62",
"github.com/devopsfaith/krakend-oauth2-clientcredentials": "v0.0.0-20190206125733-11a9f7170c44",
"github.com/devopsfaith/krakend-opencensus": "v0.0.0-20190916170103-845b2cd067f0",
"github.com/devopsfaith/krakend-pubsub": "v0.0.0-20190424155946-2884ffb54959",
"github.com/devopsfaith/krakend-ratelimit": "v0.0.0-20190921120547-5fe6dc6139d8",
"github.com/devopsfaith/krakend-rss": "v0.0.0-20180408220939-4c18c62a99ee",
"github.com/devopsfaith/krakend-usage": "v0.0.0-20181025134340-476779c0a36c",
"github.com/devopsfaith/krakend-viper": "v0.0.0-20190407170411-1cbb76813774",
"github.com/devopsfaith/krakend-xml": "v0.0.0-20190713155104-2cd38185308f",
"github.com/dgrijalva/jwt-go": "v3.2.0+incompatible",
"github.com/dgryski/go-bitstream": "v0.0.0-20180413035011-3522498ce2c8",
"github.com/dimchansky/utfbom": "v1.1.0",
"github.com/dimfeld/httptreemux": "v5.0.1+incompatible",
"github.com/dlclark/regexp2": "v1.1.6",
"github.com/dnaeon/go-vcr": "v1.0.1",
"github.com/docker/distribution": "v2.6.2+incompatible",
"github.com/docker/docker": "v0.0.0-20180422163414-57142e89befe",
"github.com/docker/go-connections": "v0.4.0",
"github.com/docker/go-units": "v0.3.3",
"github.com/duosecurity/duo_api_golang": "v0.0.0-20190107154727-539434bf0d45",
"github.com/dustin/go-humanize": "v1.0.0",
"github.com/eapache/go-resiliency": "v1.1.0",
"github.com/eapache/go-xerial-snappy": "v0.0.0-20180814174437-776d5712da21",
"github.com/eapache/queue": "v1.1.0",
"github.com/elazarl/go-bindata-assetfs": "v1.0.0",
"github.com/emirpasic/gods": "v1.9.0",
"github.com/fatih/color": "v1.7.0",
"github.com/fatih/structs": "v1.1.0",
"github.com/flynn/go-shlex": "v0.0.0-20150515145356-3f9db97f8568",
"github.com/fortytw2/leaktest": "v1.2.0",
"github.com/fsnotify/fsnotify": "v1.4.7",
"github.com/fullsailor/pkcs7": "v0.0.0-20180613152042-8306686428a5",
"github.com/gammazero/deque": "v0.0.0-20180920172122-f6adf94963e4",
"github.com/gammazero/workerpool": "v0.0.0-20181230203049-86a96b5d5d92",
"github.com/garyburd/redigo": "v1.6.0",
"github.com/getkin/kin-openapi": "v0.1.0",
"github.com/ghodss/yaml": "v1.0.0",
"github.com/gin-contrib/sse": "v0.1.0",
"github.com/gin-gonic/gin": "v1.4.0",
"github.com/gliderlabs/ssh": "v0.1.1",
"github.com/glycerine/go-unsnap-stream": "v0.0.0-20180323001048-9f0cb55181dd",
"github.com/glycerine/goconvey": "v0.0.0-20180728074245-46e3a41ad493",
"github.com/go-chi/chi": "v4.0.1+incompatible",
"github.com/go-contrib/uuid": "v1.2.0",
"github.com/go-errors/errors": "v1.0.1",
"github.com/go-ini/ini": "v1.25.4",
"github.com/go-kit/kit": "v0.8.0",
"github.com/go-ldap/ldap": "v3.0.0+incompatible",
"github.com/go-logfmt/logfmt": "v0.3.0",
"github.com/go-sql-driver/mysql": "v1.4.1",
"github.com/go-stack/stack": "v1.8.0",
"github.com/go-stomp/stomp": "v2.0.2+incompatible",
"github.com/go-test/deep": "v1.0.1",
"github.com/gocql/gocql": "v0.0.0-20190122205811-30de9a1866a8",
"github.com/gogo/protobuf": "v1.2.0",
"github.com/golang/gddo": "v0.0.0-20181116215533-9bd4a3295021",
"github.com/golang/glog": "v0.0.0-20160126235308-23def4e6c14b",
"github.com/golang/groupcache": "v0.0.0-20190702054246-869f871628b6",
"github.com/golang/lint": "v0.0.0-20180702182130-06c8688daad7",
"github.com/golang/mock": "v1.2.0",
"github.com/golang/protobuf": "v1.3.2",
"github.com/golang/snappy": "v0.0.0-20180518054509-2e65f85255db",
"github.com/google/btree": "v1.0.0",
"github.com/google/cel-go": "v0.2.0",
"github.com/google/cel-spec": "v0.2.0",
"github.com/google/go-cmp": "v0.3.0",
"github.com/google/go-github": "v17.0.0+incompatible",
"github.com/google/go-querystring": "v1.0.0",
"github.com/google/gofuzz": "v1.0.0",
"github.com/google/martian": "v2.1.0+incompatible",
"github.com/google/pprof": "v0.0.0-20181206194817-3ea8567a2e57",
"github.com/google/subcommands": "v0.0.0-20181012225330-46f0354f6315",
"github.com/google/uuid": "v1.1.0",
"github.com/google/wire": "v0.2.1",
"github.com/googleapis/gax-go": "v2.0.2+incompatible",
"github.com/googleapis/gax-go/v2": "v2.0.4",
"github.com/gopherjs/gopherjs": "v0.0.0-20181017120253-0766667cb4d1",
"github.com/goreleaser/goreleaser": "v0.94.0",
"github.com/goreleaser/nfpm": "v0.9.7",
"github.com/gorhill/cronexpr": "v0.0.0-20180427100037-88b0669f7d75",
"github.com/gorilla/context": "v1.1.1",
"github.com/gorilla/mux": "v1.6.2",
"github.com/gorilla/websocket": "v1.4.0",
"github.com/gotestyourself/gotestyourself": "v2.2.0+incompatible",
"github.com/gregjones/httpcache": "v0.0.0-20190611155906-901d90724c79",
"github.com/grpc-ecosystem/go-grpc-middleware": "v1.0.0",
"github.com/grpc-ecosystem/go-grpc-prometheus": "v1.2.0",
"github.com/grpc-ecosystem/grpc-gateway": "v1.8.6",
"github.com/hailocab/go-hostpool": "v0.0.0-20160125115350-e80d13ce29ed",
"github.com/hashicorp/consul": "v1.4.0",
"github.com/hashicorp/errwrap": "v1.0.0",
"github.com/hashicorp/go-cleanhttp": "v0.5.0",
"github.com/hashicorp/go-gcp-common": "v0.0.0-20180425173946-763e39302965",
"github.com/hashicorp/go-hclog": "v0.0.0-20190109152822-4783caec6f2e",
"github.com/hashicorp/go-immutable-radix": "v1.0.0",
"github.com/hashicorp/go-memdb": "v0.0.0-20181108192425-032f93b25bec",
"github.com/hashicorp/go-msgpack": "v0.5.3",
"github.com/hashicorp/go-multierror": "v1.0.0",
"github.com/hashicorp/go-plugin": "v0.0.0-20181212150838-f444068e8f5a",
"github.com/hashicorp/go-retryablehttp": "v0.5.1",
"github.com/hashicorp/go-rootcerts": "v1.0.0",
"github.com/hashicorp/go-sockaddr": "v1.0.1",
"github.com/hashicorp/go-uuid": "v1.0.1",
"github.com/hashicorp/go-version": "v1.1.0",
"github.com/hashicorp/golang-lru": "v0.5.3",
"github.com/hashicorp/hcl": "v1.0.0",
"github.com/hashicorp/memberlist": "v0.1.0",
"github.com/hashicorp/nomad": "v0.8.7",
"github.com/hashicorp/raft": "v1.0.0",
"github.com/hashicorp/serf": "v0.8.1",
"github.com/hashicorp/vault": "v1.0.2",
"github.com/hashicorp/vault-plugin-auth-alicloud": "v0.0.0-20181109180636-f278a59ca3e8",
"github.com/hashicorp/vault-plugin-auth-azure": "v0.0.0-20181207232528-4c0b46069a22",
"github.com/hashicorp/vault-plugin-auth-centrify": "v0.0.0-20180816201131-66b0a34a58bf",
"github.com/hashicorp/vault-plugin-auth-gcp": "v0.0.0-20181210200133-4d63bbfe6fcf",
"github.com/hashicorp/vault-plugin-auth-jwt": "v0.0.0-20190117220024-3e8048f1026f",
"github.com/hashicorp/vault-plugin-auth-kubernetes": "v0.0.0-20181130162533-091d9e5d5fab",
"github.com/hashicorp/vault-plugin-secrets-ad": "v0.0.0-20181109182834-540c0b6f1f11",
"github.com/hashicorp/vault-plugin-secrets-alicloud": "v0.0.0-20181109181453-2aee79cc5cbf",
"github.com/hashicorp/vault-plugin-secrets-azure": "v0.0.0-20181207232500-0087bdef705a",
"github.com/hashicorp/vault-plugin-secrets-gcp": "v0.0.0-20180921173200-d6445459e80c",
"github.com/hashicorp/vault-plugin-secrets-gcpkms": "v0.0.0-20190116164938-d6b25b0b4a39",
"github.com/hashicorp/vault-plugin-secrets-kv": "v0.0.0-20190115203747-edbfe287c5d9",
"github.com/hashicorp/yamux": "v0.0.0-20181012175058-2f1d1f20f75d",
"github.com/hpcloud/tail": "v1.0.0",
"github.com/huandu/xstrings": "v1.0.0",
"github.com/imdario/mergo": "v0.3.6",
"github.com/inconshreveable/mousetrap": "v1.0.0",
"github.com/influxdata/flux": "v0.13.0",
"github.com/influxdata/influxdb": "v1.7.4",
"github.com/influxdata/influxql": "v0.0.0-20180925231337-1cbfca8e56b6",
"github.com/influxdata/line-protocol": "v0.0.0-20180522152040-32c6aa80de5e",
"github.com/influxdata/platform": "v0.0.0-20190117200541-d500d3cf5589",
"github.com/influxdata/tdigest": "v0.0.0-20181121200506-bf2b5ad3c0a9",
"github.com/influxdata/usage-client": "v0.0.0-20160829180054-6d3895376368",
"github.com/jbenet/go-context": "v0.0.0-20150711004518-d14ea06fba99",
"github.com/jeffchao/backoff": "v0.0.0-20140404060208-9d7fd7aa17f2",
"github.com/jefferai/jsonx": "v0.0.0-20160721235117-9cc31c3135ee",
"github.com/jellevandenhooff/dkim": "v0.0.0-20150330215556-f50fe3d243e1",
"github.com/jessevdk/go-flags": "v1.4.0",
"github.com/jmespath/go-jmespath": "v0.0.0-20180206201540-c2b33e8439af",
"github.com/joho/godotenv": "v1.3.0",
"github.com/jonboulle/clockwork": "v0.1.0",
"github.com/json-iterator/go": "v1.1.7",
"github.com/jstemmer/go-junit-report": "v0.0.0-20190106144839-af01ea7f8024",
"github.com/jsternberg/zap-logfmt": "v1.2.0",
"github.com/jtolds/gls": "v4.2.1+incompatible",
"github.com/juju/ratelimit": "v1.0.2-0.20171026090426-59fac5042749",
"github.com/julienschmidt/httprouter": "v1.2.0",
"github.com/jwilder/encoding": "v0.0.0-20170811194829-b4e1701a28ef",
"github.com/k0kubun/colorstring": "v0.0.0-20150214042306-9440f1994b88",
"github.com/kevinburke/go-bindata": "v3.11.0+incompatible",
"github.com/kevinburke/ssh_config": "v0.0.0-20180830205328-81db2a75821e",
"github.com/keybase/go-crypto": "v0.0.0-20181127160227-255a5089e85a",
"github.com/kisielk/gotool": "v1.0.0",
"github.com/konsorten/go-windows-terminal-sequences": "v1.0.1",
"github.com/kpacha/opencensus-influxdb": "v0.0.0-20181102202715-663e2683a27c",
"github.com/kr/logfmt": "v0.0.0-20140226030751-b84e30acd515",
"github.com/kr/pretty": "v0.1.0",
"github.com/kr/pty": "v1.1.3",
"github.com/kr/text": "v0.1.0",
"github.com/letgoapp/krakend-consul": "v0.0.0-20190130102841-7623a4da32a1",
"github.com/letgoapp/krakend-influx": "v0.0.0-20190214142340-d2fc9466bb3a",
"github.com/lib/pq": "v1.0.0",
"github.com/magiconair/properties": "v1.8.0",
"github.com/mattbaird/elastigo": "v0.0.0-20170123220020-2fe47fd29e4b",
"github.com/mattn/go-colorable": "v0.0.9",
"github.com/mattn/go-isatty": "v0.0.8",
"github.com/mattn/go-runewidth": "v0.0.3",
"github.com/mattn/go-tty": "v0.0.0-20180907095812-13ff1204f104",
"github.com/mattn/go-zglob": "v0.0.0-20180803001819-2ea3427bfa53",
"github.com/matttproud/golang_protobuf_extensions": "v1.0.1",
"github.com/michaelklishin/rabbit-hole": "v1.4.0",
"github.com/microcosm-cc/bluemonday": "v1.0.1",
"github.com/miekg/dns": "v1.1.1",
"github.com/mitchellh/cli": "v1.0.0",
"github.com/mitchellh/copystructure": "v1.0.0",
"github.com/mitchellh/go-homedir": "v1.0.0",
"github.com/mitchellh/go-testing-interface": "v1.0.0",
"github.com/mitchellh/go-wordwrap": "v1.0.0",
"github.com/mitchellh/hashstructure": "v1.0.0",
"github.com/mitchellh/mapstructure": "v1.1.2",
"github.com/mitchellh/reflectwalk": "v1.0.0",
"github.com/mmcdole/gofeed": "v1.0.0-beta2",
"github.com/mmcdole/goxpp": "v0.0.0-20170720115402-77e4a51a73ed",
"github.com/mna/pigeon": "v1.0.1-0.20180808201053-bb0192cfc2ae",
"github.com/modern-go/concurrent": "v0.0.0-20180306012644-bacd9c7ef1dd",
"github.com/modern-go/reflect2": "v1.0.1",
"github.com/mschoch/smat": "v0.0.0-20160514031455-90eadee771ae",
"github.com/mwitkow/go-conntrack": "v0.0.0-20161129095857-cc309e4a2223",
"github.com/nats-io/gnatsd": "v1.4.1",
"github.com/nats-io/go-nats": "v1.7.2",
"github.com/nats-io/go-nats-streaming": "v0.4.0",
"github.com/nats-io/nats-streaming-server": "v0.11.2",
"github.com/nats-io/nkeys": "v0.0.2",
"github.com/nats-io/nuid": "v1.0.1",
"github.com/neelance/astrewrite": "v0.0.0-20160511093645-99348263ae86",
"github.com/neelance/sourcemap": "v0.0.0-20151028013722-8c68805598ab",
"github.com/oklog/run": "v1.0.0",
"github.com/onsi/ginkgo": "v1.7.0",
"github.com/onsi/gomega": "v1.4.3",
"github.com/op/go-logging": "v0.0.0-20160315200505-970db520ece7",
"github.com/opencontainers/go-digest": "v1.0.0-rc1",
"github.com/opencontainers/image-spec": "v1.0.1",
"github.com/opencontainers/runc": "v0.1.1",
"github.com/opentracing/opentracing-go": "v1.1.0",
"github.com/openzipkin/zipkin-go": "v0.1.6",
"github.com/ory-am/common": "v0.4.0",
"github.com/ory/dockertest": "v3.3.4+incompatible",
"github.com/pascaldekloe/goe": "v0.0.0-20180627143212-57f6aae5913c",
"github.com/patrickmn/go-cache": "v2.1.0+incompatible",
"github.com/pborman/uuid": "v1.2.0",
"github.com/pelletier/go-buffruneio": "v0.2.0",
"github.com/pelletier/go-toml": "v1.2.0",
"github.com/philhofer/fwd": "v1.0.0",
"github.com/pierrec/lz4": "v2.0.5+incompatible",
"github.com/pkg/errors": "v0.8.1",
"github.com/pkg/term": "v0.0.0-20180730021639-bffc007b7fd5",
"github.com/pmezard/go-difflib": "v1.0.0",
"github.com/posener/complete": "v1.1.1",
"github.com/pquerna/cachecontrol": "v0.0.0-20180517163645-1555304b9b35",
"github.com/pquerna/otp": "v1.1.0",
"github.com/prometheus/client_golang": "v0.9.3-0.20190127221311-3c4408c8b829",
"github.com/prometheus/client_model": "v0.0.0-20190115171406-56726106282f",
"github.com/prometheus/common": "v0.2.0",
"github.com/prometheus/procfs": "v0.0.0-20190117184657-bf6a532e95b1",
"github.com/rcrowley/go-metrics": "v0.0.0-20181016184325-3113b8401b8a",
"github.com/rogpeppe/fastuuid": "v0.0.0-20150106093220-6724a57986af",
"github.com/rs/cors": "v1.6.0",
"github.com/russross/blackfriday": "v1.5.2",
"github.com/ryanuber/columnize": "v2.1.0+incompatible",
"github.com/ryanuber/go-glob": "v0.0.0-20170128012129-256dc444b735",
"github.com/samuel/go-zookeeper": "v0.0.0-20180130194729-c4fab1ac1bec",
"github.com/satori/go.uuid": "v1.2.0",
"github.com/sean-/seed": "v0.0.0-20170313163322-e2103e2c3529",
"github.com/segmentio/kafka-go": "v0.1.0",
"github.com/sergi/go-diff": "v1.0.0",
"github.com/shurcooL/component": "v0.0.0-20170202220835-f88ec8f54cc4",
"github.com/shurcooL/events": "v0.0.0-20181021180414-410e4ca65f48",
"github.com/shurcooL/github_flavored_markdown": "v0.0.0-20181002035957-2122de532470",
"github.com/shurcooL/go": "v0.0.0-20180423040247-9e1955d9fb6e",
"github.com/shurcooL/go-goon": "v0.0.0-20170922171312-37c2f522c041",
"github.com/shurcooL/gofontwoff": "v0.0.0-20180329035133-29b52fc0a18d",
"github.com/shurcooL/gopherjslib": "v0.0.0-20160914041154-feb6d3990c2c",
"github.com/shurcooL/highlight_diff": "v0.0.0-20170515013008-09bb4053de1b",
"github.com/shurcooL/highlight_go": "v0.0.0-20181028180052-98c3abbbae20",
"github.com/shurcooL/home": "v0.0.0-20181020052607-80b7ffcb30f9",
"github.com/shurcooL/htmlg": "v0.0.0-20170918183704-d01228ac9e50",
"github.com/shurcooL/httperror": "v0.0.0-20170206035902-86b7830d14cc",
"github.com/shurcooL/httpfs": "v0.0.0-20171119174359-809beceb2371",
"github.com/shurcooL/httpgzip": "v0.0.0-20180522190206-b1c53ac65af9",
"github.com/shurcooL/issues": "v0.0.0-20181008053335-6292fdc1e191",
"github.com/shurcooL/issuesapp": "v0.0.0-20180602232740-048589ce2241",
"github.com/shurcooL/notifications": "v0.0.0-20181007000457-627ab5aea122",
"github.com/shurcooL/octicon": "v0.0.0-20181028054416-fa4f57f9efb2",
"github.com/shurcooL/reactions": "v0.0.0-20181006231557-f2e0b4ca5b82",
"github.com/shurcooL/sanitized_anchor_name": "v0.0.0-20170918181015-86672fcb3f95",
"github.com/shurcooL/users": "v0.0.0-20180125191416-49c67e49c537",
"github.com/shurcooL/webdavfs": "v0.0.0-20170829043945-18c3829fa133",
"github.com/sirupsen/logrus": "v1.3.0",
"github.com/smartystreets/assertions": "v0.0.0-20180927180507-b2de0cb4f26d",
"github.com/smartystreets/goconvey": "v0.0.0-20180222194500-ef6db91d284a",
"github.com/soheilhy/cmux": "v0.1.4",
"github.com/sony/gobreaker": "v0.0.0-20170530031423-e9556a45379e",
"github.com/sourcegraph/annotate": "v0.0.0-20160123013949-f4cad6c6324d",
"github.com/sourcegraph/syntaxhighlight": "v0.0.0-20170531221838-bd320f5d308e",
"github.com/spaolacci/murmur3": "v0.0.0-20180118202830-f09979ecbc72",
"github.com/spf13/afero": "v1.1.2",
"github.com/spf13/cast": "v1.3.0",
"github.com/spf13/cobra": "v0.0.3",
"github.com/spf13/jwalterweatherman": "v1.0.0",
"github.com/spf13/pflag": "v1.0.3",
"github.com/spf13/viper": "v1.3.2",
"github.com/src-d/gcfg": "v1.4.0",
"github.com/stevvooe/resumable": "v0.0.0-20180830230917-22b14a53ba50",
"github.com/streadway/amqp": "v0.0.0-20190402114354-16ed540749f6",
"github.com/stretchr/objx": "v0.2.0",
"github.com/stretchr/testify": "v1.4.0",
"github.com/tarm/serial": "v0.0.0-20180830185346-98f6abe2eb07",
"github.com/tcnksm/go-input": "v0.0.0-20180404061846-548a7d7a8ee8",
"github.com/testcontainers/testcontainer-go": "v0.0.0-20181115231424-8e868ca12c0f",
"github.com/tinylib/msgp": "v1.0.2",
"github.com/tmc/grpc-websocket-proxy": "v0.0.0-20190109142713-0ad062ec5ee5",
"github.com/tmthrgd/atomics": "v0.0.0-20180217065130-6910de195248",
"github.com/tmthrgd/go-bitset": "v0.0.0-20180106085139-4d1be735fbfb",
"github.com/tmthrgd/go-bitwise": "v0.0.0-20170218093117-01bef038b6bd",
"github.com/tmthrgd/go-byte-test": "v0.0.0-20170223110042-2eb5216b83f7",
"github.com/tmthrgd/go-hex": "v0.0.0-20180828131331-d1fb3dbb16a1",
"github.com/tmthrgd/go-memset": "v0.0.0-20180828131805-6f4e59bf1e1d",
"github.com/tmthrgd/go-popcount": "v0.0.0-20180111143836-3918361d3e97",
"github.com/tv42/httpunix": "v0.0.0-20150427012821-b75d8614f926",
"github.com/tylerb/graceful": "v1.2.15",
"github.com/uber-go/atomic": "v1.3.2",
"github.com/uber/jaeger-client-go": "v2.15.0+incompatible",
"github.com/uber/jaeger-lib": "v1.5.0",
"github.com/ugorji/go": "v1.1.7",
"github.com/ugorji/go/codec": "v1.1.7",
"github.com/unrolled/secure": "v0.0.0-20171102162350-0f73fc7feba6",
"github.com/urfave/negroni": "v0.3.0",
"github.com/willf/bitset": "v1.1.9",
"github.com/xanzy/ssh-agent": "v0.2.0",
"github.com/xeipuuv/gojsonpointer": "v0.0.0-20180127040702-4e3ac2762d5f",
"github.com/xeipuuv/gojsonreference": "v0.0.0-20180127040603-bd5ef7bd5415",
"github.com/xeipuuv/gojsonschema": "v0.0.0-20180816142147-da425ebb7609",
"github.com/xiang90/probing": "v0.0.0-20190116061207-43a291ad63a2",
"github.com/xordataexchange/crypt": "v0.0.3-0.20170626215501-b2862e3d0a77",
"github.com/yudai/gojsondiff": "v1.0.0",
"github.com/yudai/golcs": "v0.0.0-20170316035057-ecda9a501e82",
"github.com/yudai/pp": "v2.0.1+incompatible",
"github.com/yuin/gopher-lua": "v0.0.0-20190206043414-8bfc7677f583",
"go.etcd.io/etcd": "v3.3.11+incompatible",
"go.opencensus.io": "v0.22.1",
"go.uber.org/atomic": "v1.3.2",
"go.uber.org/multierr": "v1.1.0",
"go.uber.org/zap": "v1.9.1",
"go4.org": "v0.0.0-20180809161055-417644f6feb5",
"gocloud.dev": "v0.12.0",
"golang.org/x/build": "v0.0.0-20190111050920-041ab4dc3f9d",
"golang.org/x/crypto": "v0.0.0-20190701094942-4def268fd1a4",
"golang.org/x/exp": "v0.0.0-20190121172915-509febef88a4",
"golang.org/x/lint": "v0.0.0-20190313153728-d0100b6bd8b3",
"golang.org/x/net": "v0.0.0-20190921015927-1a5e07d1ff72",
"golang.org/x/oauth2": "v0.0.0-20190402181905-9f3314589c9a",
"golang.org/x/perf": "v0.0.0-20180704124530-6e6d33e29852",
"golang.org/x/sync": "v0.0.0-20190911185100-cd5d95a43a6e",
"golang.org/x/sys": "v0.0.0-20190801041406-cbf593c0f2f3",
"golang.org/x/text": "v0.3.2",
"golang.org/x/time": "v0.0.0-20190308202827-9d24e82272b4",
"golang.org/x/tools": "v0.0.0-20190312170243-e65039ee4138",
"golang.org/x/xerrors": "v0.0.0-20190717185122-a985d3407aa7",
"gonum.org/v1/gonum": "v0.0.0-20181121035319-3f7ecaa7e8ca",
"gonum.org/v1/netlib": "v0.0.0-20181029234149-ec6d1f5cefe6",
"google.golang.org/api": "v0.4.0",
"google.golang.org/appengine": "v1.5.0",
"google.golang.org/genproto": "v0.0.0-20190502173448-54afdca5d873",
"google.golang.org/grpc": "v1.20.1",
"gopkg.in/Graylog2/go-gelf.v2": "v2.0.0-20180326133423-4dbb9d721348",
"gopkg.in/alecthomas/kingpin.v2": "v2.2.6",
"gopkg.in/asn1-ber.v1": "v1.0.0-20181015200546-f715ec2f112d",
"gopkg.in/check.v1": "v1.0.0-20180628173108-788fd7840127",
"gopkg.in/fatih/pool.v2": "v2.0.0",
"gopkg.in/fsnotify.v1": "v1.4.7",
"gopkg.in/go-playground/assert.v1": "v1.2.1",
"gopkg.in/go-playground/validator.v8": "v8.18.2",
"gopkg.in/gorethink/gorethink.v4": "v4.1.0",
"gopkg.in/inf.v0": "v0.9.1",
"gopkg.in/ldap.v2": "v2.5.1",
"gopkg.in/mgo.v2": "v2.0.0-20180705113604-9856a29383ce",
"gopkg.in/ory-am/dockertest.v2": "v2.2.3",
"gopkg.in/pipe.v2": "v2.0.0-20140414041502-3c2ca4d52544",
"gopkg.in/resty.v1": "v1.12.0",
"gopkg.in/robfig/cron.v2": "v2.0.0-20150107220207-be2e0b0deed5",
"gopkg.in/square/go-jose.v2": "v2.2.2",
"gopkg.in/src-d/go-billy.v4": "v4.2.1",
"gopkg.in/src-d/go-git-fixtures.v3": "v3.1.1",
"gopkg.in/src-d/go-git.v4": "v4.8.1",
"gopkg.in/tomb.v1": "v1.0.0-20141024135613-dd632973f1e7",
"gopkg.in/vmihailenco/msgpack.v2": "v2.9.1",
"gopkg.in/warnings.v0": "v0.1.2",
"gopkg.in/yaml.v2": "v2.2.2",
"gotest.tools": "v2.2.0+incompatible",
"grpc.go4.org": "v0.0.0-20170609214715-11d0a25b4919",
"honnef.co/go/tools": "v0.0.0-20190106161140-3f1c8253044a",
"k8s.io/api": "v0.0.0-20181221193117-173ce66c1e39",
"k8s.io/apimachinery": "v0.0.0-20190119020841-d41becfba9ee",
"k8s.io/klog": "v0.1.0",
"layeh.com/radius": "v0.0.0-20190118135028-0f678f039617",
"pack.ag/amqp": "v0.8.0",
"sigs.k8s.io/yaml": "v1.1.0",
"sourcegraph.com/sourcegraph/go-diff": "v0.5.0",
"sourcegraph.com/sqs/pbtypes": "v0.0.0-20180604144634-d3ebe8f20ae4"
}
},
"v1.1.0": {
"Go": "1.14.0",
"Deps": {
"cloud.google.com/go": "v0.39.0",
"contrib.go.opencensus.io/exporter/aws": "v0.0.0-20181029163544-2befc13012d0",
"contrib.go.opencensus.io/exporter/jaeger": "v0.0.0-20190424224017-5b8293c22f36",
"contrib.go.opencensus.io/exporter/ocagent": "v0.6.0",
"contrib.go.opencensus.io/exporter/prometheus": "v0.0.0-20190424224027-f02a6e68f94d",
"contrib.go.opencensus.io/exporter/stackdriver": "v0.7.0",
"contrib.go.opencensus.io/exporter/zipkin": "v0.0.0-20190424224031-c96617f51dc6",
"contrib.go.opencensus.io/integrations/ocsql": "v0.1.4",
"contrib.go.opencensus.io/resource": "v0.1.1",
"dmitri.shuralyov.com/app/changes": "v0.0.0-20180602232624-0a106ad413e3",
"dmitri.shuralyov.com/html/belt": "v0.0.0-20180602232347-f7d459c86be0",
"dmitri.shuralyov.com/service/change": "v0.0.0-20181023043359-a85b471d5412",
"dmitri.shuralyov.com/state": "v0.0.0-20180228185332-28bcc343414c",
"git.apache.org/thrift.git": "v0.12.0",
"github.com/Azure/azure-amqp-common-go": "v1.1.4",
"github.com/Azure/azure-amqp-common-go/v2": "v2.1.0",
"github.com/Azure/azure-pipeline-go": "v0.2.1",
"github.com/Azure/azure-sdk-for-go": "v30.1.0+incompatible",
"github.com/Azure/azure-service-bus-go": "v0.9.1",
"github.com/Azure/azure-storage-blob-go": "v0.8.0",
"github.com/Azure/go-ansiterm": "v0.0.0-20170929234023-d6e3b3328b78",
"github.com/Azure/go-autorest": "v12.0.0+incompatible",
"github.com/BurntSushi/toml": "v0.3.1",
"github.com/DataDog/datadog-go": "v0.0.0-20180822151419-281ae9f2d895",
"github.com/DataDog/zstd": "v1.4.0",
"github.com/GoogleCloudPlatform/cloudsql-proxy": "v0.0.0-20190605020000-c4ba1fdf4d36",
"github.com/Jeffail/gabs": "v1.1.1",
"github.com/Masterminds/semver": "v1.4.2",
"github.com/Masterminds/sprig": "v2.16.0+incompatible",
"github.com/Microsoft/go-winio": "v0.4.11",
"github.com/NYTimes/gziphandler": "v1.0.1",
"github.com/Nvveen/Gotty": "v0.0.0-20120604004816-cd527374f1e5",
"github.com/OneOfOne/xxhash": "v1.2.2",
"github.com/PuerkitoBio/goquery": "v1.4.0",
"github.com/RoaringBitmap/roaring": "v0.4.16",
"github.com/SAP/go-hdb": "v0.13.2",
"github.com/SermoDigital/jose": "v0.9.2-0.20161205224733-f6df55f235c2",
"github.com/Shopify/sarama": "v1.22.1",
"github.com/Shopify/toxiproxy": "v2.1.4+incompatible",
"github.com/alcortesm/tgz": "v0.0.0-20161220082320-9c5fe88206d7",
"github.com/alecthomas/assert": "v0.0.0-20170929043011-405dbfeb8e38",
"github.com/alecthomas/chroma": "v0.6.3",
"github.com/alecthomas/colour": "v0.0.0-20160524082231-60882d9e2721",
"github.com/alecthomas/kingpin": "v2.2.6+incompatible",
"github.com/alecthomas/kong": "v0.1.15",
"github.com/alecthomas/repr": "v0.0.0-20180818092828-117648cd9897",
"github.com/alecthomas/template": "v0.0.0-20160405071501-a0175ee3bccc",
"github.com/alecthomas/units": "v0.0.0-20151022065526-2efee857e7cf",
"github.com/alexeyco/binder": "v0.0.0-20180729220023-2a21303f588a",
"github.com/aliyun/alibaba-cloud-sdk-go": "v0.0.0-20190122153857-e0ace9b64d22",
"github.com/andreyvit/diff": "v0.0.0-20170406064948-c7f18ee00883",
"github.com/andybalholm/cascadia": "v1.0.0",
"github.com/anmitsu/go-shlex": "v0.0.0-20161002113705-648efa622239",
"github.com/antihax/optional": "v0.0.0-20180407024304-ca021399b1a6",
"github.com/antlr/antlr4": "v0.0.0-20190223165740-dade65a895c2",
"github.com/aokoli/goutils": "v1.0.1",
"github.com/apache/arrow/go/arrow": "v0.0.0-20181217213538-e9ed591db9cb",
"github.com/apache/thrift": "v0.12.0",
"github.com/apex/log": "v1.1.0",
"github.com/araddon/gou": "v0.0.0-20190110011759-c797efecbb61",
"github.com/armon/consul-api": "v0.0.0-20180202201655-eb2c6b5be1b6",
"github.com/armon/go-metrics": "v0.0.0-20180917152333-f0300d1749da",
"github.com/armon/go-radix": "v1.0.0",
"github.com/asaskevich/govalidator": "v0.0.0-20180720115003-f9ffefc3facf",
"github.com/auth0-community/go-auth0": "v1.0.0",
"github.com/aws/aws-lambda-go": "v1.10.0",
"github.com/aws/aws-sdk-go": "v1.19.45",
"github.com/benbjohnson/tmpl": "v1.0.0",
"github.com/beorn7/perks": "v1.0.0",
"github.com/bgentry/speakeasy": "v0.1.0",
"github.com/bitly/go-hostpool": "v0.0.0-20171023180738-a3a6125de932",
"github.com/blakesmith/ar": "v0.0.0-20150311145944-8bd4349a67f2",
"github.com/bmizerany/assert": "v0.0.0-20160611221934-b7ed37b82869",
"github.com/boltdb/bolt": "v1.3.1",
"github.com/boombuler/barcode": "v1.0.0",
"github.com/bouk/httprouter": "v0.0.0-20160817010721-ee8b3818a7f5",
"github.com/bradfitz/go-smtpd": "v0.0.0-20170404230938-deb6d6237625",
"github.com/briankassouf/jose": "v0.9.1",
"github.com/c-bata/go-prompt": "v0.2.2",
"github.com/caarlos0/ctrlc": "v1.0.0",
"github.com/campoy/unique": "v0.0.0-20180121183637-88950e537e7e",
"github.com/catalinc/hashcash": "v0.0.0-20161205220751-e6bc29ff4de9",
"github.com/cenkalti/backoff": "v2.1.1+incompatible",
"github.com/census-instrumentation/opencensus-proto": "v0.2.1",
"github.com/centrify/cloud-golang-sdk": "v0.0.0-20180119173102-7c97cc6fde16",
"github.com/cespare/xxhash": "v1.1.0",
"github.com/chrismalek/oktasdk-go": "v0.0.0-20181212195951-3430665dfaa0",
"github.com/chzyer/logex": "v1.1.10",
"github.com/chzyer/readline": "v0.0.0-20180603132655-2972be24d48e",
"github.com/chzyer/test": "v0.0.0-20180213035817-a1ea475d72b1",
"github.com/circonus-labs/circonus-gometrics": "v2.2.5+incompatible",
"github.com/circonus-labs/circonusllhist": "v0.1.3",
"github.com/clbanning/mxj": "v1.8.4",
"github.com/client9/misspell": "v0.3.4",
"github.com/codahale/hdrhistogram": "v0.0.0-20161010025455-3a0bb77429bd",
"github.com/codegangsta/negroni": "v1.0.0",
"github.com/containerd/continuity": "v0.0.0-20181203112020-004b46473808",
"github.com/coreos/bbolt": "v1.3.1-coreos.6",
"github.com/coreos/etcd": "v3.3.13+incompatible",
"github.com/coreos/go-etcd": "v2.0.0+incompatible",
"github.com/coreos/go-oidc": "v2.0.0+incompatible",
"github.com/coreos/go-semver": "v0.2.0",
"github.com/coreos/go-systemd": "v0.0.0-20181012123002-c6f51f82210d",
"github.com/coreos/pkg": "v0.0.0-20180928190104-399ea9e2e55f",
"github.com/dancannon/gorethink": "v4.0.0+incompatible",
"github.com/danwakefield/fnmatch": "v0.0.0-20160403171240-cbb64ac3d964",
"github.com/davecgh/go-spew": "v1.1.1",
"github.com/denisenkom/go-mssqldb": "v0.0.0-20190121005146-b04fd42d9952",
"github.com/devigned/tab": "v0.1.1",
"github.com/devopsfaith/bloomfilter": "v0.0.0-20190317200532-4687d0b9aa2a",
"github.com/devopsfaith/flatmap": "v0.0.0-20190628155411-90b768d6668b",
"github.com/devopsfaith/krakend": "v1.1.0",
"github.com/devopsfaith/krakend-amqp": "v0.0.0-20190315181526-5f14dc177694",
"github.com/devopsfaith/krakend-botdetector": "v0.0.0-20190711145323-c5fcb969addb",
"github.com/devopsfaith/krakend-cel": "v0.0.0-20190502130550-d6872fd4f97e",
"github.com/devopsfaith/krakend-circuitbreaker": "v0.0.0-20190405155253-cf7c0a538981",
"github.com/devopsfaith/krakend-cobra": "v0.0.0-20190403130617-3f056666a23e",
"github.com/devopsfaith/krakend-consul": "v0.0.0-20190130102841-7623a4da32a1",
"github.com/devopsfaith/krakend-cors": "v0.0.0-20190921115348-8233f1195319",
"github.com/devopsfaith/krakend-etcd": "v0.0.0-20180215165313-bd645943ff8c",
"github.com/devopsfaith/krakend-flexibleconfig": "v0.0.0-20190408143848-fc4ef2b4d5cf",
"github.com/devopsfaith/krakend-gelf": "v0.0.0-20181019222239-59c0250b1c60",
"github.com/devopsfaith/krakend-gologging": "v0.0.0-20190131142345-f3f256584ecc",
"github.com/devopsfaith/krakend-httpcache": "v0.0.0-20181030153148-8474476ff874",
"github.com/devopsfaith/krakend-httpsecure": "v0.0.0-20191009151918-298638962e76",
"github.com/devopsfaith/krakend-jose": "v1.1.0",
"github.com/devopsfaith/krakend-jsonschema": "v0.0.0-20190124184701-5705a5015d7a",
"github.com/devopsfaith/krakend-lambda": "v0.0.0-20200123123306-cce9724ca461",
"github.com/devopsfaith/krakend-logstash": "v0.0.0-20190131142205-17f4745d3502",
"github.com/devopsfaith/krakend-lua": "v1.1.0",
"github.com/devopsfaith/krakend-martian": "v0.0.0-20190424133031-29314a524a91",
"github.com/devopsfaith/krakend-metrics": "v0.0.0-20190114200758-1e2c2a1f6a62",
"github.com/devopsfaith/krakend-oauth2-clientcredentials": "v1.1.0",
"github.com/devopsfaith/krakend-opencensus": "v1.1.0",
"github.com/devopsfaith/krakend-pubsub": "v0.0.0-20191115170019-2fe979e965cd",
"github.com/devopsfaith/krakend-ratelimit": "v1.1.0",
"github.com/devopsfaith/krakend-rss": "v0.0.0-20180408220939-4c18c62a99ee",
"github.com/devopsfaith/krakend-usage": "v0.0.0-20181025134340-476779c0a36c",
"github.com/devopsfaith/krakend-viper": "v0.0.0-20190407170411-1cbb76813774",
"github.com/devopsfaith/krakend-xml": "v0.0.0-20190713155104-2cd38185308f",
"github.com/dgrijalva/jwt-go": "v3.2.0+incompatible",
"github.com/dgryski/go-bitstream": "v0.0.0-20180413035011-3522498ce2c8",
"github.com/dimchansky/utfbom": "v1.1.0",
"github.com/dimfeld/httptreemux": "v5.0.1+incompatible",
"github.com/dlclark/regexp2": "v1.1.6",
"github.com/dnaeon/go-vcr": "v1.0.1",
"github.com/docker/distribution": "v2.6.2+incompatible",
"github.com/docker/docker": "v0.0.0-20180422163414-57142e89befe",
"github.com/docker/go-connections": "v0.4.0",
"github.com/docker/go-units": "v0.3.3",
"github.com/duosecurity/duo_api_golang": "v0.0.0-20190107154727-539434bf0d45",
"github.com/dustin/go-humanize": "v1.0.0",
"github.com/eapache/go-resiliency": "v1.1.0",
"github.com/eapache/go-xerial-snappy": "v0.0.0-20180814174437-776d5712da21",
"github.com/eapache/queue": "v1.1.0",
"github.com/elazarl/go-bindata-assetfs": "v1.0.0",
"github.com/emirpasic/gods": "v1.9.0",
"github.com/envoyproxy/go-control-plane": "v0.9.1-0.20191026205805-5f8ba28d4473",
"github.com/envoyproxy/protoc-gen-validate": "v0.1.0",
"github.com/fatih/color": "v1.7.0",
"github.com/fatih/structs": "v1.1.0",
"github.com/flynn/go-shlex": "v0.0.0-20150515145356-3f9db97f8568",
"github.com/fortytw2/leaktest": "v1.3.0",
"github.com/fsnotify/fsnotify": "v1.4.7",
"github.com/fullsailor/pkcs7": "v0.0.0-20180613152042-8306686428a5",
"github.com/gammazero/deque": "v0.0.0-20180920172122-f6adf94963e4",
"github.com/gammazero/workerpool": "v0.0.0-20181230203049-86a96b5d5d92",
"github.com/garyburd/redigo": "v1.6.0",
"github.com/getkin/kin-openapi": "v0.1.0",
"github.com/ghodss/yaml": "v1.0.0",
"github.com/gin-contrib/sse": "v0.1.0",
"github.com/gin-gonic/gin": "v1.5.0",
"github.com/gliderlabs/ssh": "v0.1.1",
"github.com/glycerine/go-unsnap-stream": "v0.0.0-20180323001048-9f0cb55181dd",
"github.com/glycerine/goconvey": "v0.0.0-20180728074245-46e3a41ad493",
"github.com/go-chi/chi": "v4.0.1+incompatible",
"github.com/go-contrib/uuid": "v1.2.0",
"github.com/go-errors/errors": "v1.0.1",
"github.com/go-ini/ini": "v1.37.0",
"github.com/go-kit/kit": "v0.8.0",
"github.com/go-ldap/ldap": "v3.0.0+incompatible",
"github.com/go-logfmt/logfmt": "v0.3.0",
"github.com/go-playground/locales": "v0.12.1",
"github.com/go-playground/universal-translator": "v0.16.0",
"github.com/go-sql-driver/mysql": "v1.4.1",
"github.com/go-stack/stack": "v1.8.0",
"github.com/go-stomp/stomp": "v2.0.2+incompatible",
"github.com/go-test/deep": "v1.0.1",
"github.com/gocql/gocql": "v0.0.0-20190122205811-30de9a1866a8",
"github.com/gogo/protobuf": "v1.2.0",
"github.com/golang/gddo": "v0.0.0-20181116215533-9bd4a3295021",
"github.com/golang/glog": "v0.0.0-20160126235308-23def4e6c14b",
"github.com/golang/groupcache": "v0.0.0-20200121045136-8c9f03a8e57e",
"github.com/golang/lint": "v0.0.0-20180702182130-06c8688daad7",
"github.com/golang/mock": "v1.2.0",
"github.com/golang/protobuf": "v1.3.4",
"github.com/golang/snappy": "v0.0.1",
"github.com/google/btree": "v1.0.0",
"github.com/google/cel-go": "v0.2.0",
"github.com/google/cel-spec": "v0.2.0",
"github.com/google/go-cmp": "v0.3.1",
"github.com/google/go-github": "v17.0.0+incompatible",
"github.com/google/go-querystring": "v1.0.0",
"github.com/google/go-replayers/grpcreplay": "v0.1.0",
"github.com/google/go-replayers/httpreplay": "v0.1.0",
"github.com/google/gofuzz": "v1.0.0",
"github.com/google/martian": "v2.1.1-0.20190517191504-25dcb96d9e51+incompatible",
"github.com/google/pprof": "v0.0.0-20181206194817-3ea8567a2e57",
"github.com/google/subcommands": "v1.0.1",
"github.com/google/uuid": "v1.1.1",
"github.com/google/wire": "v0.3.0",
"github.com/googleapis/gax-go": "v2.0.2+incompatible",
"github.com/googleapis/gax-go/v2": "v2.0.5",
"github.com/gopherjs/gopherjs": "v0.0.0-20181017120253-0766667cb4d1",
"github.com/goreleaser/goreleaser": "v0.94.0",
"github.com/goreleaser/nfpm": "v0.9.7",
"github.com/gorhill/cronexpr": "v0.0.0-20180427100037-88b0669f7d75",
"github.com/gorilla/context": "v1.1.1",
"github.com/gorilla/mux": "v1.6.2",
"github.com/gorilla/websocket": "v1.4.0",
"github.com/gotestyourself/gotestyourself": "v2.2.0+incompatible",
"github.com/gregjones/httpcache": "v0.0.0-20190611155906-901d90724c79",
"github.com/grpc-ecosystem/go-grpc-middleware": "v1.0.0",
"github.com/grpc-ecosystem/go-grpc-prometheus": "v1.2.0",
"github.com/grpc-ecosystem/grpc-gateway": "v1.9.4",
"github.com/hailocab/go-hostpool": "v0.0.0-20160125115350-e80d13ce29ed",
"github.com/hashicorp/consul": "v1.4.0",
"github.com/hashicorp/errwrap": "v1.0.0",
"github.com/hashicorp/go-cleanhttp": "v0.5.0",
"github.com/hashicorp/go-gcp-common": "v0.0.0-20180425173946-763e39302965",
"github.com/hashicorp/go-hclog": "v0.0.0-20190109152822-4783caec6f2e",
"github.com/hashicorp/go-immutable-radix": "v1.0.0",
"github.com/hashicorp/go-memdb": "v0.0.0-20181108192425-032f93b25bec",
"github.com/hashicorp/go-msgpack": "v0.5.3",
"github.com/hashicorp/go-multierror": "v1.0.0",
"github.com/hashicorp/go-plugin": "v0.0.0-20181212150838-f444068e8f5a",
"github.com/hashicorp/go-retryablehttp": "v0.5.1",
"github.com/hashicorp/go-rootcerts": "v1.0.0",
"github.com/hashicorp/go-sockaddr": "v1.0.1",
"github.com/hashicorp/go-uuid": "v1.0.1",
"github.com/hashicorp/go-version": "v1.1.0",
"github.com/hashicorp/golang-lru": "v0.5.4",
"github.com/hashicorp/hcl": "v1.0.0",
"github.com/hashicorp/memberlist": "v0.1.0",
"github.com/hashicorp/nomad": "v0.8.7",
"github.com/hashicorp/raft": "v1.0.0",
"github.com/hashicorp/serf": "v0.8.1",
"github.com/hashicorp/vault": "v1.0.2",
"github.com/hashicorp/vault-plugin-auth-alicloud": "v0.0.0-20181109180636-f278a59ca3e8",
"github.com/hashicorp/vault-plugin-auth-azure": "v0.0.0-20181207232528-4c0b46069a22",
"github.com/hashicorp/vault-plugin-auth-centrify": "v0.0.0-20180816201131-66b0a34a58bf",
"github.com/hashicorp/vault-plugin-auth-gcp": "v0.0.0-20181210200133-4d63bbfe6fcf",
"github.com/hashicorp/vault-plugin-auth-jwt": "v0.0.0-20190117220024-3e8048f1026f",
"github.com/hashicorp/vault-plugin-auth-kubernetes": "v0.0.0-20181130162533-091d9e5d5fab",
"github.com/hashicorp/vault-plugin-secrets-ad": "v0.0.0-20181109182834-540c0b6f1f11",
"github.com/hashicorp/vault-plugin-secrets-alicloud": "v0.0.0-20181109181453-2aee79cc5cbf",
"github.com/hashicorp/vault-plugin-secrets-azure": "v0.0.0-20181207232500-0087bdef705a",
"github.com/hashicorp/vault-plugin-secrets-gcp": "v0.0.0-20180921173200-d6445459e80c",
"github.com/hashicorp/vault-plugin-secrets-gcpkms": "v0.0.0-20190116164938-d6b25b0b4a39",
"github.com/hashicorp/vault-plugin-secrets-kv": "v0.0.0-20190115203747-edbfe287c5d9",
"github.com/hashicorp/yamux": "v0.0.0-20181012175058-2f1d1f20f75d",
"github.com/hpcloud/tail": "v1.0.0",
"github.com/huandu/xstrings": "v1.0.0",
"github.com/imdario/mergo": "v0.3.6",
"github.com/inconshreveable/mousetrap": "v1.0.0",
"github.com/influxdata/flux": "v0.13.0",
"github.com/influxdata/influxdb": "v1.7.4",
"github.com/influxdata/influxql": "v0.0.0-20180925231337-1cbfca8e56b6",
"github.com/influxdata/line-protocol": "v0.0.0-20180522152040-32c6aa80de5e",
"github.com/influxdata/platform": "v0.0.0-20190117200541-d500d3cf5589",
"github.com/influxdata/tdigest": "v0.0.0-20181121200506-bf2b5ad3c0a9",
"github.com/influxdata/usage-client": "v0.0.0-20160829180054-6d3895376368",
"github.com/jbenet/go-context": "v0.0.0-20150711004518-d14ea06fba99",
"github.com/jeffchao/backoff": "v0.0.0-20140404060208-9d7fd7aa17f2",
"github.com/jefferai/jsonx": "v0.0.0-20160721235117-9cc31c3135ee",
"github.com/jellevandenhooff/dkim": "v0.0.0-20150330215556-f50fe3d243e1",
"github.com/jessevdk/go-flags": "v1.4.0",
"github.com/jmespath/go-jmespath": "v0.0.0-20180206201540-c2b33e8439af",
"github.com/joho/godotenv": "v1.3.0",
"github.com/jonboulle/clockwork": "v0.1.0",
"github.com/json-iterator/go": "v1.1.8",
"github.com/jstemmer/go-junit-report": "v0.0.0-20190106144839-af01ea7f8024",
"github.com/jsternberg/zap-logfmt": "v1.2.0",
"github.com/jtolds/gls": "v4.20.0+incompatible",
"github.com/juju/ratelimit": "v1.0.1",
"github.com/julienschmidt/httprouter": "v1.2.0",
"github.com/jwilder/encoding": "v0.0.0-20170811194829-b4e1701a28ef",
"github.com/k0kubun/colorstring": "v0.0.0-20150214042306-9440f1994b88",
"github.com/kevinburke/go-bindata": "v3.11.0+incompatible",
"github.com/kevinburke/ssh_config": "v0.0.0-20180830205328-81db2a75821e",
"github.com/keybase/go-crypto": "v0.0.0-20181127160227-255a5089e85a",
"github.com/kisielk/gotool": "v1.0.0",
"github.com/konsorten/go-windows-terminal-sequences": "v1.0.1",
"github.com/kpacha/opencensus-influxdb": "v0.0.0-20181102202715-663e2683a27c",
"github.com/kr/logfmt": "v0.0.0-20140226030751-b84e30acd515",
"github.com/kr/pretty": "v0.1.0",
"github.com/kr/pty": "v1.1.3",
"github.com/kr/text": "v0.1.0",
"github.com/leodido/go-urn": "v1.1.0",
"github.com/letgoapp/krakend-consul": "v0.0.0-20190130102841-7623a4da32a1",
"github.com/letgoapp/krakend-influx": "v0.0.0-20190214142340-d2fc9466bb3a",
"github.com/lib/pq": "v1.1.1",
"github.com/magiconair/properties": "v1.8.0",
"github.com/mattbaird/elastigo": "v0.0.0-20170123220020-2fe47fd29e4b",
"github.com/mattn/go-colorable": "v0.1.2",
"github.com/mattn/go-ieproxy": "v0.0.0-20190610004146-91bb50d98149",
"github.com/mattn/go-isatty": "v0.0.9",
"github.com/mattn/go-runewidth": "v0.0.3",
"github.com/mattn/go-tty": "v0.0.0-20180907095812-13ff1204f104",
"github.com/mattn/go-zglob": "v0.0.0-20180803001819-2ea3427bfa53",
"github.com/matttproud/golang_protobuf_extensions": "v1.0.1",
"github.com/michaelklishin/rabbit-hole": "v1.4.0",
"github.com/microcosm-cc/bluemonday": "v1.0.1",
"github.com/miekg/dns": "v1.1.1",
"github.com/mitchellh/cli": "v1.0.0",
"github.com/mitchellh/copystructure": "v1.0.0",
"github.com/mitchellh/go-homedir": "v1.1.0",
"github.com/mitchellh/go-testing-interface": "v1.0.0",
"github.com/mitchellh/go-wordwrap": "v1.0.0",
"github.com/mitchellh/hashstructure": "v1.0.0",
"github.com/mitchellh/mapstructure": "v1.1.2",
"github.com/mitchellh/reflectwalk": "v1.0.0",
"github.com/mmcdole/gofeed": "v1.0.0-beta2",
"github.com/mmcdole/goxpp": "v0.0.0-20170720115402-77e4a51a73ed",
"github.com/mna/pigeon": "v1.0.1-0.20180808201053-bb0192cfc2ae",
"github.com/modern-go/concurrent": "v0.0.0-20180306012644-bacd9c7ef1dd",
"github.com/modern-go/reflect2": "v1.0.1",
"github.com/mschoch/smat": "v0.0.0-20160514031455-90eadee771ae",
"github.com/mwitkow/go-conntrack": "v0.0.0-20161129095857-cc309e4a2223",
"github.com/nats-io/gnatsd": "v1.4.1",
"github.com/nats-io/go-nats": "v1.7.2",
"github.com/nats-io/go-nats-streaming": "v0.4.0",
"github.com/nats-io/jwt": "v0.2.6",
"github.com/nats-io/nats-server/v2": "v2.0.0",
"github.com/nats-io/nats-streaming-server": "v0.11.2",
"github.com/nats-io/nats.go": "v1.8.1",
"github.com/nats-io/nkeys": "v0.0.2",
"github.com/nats-io/nuid": "v1.0.1",
"github.com/neelance/astrewrite": "v0.0.0-20160511093645-99348263ae86",
"github.com/neelance/sourcemap": "v0.0.0-20151028013722-8c68805598ab",
"github.com/oklog/run": "v1.0.0",
"github.com/onsi/ginkgo": "v1.7.0",
"github.com/onsi/gomega": "v1.4.3",
"github.com/op/go-logging": "v0.0.0-20160315200505-970db520ece7",
"github.com/opencontainers/go-digest": "v1.0.0-rc1",
"github.com/opencontainers/image-spec": "v1.0.1",
"github.com/opencontainers/runc": "v0.1.1",
"github.com/opentracing/opentracing-go": "v1.1.0",
"github.com/openzipkin/zipkin-go": "v0.1.6",
"github.com/ory-am/common": "v0.4.0",
"github.com/ory/dockertest": "v3.3.4+incompatible",
"github.com/pascaldekloe/goe": "v0.0.0-20180627143212-57f6aae5913c",
"github.com/patrickmn/go-cache": "v2.1.0+incompatible",
"github.com/pborman/uuid": "v1.2.0",
"github.com/pelletier/go-buffruneio": "v0.2.0",
"github.com/pelletier/go-toml": "v1.2.0",
"github.com/philhofer/fwd": "v1.0.0",
"github.com/pierrec/lz4": "v2.0.5+incompatible",
"github.com/pkg/errors": "v0.8.1",
"github.com/pkg/profile": "v1.2.1",
"github.com/pkg/term": "v0.0.0-20180730021639-bffc007b7fd5",
"github.com/pmezard/go-difflib": "v1.0.0",
"github.com/posener/complete": "v1.1.1",
"github.com/pquerna/cachecontrol": "v0.0.0-20180517163645-1555304b9b35",
"github.com/pquerna/otp": "v1.1.0",
"github.com/prometheus/client_golang": "v0.9.4",
"github.com/prometheus/client_model": "v0.0.0-20190812154241-14fe0d1b01d4",
"github.com/prometheus/common": "v0.4.1",
"github.com/prometheus/procfs": "v0.0.6",
"github.com/rcrowley/go-metrics": "v0.0.0-20181016184325-3113b8401b8a",
"github.com/rogpeppe/fastuuid": "v1.2.0",
"github.com/rs/cors": "v1.6.0",
"github.com/russross/blackfriday": "v1.5.2",
"github.com/ryanuber/columnize": "v2.1.0+incompatible",
"github.com/ryanuber/go-glob": "v0.0.0-20170128012129-256dc444b735",
"github.com/samuel/go-zookeeper": "v0.0.0-20180130194729-c4fab1ac1bec",
"github.com/satori/go.uuid": "v1.2.0",
"github.com/sean-/seed": "v0.0.0-20170313163322-e2103e2c3529",
"github.com/segmentio/kafka-go": "v0.1.0",
"github.com/sergi/go-diff": "v1.0.0",
"github.com/shurcooL/component": "v0.0.0-20170202220835-f88ec8f54cc4",
"github.com/shurcooL/events": "v0.0.0-20181021180414-410e4ca65f48",
"github.com/shurcooL/github_flavored_markdown": "v0.0.0-20181002035957-2122de532470",
"github.com/shurcooL/go": "v0.0.0-20180423040247-9e1955d9fb6e",
"github.com/shurcooL/go-goon": "v0.0.0-20170922171312-37c2f522c041",
"github.com/shurcooL/gofontwoff": "v0.0.0-20180329035133-29b52fc0a18d",
"github.com/shurcooL/gopherjslib": "v0.0.0-20160914041154-feb6d3990c2c",
"github.com/shurcooL/highlight_diff": "v0.0.0-20170515013008-09bb4053de1b",
"github.com/shurcooL/highlight_go": "v0.0.0-20181028180052-98c3abbbae20",
"github.com/shurcooL/home": "v0.0.0-20181020052607-80b7ffcb30f9",
"github.com/shurcooL/htmlg": "v0.0.0-20170918183704-d01228ac9e50",
"github.com/shurcooL/httperror": "v0.0.0-20170206035902-86b7830d14cc",
"github.com/shurcooL/httpfs": "v0.0.0-20171119174359-809beceb2371",
"github.com/shurcooL/httpgzip": "v0.0.0-20180522190206-b1c53ac65af9",
"github.com/shurcooL/issues": "v0.0.0-20181008053335-6292fdc1e191",
"github.com/shurcooL/issuesapp": "v0.0.0-20180602232740-048589ce2241",
"github.com/shurcooL/notifications": "v0.0.0-20181007000457-627ab5aea122",
"github.com/shurcooL/octicon": "v0.0.0-20181028054416-fa4f57f9efb2",
"github.com/shurcooL/reactions": "v0.0.0-20181006231557-f2e0b4ca5b82",
"github.com/shurcooL/sanitized_anchor_name": "v0.0.0-20170918181015-86672fcb3f95",
"github.com/shurcooL/users": "v0.0.0-20180125191416-49c67e49c537",
"github.com/shurcooL/webdavfs": "v0.0.0-20170829043945-18c3829fa133",
"github.com/sirupsen/logrus": "v1.3.0",
"github.com/smartystreets/assertions": "v0.0.0-20180927180507-b2de0cb4f26d",
"github.com/smartystreets/goconvey": "v1.6.4",
"github.com/soheilhy/cmux": "v0.1.4",
"github.com/sony/gobreaker": "v0.0.0-20170530031423-e9556a45379e",
"github.com/sourcegraph/annotate": "v0.0.0-20160123013949-f4cad6c6324d",
"github.com/sourcegraph/syntaxhighlight": "v0.0.0-20170531221838-bd320f5d308e",
"github.com/spaolacci/murmur3": "v0.0.0-20180118202830-f09979ecbc72",
"github.com/spf13/afero": "v1.1.2",
"github.com/spf13/cast": "v1.3.0",
"github.com/spf13/cobra": "v0.0.3",
"github.com/spf13/jwalterweatherman": "v1.0.0",
"github.com/spf13/pflag": "v1.0.3",
"github.com/spf13/viper": "v1.3.2",
"github.com/src-d/gcfg": "v1.4.0",
"github.com/stevvooe/resumable": "v0.0.0-20180830230917-22b14a53ba50",
"github.com/streadway/amqp": "v0.0.0-20190827072141-edfb9018d271",
"github.com/stretchr/objx": "v0.2.0",
"github.com/stretchr/testify": "v1.4.0",
"github.com/tarm/serial": "v0.0.0-20180830185346-98f6abe2eb07",
"github.com/tcnksm/go-input": "v0.0.0-20180404061846-548a7d7a8ee8",
"github.com/testcontainers/testcontainer-go": "v0.0.0-20181115231424-8e868ca12c0f",
"github.com/tinylib/msgp": "v1.0.2",
"github.com/tmc/grpc-websocket-proxy": "v0.0.0-20190109142713-0ad062ec5ee5",
"github.com/tmthrgd/atomics": "v0.0.0-20180217065130-6910de195248",
"github.com/tmthrgd/go-bitset": "v0.0.0-20180106085139-4d1be735fbfb",
"github.com/tmthrgd/go-bitwise": "v0.0.0-20170218093117-01bef038b6bd",
"github.com/tmthrgd/go-byte-test": "v0.0.0-20170223110042-2eb5216b83f7",
"github.com/tmthrgd/go-hex": "v0.0.0-20180828131331-d1fb3dbb16a1",
"github.com/tmthrgd/go-memset": "v0.0.0-20180828131805-6f4e59bf1e1d",
"github.com/tmthrgd/go-popcount": "v0.0.0-20180111143836-3918361d3e97",
"github.com/tv42/httpunix": "v0.0.0-20150427012821-b75d8614f926",
"github.com/tylerb/graceful": "v1.2.15",
"github.com/uber-go/atomic": "v1.3.2",
"github.com/uber/jaeger-client-go": "v2.15.0+incompatible",
"github.com/uber/jaeger-lib": "v1.5.0",
"github.com/ugorji/go": "v1.1.7",
"github.com/ugorji/go/codec": "v1.1.7",
"github.com/unrolled/secure": "v0.0.0-20171102162350-0f73fc7feba6",
"github.com/urfave/negroni": "v0.3.0",
"github.com/valyala/fastrand": "v1.0.0",
"github.com/willf/bitset": "v1.1.9",
"github.com/xanzy/ssh-agent": "v0.2.0",
"github.com/xdg/scram": "v0.0.0-20180814205039-7eeb5667e42c",
"github.com/xdg/stringprep": "v1.0.0",
"github.com/xeipuuv/gojsonpointer": "v0.0.0-20180127040702-4e3ac2762d5f",
"github.com/xeipuuv/gojsonreference": "v0.0.0-20180127040603-bd5ef7bd5415",
"github.com/xeipuuv/gojsonschema": "v0.0.0-20180816142147-da425ebb7609",
"github.com/xiang90/probing": "v0.0.0-20190116061207-43a291ad63a2",
"github.com/xordataexchange/crypt": "v0.0.3-0.20170626215501-b2862e3d0a77",
"github.com/yudai/gojsondiff": "v1.0.0",
"github.com/yudai/golcs": "v0.0.0-20170316035057-ecda9a501e82",
"github.com/yudai/pp": "v2.0.1+incompatible",
"github.com/yuin/gopher-lua": "v0.0.0-20190206043414-8bfc7677f583",
"go.etcd.io/etcd": "v3.3.11+incompatible",
"go.opencensus.io": "v0.22.3",
"go.uber.org/atomic": "v1.3.2",
"go.uber.org/multierr": "v1.1.0",
"go.uber.org/zap": "v1.9.1",
"go4.org": "v0.0.0-20180809161055-417644f6feb5",
"gocloud.dev": "v0.18.0",
"gocloud.dev/pubsub/kafkapubsub": "v0.18.0",
"gocloud.dev/pubsub/natspubsub": "v0.18.0",
"gocloud.dev/pubsub/rabbitpubsub": "v0.18.0",
"golang.org/x/build": "v0.0.0-20190111050920-041ab4dc3f9d",
"golang.org/x/crypto": "v0.0.0-20190701094942-4def268fd1a4",
"golang.org/x/exp": "v0.0.0-20190121172915-509febef88a4",
"golang.org/x/lint": "v0.0.0-20190409202823-959b441ac422",
"golang.org/x/net": "v0.0.0-20200301022130-244492dfa37a",
"golang.org/x/oauth2": "v0.0.0-20190604053449-0f29369cfe45",
"golang.org/x/perf": "v0.0.0-20180704124530-6e6d33e29852",
"golang.org/x/sync": "v0.0.0-20190911185100-cd5d95a43a6e",
"golang.org/x/sys": "v0.0.0-20200302083256-062a44052db1",
"golang.org/x/text": "v0.3.2",
"golang.org/x/time": "v0.0.0-20191024005414-555d28b269f0",
"golang.org/x/tools": "v0.0.0-20190606124116-d0a3d012864b",
"golang.org/x/xerrors": "v0.0.0-20190717185122-a985d3407aa7",
"gonum.org/v1/gonum": "v0.0.0-20181121035319-3f7ecaa7e8ca",
"gonum.org/v1/netlib": "v0.0.0-20181029234149-ec6d1f5cefe6",
"google.golang.org/api": "v0.7.0",
"google.golang.org/appengine": "v1.6.1",
"google.golang.org/genproto": "v0.0.0-20200302123026-7795fca6ccb1",
"google.golang.org/grpc": "v1.27.1",
"gopkg.in/Graylog2/go-gelf.v2": "v2.0.0-20180326133423-4dbb9d721348",
"gopkg.in/alecthomas/kingpin.v2": "v2.2.6",
"gopkg.in/asn1-ber.v1": "v1.0.0-20181015200546-f715ec2f112d",
"gopkg.in/check.v1": "v1.0.0-20180628173108-788fd7840127",
"gopkg.in/fatih/pool.v2": "v2.0.0",
"gopkg.in/fsnotify.v1": "v1.4.7",
"gopkg.in/go-playground/assert.v1": "v1.2.1",
"gopkg.in/go-playground/validator.v8": "v8.18.2",