-
Notifications
You must be signed in to change notification settings - Fork 19
/
gomod2nix.toml
3455 lines (3025 loc) · 126 KB
/
gomod2nix.toml
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
["cloud.google.com/go"]
sumVersion = "v0.37.0"
["cloud.google.com/go".fetch]
type = "git"
url = "https://github.com/googleapis/google-cloud-go"
rev = "f52f9bc132541d2aa914f42100c36d10b1ef7e0c"
sha256 = "1c1cw1b307nmmlg9p6si3viyrq8cdl80hgv4sksg33cijmz22irq"
["dmitri.shuralyov.com/app/changes"]
sumVersion = "v0.0.0-20180602232624-0a106ad413e3"
["dmitri.shuralyov.com/app/changes".fetch]
type = "git"
url = "https://dmitri.shuralyov.com/app/changes"
rev = "0a106ad413e3d333da336ce3a90970dc87151beb"
sha256 = "0yxk8qh8cg35nhi9jhj6bi7vyrxyb784kil2y29d5g4hpvlzgim0"
["dmitri.shuralyov.com/gpu/mtl"]
sumVersion = "v0.0.0-20190408044501-666a987793e9"
["dmitri.shuralyov.com/gpu/mtl".fetch]
type = "git"
url = "https://dmitri.shuralyov.com/gpu/mtl"
rev = "666a987793e9432fbb48592aa2f3bf3463685dfa"
sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z"
["dmitri.shuralyov.com/html/belt"]
sumVersion = "v0.0.0-20180602232347-f7d459c86be0"
["dmitri.shuralyov.com/html/belt".fetch]
type = "git"
url = "https://dmitri.shuralyov.com/html/belt"
rev = "f7d459c86be0d89cab0b8a0694d6f9a5586cd184"
sha256 = "0gqaxr3ba3n03r3qx851ivp292q458gnlhv1ry6msvc0z3s7wyvi"
["dmitri.shuralyov.com/service/change"]
sumVersion = "v0.0.0-20181023043359-a85b471d5412"
["dmitri.shuralyov.com/service/change".fetch]
type = "git"
url = "https://dmitri.shuralyov.com/service/change"
rev = "a85b471d5412b6580fdd6bdbaedc2365efe16812"
sha256 = "17wwzk29547j8f06dgdwmwqpi2jyvky84g0s0z80hlj90w6xxal0"
["dmitri.shuralyov.com/state"]
sumVersion = "v0.0.0-20180228185332-28bcc343414c"
["dmitri.shuralyov.com/state".fetch]
type = "git"
url = "https://dmitri.shuralyov.com/state"
rev = "28bcc343414c6adcd7b6911f9d0ef1ad6fbf30ae"
sha256 = "0ag65j0b7s63v91fykxi5h0d5nm35x0ca0gm3bmbanrr4955xjb2"
["git.apache.org/thrift.git"]
sumVersion = "v0.14.2"
vendorPath = "github.com/apache/thrift"
["git.apache.org/thrift.git".fetch]
type = "git"
url = "https://github.com/apache/thrift"
rev = "57e24caa86afa8bacf444e66a9aef6203831416c"
sha256 = "0wmnb3h0xq8qc5a9g9lliszh6qg254f5856h72viab46bizmdd4a"
["github.com/99designs/gqlgen"]
sumVersion = "v0.13.0"
["github.com/99designs/gqlgen".fetch]
type = "git"
url = "https://github.com/99designs/gqlgen"
rev = "07c1f93b3d05a07dd7403c1f99793b1976228a48"
sha256 = "1wflzghc0v5hqmprhjzydak7pkxv12dlcqlhpam8k5sp9x9pb94v"
["github.com/99designs/keyring"]
sumVersion = "v1.1.6"
["github.com/99designs/keyring".fetch]
type = "git"
url = "https://github.com/99designs/keyring"
rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea"
sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn"
["github.com/AndreasBriese/bbloom"]
sumVersion = "v0.0.0-20190825152654-46b345b51c96"
["github.com/AndreasBriese/bbloom".fetch]
type = "git"
url = "https://github.com/AndreasBriese/bbloom"
rev = "46b345b51c9667fcbaad862a370d73bd7aa802b6"
sha256 = "021c0pl7r4pc9yslqhbjg9wr6dm03lnzf94a0b9c0hmg0bhhkln9"
["github.com/BurntSushi/toml"]
sumVersion = "v0.3.1"
["github.com/BurntSushi/toml".fetch]
type = "git"
url = "https://github.com/BurntSushi/toml"
rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005"
sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"
["github.com/BurntSushi/xgb"]
sumVersion = "v0.0.0-20160522181843-27f122750802"
["github.com/BurntSushi/xgb".fetch]
type = "git"
url = "https://github.com/BurntSushi/xgb"
rev = "27f122750802c950b2c869a5b63dafcf590ced95"
sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj"
["github.com/Kubuxu/go-os-helper"]
sumVersion = "v0.0.1"
["github.com/Kubuxu/go-os-helper".fetch]
type = "git"
url = "https://github.com/Kubuxu/go-os-helper"
rev = "3d3fc2fb493d8d889dddd5a4524283ac2faa4732"
sha256 = "08v88ylhvv65hdqr2pp94qf2ncppzib5sx66fv432vhgkz00ddyr"
["github.com/OneOfOne/xxhash"]
sumVersion = "v1.2.2"
["github.com/OneOfOne/xxhash".fetch]
type = "git"
url = "https://github.com/OneOfOne/xxhash"
rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a"
sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6"
["github.com/Stebalien/go-bitfield"]
sumVersion = "v0.0.1"
["github.com/Stebalien/go-bitfield".fetch]
type = "git"
url = "https://github.com/Stebalien/go-bitfield"
rev = "a911218965d225c9b5b8ba5e1a8ea539651ca036"
sha256 = "0vkkzn4gs8yd13napxk4jd22ziz77z1r8czs2fpgc6zms2fz758g"
["github.com/aead/siphash"]
sumVersion = "v1.0.1"
["github.com/aead/siphash".fetch]
type = "git"
url = "https://github.com/aead/siphash"
rev = "83563a290f60225eb120d724600b9690c3fb536f"
sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc"
["github.com/agl/ed25519"]
sumVersion = "v0.0.0-20170116200512-5312a6153412"
["github.com/agl/ed25519".fetch]
type = "git"
url = "https://github.com/agl/ed25519"
rev = "5312a61534124124185d41f09206b9fef1d88403"
sha256 = "1v8mhkf1m3ga5262s75vabskxvsw5rpqvi5nwhxwiv7gfk6h823i"
["github.com/agnivade/levenshtein"]
sumVersion = "v1.0.3"
["github.com/agnivade/levenshtein".fetch]
type = "git"
url = "https://github.com/agnivade/levenshtein"
rev = "5f1ee18e3efadffd18ef076ac4181cc92d87188c"
sha256 = "13vf5yarms7mdmfgbg1ggrbsc8zd45bfh1dbi4nsx37gv127bk66"
["github.com/alecthomas/assert"]
sumVersion = "v0.0.0-20170929043011-405dbfeb8e38"
["github.com/alecthomas/assert".fetch]
type = "git"
url = "https://github.com/alecthomas/assert"
rev = "405dbfeb8e38effee6e723317226e93fff912d06"
sha256 = "1l567pi17k593nrd1qlbmiq8z9jy3qs60px2a16fdpzjsizwqx8l"
["github.com/alecthomas/colour"]
sumVersion = "v0.0.0-20160524082231-60882d9e2721"
["github.com/alecthomas/colour".fetch]
type = "git"
url = "https://github.com/alecthomas/colour"
rev = "60882d9e27213e8552dcff6328914fe4c2b44bc9"
sha256 = "0iq566534gbzkd16ixg7fk298wd766821vvs80838yifx9yml5vs"
["github.com/alecthomas/jsonschema"]
sumVersion = "v0.0.0-20191017121752-4bb6e3fae4f2"
["github.com/alecthomas/jsonschema".fetch]
type = "git"
url = "https://github.com/alecthomas/jsonschema"
rev = "4bb6e3fae4f22dac4e1ecbeb001cfcf46ebbfba0"
sha256 = "1x4hz47jar2h76hyinwqa85wmnfrgynk5ph9da4vayfcv4xx7wrc"
["github.com/alecthomas/kingpin"]
sumVersion = "v2.2.6+incompatible"
["github.com/alecthomas/kingpin".fetch]
type = "git"
url = "https://github.com/alecthomas/kingpin"
rev = "947dcec5ba9c011838740e680966fd7087a71d0d"
sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"
["github.com/alecthomas/participle"]
sumVersion = "v0.7.1"
["github.com/alecthomas/participle".fetch]
type = "git"
url = "https://github.com/alecthomas/participle"
rev = "c7431b1fa7e54a396e8c76aebac05c2265509464"
sha256 = "07ry6im25h8sys2w1cw4lhddv0vhjr87j6n8h0hazy9r55jsg87i"
["github.com/alecthomas/repr"]
sumVersion = "v0.0.0-20181024024818-d37bc2a10ba1"
["github.com/alecthomas/repr".fetch]
type = "git"
url = "https://github.com/alecthomas/repr"
rev = "d37bc2a10ba1a7951e19dd5dc10f7d59b142d8d7"
sha256 = "0jnx1ypdl4zi010ds2z857ajkr5cx51wkx950rfqb126hvql7svx"
["github.com/alecthomas/template"]
sumVersion = "v0.0.0-20160405071501-a0175ee3bccc"
["github.com/alecthomas/template".fetch]
type = "git"
url = "https://github.com/alecthomas/template"
rev = "a0175ee3bccc567396460bf5acd36800cb10c49c"
sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"
["github.com/alecthomas/units"]
sumVersion = "v0.0.0-20151022065526-2efee857e7cf"
["github.com/alecthomas/units".fetch]
type = "git"
url = "https://github.com/alecthomas/units"
rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"
sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"
["github.com/andreyvit/diff"]
sumVersion = "v0.0.0-20170406064948-c7f18ee00883"
["github.com/andreyvit/diff".fetch]
type = "git"
url = "https://github.com/andreyvit/diff"
rev = "c7f18ee00883bfd3b00e0a2bf7607827e0148ad4"
sha256 = "1s4qjkxig5yqahpzfl4xqh4kzi9mymdpkzq6kj3f4dr5dl3hlynr"
["github.com/anmitsu/go-shlex"]
sumVersion = "v0.0.0-20161002113705-648efa622239"
["github.com/anmitsu/go-shlex".fetch]
type = "git"
url = "https://github.com/anmitsu/go-shlex"
rev = "648efa622239a2f6ff949fed78ee37b48d499ba4"
sha256 = "10rgdp5d106iisgz25ic8k6f44s9adh4sjh6fyxq9ccm21gw49b7"
["github.com/arbovm/levenshtein"]
sumVersion = "v0.0.0-20160628152529-48b4e1c0c4d0"
["github.com/arbovm/levenshtein".fetch]
type = "git"
url = "https://github.com/arbovm/levenshtein"
rev = "48b4e1c0c4d0b8b1864f1bd2cd31bb20147e4636"
sha256 = "0nmx2iip8xpnbmy6gvqpc9ikizr33dr40xgv746h0b0by8n7rv7y"
["github.com/armon/consul-api"]
sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6"
["github.com/armon/consul-api".fetch]
type = "git"
url = "https://github.com/armon/consul-api"
rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd"
sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9"
["github.com/awalterschulze/gographviz"]
sumVersion = "v0.0.0-20190522210029-fa59802746ab"
["github.com/awalterschulze/gographviz".fetch]
type = "git"
url = "https://github.com/awalterschulze/gographviz"
rev = "fa59802746ab47bad3c8876d678d41299cdd1aaa"
sha256 = "0clf05xkd4r2qs1fj5vzq1s0rnk19qsyh2scijgw2dzmapzq8pmy"
["github.com/benbjohnson/clock"]
sumVersion = "v1.0.2"
["github.com/benbjohnson/clock".fetch]
type = "git"
url = "https://github.com/benbjohnson/clock"
rev = "206a2de8a5aeb2a21420b0550a67712538e103c4"
sha256 = "0dymwxjlrfp9cri0zq086j1by7wznbdcdxy27xj4np8sh52cs9ac"
["github.com/beorn7/perks"]
sumVersion = "v0.0.0-20180321164747-3a771d992973"
["github.com/beorn7/perks".fetch]
type = "git"
url = "https://github.com/beorn7/perks"
rev = "3a771d992973f24aa725d07868b467d1ddfceafb"
sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"
["github.com/bradfitz/go-smtpd"]
sumVersion = "v0.0.0-20170404230938-deb6d6237625"
["github.com/bradfitz/go-smtpd".fetch]
type = "git"
url = "https://github.com/bradfitz/go-smtpd"
rev = "deb6d623762522f8ad4a55b952001e4215a76cf4"
sha256 = "1i33brqd44h0a9hbdnclka0hfg0f6qi5xy23f0ap9yixkhj4k9p6"
["github.com/btcsuite/btcd"]
sumVersion = "v0.20.1-beta"
["github.com/btcsuite/btcd".fetch]
type = "git"
url = "https://github.com/btcsuite/btcd"
rev = "f3ec13030e4e828869954472cbc51ac36bee5c1d"
sha256 = "1xxk8k8pqzy1is7afh0q9lfsrdb4yqzg3x6zvclh1nsv894mjw5f"
["github.com/btcsuite/btclog"]
sumVersion = "v0.0.0-20170628155309-84c8d2346e9f"
["github.com/btcsuite/btclog".fetch]
type = "git"
url = "https://github.com/btcsuite/btclog"
rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a"
sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk"
["github.com/btcsuite/btcutil"]
sumVersion = "v0.0.0-20190425235716-9e5f4b9a998d"
["github.com/btcsuite/btcutil".fetch]
type = "git"
url = "https://github.com/btcsuite/btcutil"
rev = "9e5f4b9a998d263e3ce9c56664a7816001ac8000"
sha256 = "1q5l3jrc5q2iyivw04nk4m1hyq7imrk9jjwr4v8v2zq8n62ip0h3"
["github.com/btcsuite/go-socks"]
sumVersion = "v0.0.0-20170105172521-4720035b7bfd"
["github.com/btcsuite/go-socks".fetch]
type = "git"
url = "https://github.com/btcsuite/go-socks"
rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f"
sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b"
["github.com/btcsuite/goleveldb"]
sumVersion = "v0.0.0-20160330041536-7834afc9e8cd"
["github.com/btcsuite/goleveldb".fetch]
type = "git"
url = "https://github.com/btcsuite/goleveldb"
rev = "7834afc9e8cd15233b6c3d97e12674a31ca24602"
sha256 = "0gy156sn2cy2maii3p058f7q60gjdbmba34i9qvk8msxlg7hlfjv"
["github.com/btcsuite/snappy-go"]
sumVersion = "v0.0.0-20151229074030-0bdef8d06723"
["github.com/btcsuite/snappy-go".fetch]
type = "git"
url = "https://github.com/btcsuite/snappy-go"
rev = "0bdef8d067237991ddaa1bb6072a740bc40601ba"
sha256 = "00i5fsb1wf2dwal1jfwbpk9a7cbzjyg7rnz2xib3qfz9h82kd4jw"
["github.com/btcsuite/websocket"]
sumVersion = "v0.0.0-20150119174127-31079b680792"
["github.com/btcsuite/websocket".fetch]
type = "git"
url = "https://github.com/btcsuite/websocket"
rev = "31079b6807923eb23992c421b114992b95131b55"
sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa"
["github.com/btcsuite/winsvc"]
sumVersion = "v1.0.0"
["github.com/btcsuite/winsvc".fetch]
type = "git"
url = "https://github.com/btcsuite/winsvc"
rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722"
sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z"
["github.com/buger/jsonparser"]
sumVersion = "v0.0.0-20181115193947-bf1c66bbce23"
["github.com/buger/jsonparser".fetch]
type = "git"
url = "https://github.com/buger/jsonparser"
rev = "bf1c66bbce23153d89b23f8960071a680dbef54b"
sha256 = "0r7dck41xvb8kydv9lwk59czas44hnk457ck9mpmxc1qc7idp3c6"
["github.com/cenkalti/backoff"]
sumVersion = "v2.2.1+incompatible"
["github.com/cenkalti/backoff".fetch]
type = "git"
url = "https://github.com/cenkalti/backoff"
rev = "5267b6dd4d2666b980a911bf235efa276222cbe2"
sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8"
["github.com/census-instrumentation/opencensus-proto"]
sumVersion = "v0.2.1"
["github.com/census-instrumentation/opencensus-proto".fetch]
type = "git"
url = "https://github.com/census-instrumentation/opencensus-proto"
rev = "d89fa54de508111353cb0b06403c00569be780d8"
sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj"
["github.com/cespare/xxhash"]
sumVersion = "v1.1.0"
["github.com/cespare/xxhash".fetch]
type = "git"
url = "https://github.com/cespare/xxhash"
rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6"
sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x"
["github.com/cheekybits/genny"]
sumVersion = "v1.0.0"
["github.com/cheekybits/genny".fetch]
type = "git"
url = "https://github.com/cheekybits/genny"
rev = "d2cf3cdd35ce0d789056c4bc02a4d6349c947caf"
sha256 = "1pcir5ic86713aqa51581rfb67rgc3m0c72ddjfcp3yakv9vyq87"
["github.com/client9/misspell"]
sumVersion = "v0.3.4"
["github.com/client9/misspell".fetch]
type = "git"
url = "https://github.com/client9/misspell"
rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011"
sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs"
["github.com/cncf/udpa/go"]
sumVersion = "v0.0.0-20191209042840-269d4d468f6f"
relPath = "go"
["github.com/cncf/udpa/go".fetch]
type = "git"
url = "https://github.com/cncf/udpa"
rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5"
sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs"
["github.com/coreos/etcd"]
sumVersion = "v3.3.10+incompatible"
["github.com/coreos/etcd".fetch]
type = "git"
url = "https://github.com/coreos/etcd"
rev = "27fc7e2296f506182f58ce846e48f36b34fe6842"
sha256 = "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl"
["github.com/coreos/go-etcd"]
sumVersion = "v2.0.0+incompatible"
["github.com/coreos/go-etcd".fetch]
type = "git"
url = "https://github.com/coreos/go-etcd"
rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12"
sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj"
["github.com/coreos/go-semver"]
sumVersion = "v0.3.0"
["github.com/coreos/go-semver".fetch]
type = "git"
url = "https://github.com/coreos/go-semver"
rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b"
sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9"
["github.com/coreos/go-systemd"]
sumVersion = "v0.0.0-20181012123002-c6f51f82210d"
["github.com/coreos/go-systemd".fetch]
type = "git"
url = "https://github.com/coreos/go-systemd"
rev = "c6f51f82210d9608a835763225a5e2a3c87583c6"
sha256 = "1vnccmnkjl6n539l4cliz6sznpqn6igf5v7mbmsgahb838742clb"
["github.com/cpuguy83/go-md2man"]
sumVersion = "v1.0.10"
["github.com/cpuguy83/go-md2man".fetch]
type = "git"
url = "https://github.com/cpuguy83/go-md2man"
rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19"
sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i"
["github.com/cpuguy83/go-md2man/v2"]
sumVersion = "v2.0.0-20190314233015-f79a8a8ca69d"
["github.com/cpuguy83/go-md2man/v2".fetch]
type = "git"
url = "https://github.com/cpuguy83/go-md2man"
rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a"
sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv"
["github.com/cskr/pubsub"]
sumVersion = "v1.0.2"
["github.com/cskr/pubsub".fetch]
type = "git"
url = "https://github.com/cskr/pubsub"
rev = "65166f5ae403cbf6dcdced31e1f8f8ad95485cb3"
sha256 = "0wr8cg5axrlz9xg33r9dqvkp5ix9q8h8c7qw78mj22qprwh3zj9f"
["github.com/danieljoos/wincred"]
sumVersion = "v1.0.2"
["github.com/danieljoos/wincred".fetch]
type = "git"
url = "https://github.com/danieljoos/wincred"
rev = "b892d337201d1400370ebf4fa919941c9ea222ee"
sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc"
["github.com/davecgh/go-spew"]
sumVersion = "v1.1.1"
["github.com/davecgh/go-spew".fetch]
type = "git"
url = "https://github.com/davecgh/go-spew"
rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73"
sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"
["github.com/davidlazar/go-crypto"]
sumVersion = "v0.0.0-20190912175916-7055855a373f"
["github.com/davidlazar/go-crypto".fetch]
type = "git"
url = "https://github.com/davidlazar/go-crypto"
rev = "7055855a373fe4cae7d5947850d7e9925783dcc8"
sha256 = "0fgmihrlrymmbp94kx7435ybrc17v8171wi5y37cyjr9pvrvdcyk"
["github.com/desertbit/timer"]
sumVersion = "v0.0.0-20180107155436-c41aec40b27f"
["github.com/desertbit/timer".fetch]
type = "git"
url = "https://github.com/desertbit/timer"
rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990"
sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9"
["github.com/dgraph-io/badger"]
sumVersion = "v1.6.2"
["github.com/dgraph-io/badger".fetch]
type = "git"
url = "https://github.com/dgraph-io/badger"
rev = "c5d36c806aa80954a24606a982a475a717d44de2"
sha256 = "0y37di0da6jciv1mwj0d8kv2xf56sribmwbcmd6ma65c5h6mdch9"
["github.com/dgraph-io/ristretto"]
sumVersion = "v0.0.2"
["github.com/dgraph-io/ristretto".fetch]
type = "git"
url = "https://github.com/dgraph-io/ristretto"
rev = "dbc185e050f48c5190a78b4a07829d9c10afca21"
sha256 = "0jp83qmya8bz17jfh88q8azhngfnvqkpxl1k9bjv4hfdj2w42dc8"
["github.com/dgrijalva/jwt-go"]
sumVersion = "v3.2.0+incompatible"
["github.com/dgrijalva/jwt-go".fetch]
type = "git"
url = "https://github.com/dgrijalva/jwt-go"
rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e"
sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp"
["github.com/dgryski/go-farm"]
sumVersion = "v0.0.0-20190423205320-6a90982ecee2"
["github.com/dgryski/go-farm".fetch]
type = "git"
url = "https://github.com/dgryski/go-farm"
rev = "6a90982ecee230ff6cba02d5bd386acc030be9d3"
sha256 = "1x3l4jgps0v1bjvd446kj4dp0ckswjckxgrng9afm275ixnf83ix"
["github.com/dgryski/trifles"]
sumVersion = "v0.0.0-20190318185328-a8d75aae118c"
["github.com/dgryski/trifles".fetch]
type = "git"
url = "https://github.com/dgryski/trifles"
rev = "a8d75aae118c132c4b4e2364f7e5884843de250b"
sha256 = "09f6kj019sf9jfad2v3hlawznqg42z4j8xyffbxmhc1m5bjf8zxl"
["github.com/dlclark/regexp2"]
sumVersion = "v1.2.0"
["github.com/dlclark/regexp2".fetch]
type = "git"
url = "https://github.com/dlclark/regexp2"
rev = "92c702aa5812963ef9193a9624191932d44073d7"
sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng"
["github.com/dop251/goja"]
sumVersion = "v0.0.0-20200721192441-a695b0cdd498"
["github.com/dop251/goja".fetch]
type = "git"
url = "https://github.com/dop251/goja"
rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a"
sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv"
["github.com/dustin/go-humanize"]
sumVersion = "v1.0.0"
["github.com/dustin/go-humanize".fetch]
type = "git"
url = "https://github.com/dustin/go-humanize"
rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e"
sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3"
["github.com/dvsekhvalnov/jose2go"]
sumVersion = "v0.0.0-20200901110807-248326c1351b"
["github.com/dvsekhvalnov/jose2go".fetch]
type = "git"
url = "https://github.com/dvsekhvalnov/jose2go"
rev = "248326c1351b716b2820b01a49d53837bfd9ac59"
sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s"
["github.com/envoyproxy/go-control-plane"]
sumVersion = "v0.9.4"
["github.com/envoyproxy/go-control-plane".fetch]
type = "git"
url = "https://github.com/envoyproxy/go-control-plane"
rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe"
sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj"
["github.com/envoyproxy/protoc-gen-validate"]
sumVersion = "v0.1.0"
["github.com/envoyproxy/protoc-gen-validate".fetch]
type = "git"
url = "https://github.com/envoyproxy/protoc-gen-validate"
rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc"
sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy"
["github.com/evanphx/json-patch"]
sumVersion = "v4.5.0+incompatible"
["github.com/evanphx/json-patch".fetch]
type = "git"
url = "https://github.com/evanphx/json-patch"
rev = "026c730a0dcc5d11f93f1cf1cc65b01247ea7b6f"
sha256 = "144mk2v9q37l1qjf8498nff4hhz96mlkl7ls7ihixbmrji4lmch4"
["github.com/facebookgo/atomicfile"]
sumVersion = "v0.0.0-20151019160806-2de1f203e7d5"
["github.com/facebookgo/atomicfile".fetch]
type = "git"
url = "https://github.com/facebookgo/atomicfile"
rev = "2de1f203e7d5e386a6833233882782932729f27e"
sha256 = "1vsx6r6y601jxvjqc8msbpr5v1037dfxxdd8h1q3s8wm6xhvj2v6"
["github.com/fd/go-nat"]
sumVersion = "v1.0.0"
["github.com/fd/go-nat".fetch]
type = "git"
url = "https://github.com/fd/go-nat"
rev = "bad65a492f32121a87197f4a085905c35e2a367e"
sha256 = "0c4cjx20mgwrf2sx29kd5b1m40lbjly6j6axgjylllrlzjfil1hq"
["github.com/flynn/go-shlex"]
sumVersion = "v0.0.0-20150515145356-3f9db97f8568"
["github.com/flynn/go-shlex".fetch]
type = "git"
url = "https://github.com/flynn/go-shlex"
rev = "3f9db97f856818214da2e1057f8ad84803971cff"
sha256 = "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia"
["github.com/francoispqt/gojay"]
sumVersion = "v1.2.13"
["github.com/francoispqt/gojay".fetch]
type = "git"
url = "https://github.com/francoispqt/gojay"
rev = "1398296d938f9fae26750ddc2fe356b6d897f799"
sha256 = "1ix95qdyajfmxhf9y52vjrih63f181pjs4v5as8905s4d5vmkd06"
["github.com/fsnotify/fsnotify"]
sumVersion = "v1.4.9"
["github.com/fsnotify/fsnotify".fetch]
type = "git"
url = "https://github.com/fsnotify/fsnotify"
rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a"
sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x"
["github.com/ghodss/yaml"]
sumVersion = "v1.0.0"
["github.com/ghodss/yaml".fetch]
type = "git"
url = "https://github.com/ghodss/yaml"
rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7"
sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g"
["github.com/gliderlabs/ssh"]
sumVersion = "v0.1.1"
["github.com/gliderlabs/ssh".fetch]
type = "git"
url = "https://github.com/gliderlabs/ssh"
rev = "d3a6756290240931faaf90ec97ddd5d9290623d8"
sha256 = "0bylkc7yg8bxxffhchikcnzwli5n95cfmbji6v2a4mn1h5n36mdm"
["github.com/go-check/check"]
sumVersion = "v0.0.0-20180628173108-788fd7840127"
["github.com/go-check/check".fetch]
type = "git"
url = "https://github.com/go-check/check"
rev = "788fd78401277ebd861206a03c884797c6ec5541"
sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a"
["github.com/go-chi/chi"]
sumVersion = "v3.3.2+incompatible"
["github.com/go-chi/chi".fetch]
type = "git"
url = "https://github.com/go-chi/chi"
rev = "e83ac2304db3c50cf03d96a2fcd39009d458bc35"
sha256 = "1rl79i5nlr5f201a1mar966vr9r68y4h19wvmiw6jwqyxgzd5c0k"
["github.com/go-errors/errors"]
sumVersion = "v1.0.1"
["github.com/go-errors/errors".fetch]
type = "git"
url = "https://github.com/go-errors/errors"
rev = "a6af135bd4e28680facf08a3d206b454abc877a4"
sha256 = "0rznpknk19rxkr7li6dqs52c26pjazp69lh493l4ny4sxn5922lp"
["github.com/go-gl/glfw/v3.3/glfw"]
sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4"
relPath = "v3.3/glfw"
["github.com/go-gl/glfw/v3.3/glfw".fetch]
type = "git"
url = "https://github.com/go-gl/glfw"
rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2"
sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq"
["github.com/go-kit/kit"]
sumVersion = "v0.9.0"
["github.com/go-kit/kit".fetch]
type = "git"
url = "https://github.com/go-kit/kit"
rev = "150a65a7ec6156b4b640c1fd55f26fd3d475d656"
sha256 = "09038mnw705h7isbjp8dzgp2i04bp5rqkmifxvwc5xkh75s00qpw"
["github.com/go-logfmt/logfmt"]
sumVersion = "v0.4.0"
["github.com/go-logfmt/logfmt".fetch]
type = "git"
url = "https://github.com/go-logfmt/logfmt"
rev = "07c9b44f60d7ffdfb7d8efe1ad539965737836dc"
sha256 = "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9"
["github.com/go-sourcemap/sourcemap"]
sumVersion = "v2.1.3+incompatible"
["github.com/go-sourcemap/sourcemap".fetch]
type = "git"
url = "https://github.com/go-sourcemap/sourcemap"
rev = "2588a51d69f1c3e296d57f75815ef40a20d54245"
sha256 = "08i1xysiqbqzip3xjlkwivg8cbcym83hxwyzkbmjy0z7y8y5fy3r"
["github.com/go-stack/stack"]
sumVersion = "v1.8.0"
["github.com/go-stack/stack".fetch]
type = "git"
url = "https://github.com/go-stack/stack"
rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a"
sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v"
["github.com/godbus/dbus"]
sumVersion = "v0.0.0-20190726142602-4481cbc300e2"
["github.com/godbus/dbus".fetch]
type = "git"
url = "https://github.com/godbus/dbus"
rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d"
sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg"
["github.com/gogo/googleapis"]
sumVersion = "v1.3.1"
["github.com/gogo/googleapis".fetch]
type = "git"
url = "https://github.com/gogo/googleapis"
rev = "e5a9c66aed7069401eba5043fce83d1ef628dc96"
sha256 = "18fdywmv54k9s87nn8fn3xrz900mw3a4chdqsdm620cdgrbh1icd"
["github.com/gogo/protobuf"]
sumVersion = "v1.3.1"
["github.com/gogo/protobuf".fetch]
type = "git"
url = "https://github.com/gogo/protobuf"
rev = "5628607bb4c51c3157aacc3a50f0ab707582b805"
sha256 = "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp"
["github.com/gogo/status"]
sumVersion = "v1.1.0"
["github.com/gogo/status".fetch]
type = "git"
url = "https://github.com/gogo/status"
rev = "935308aef7372e7685e8fbee162aae8f7a7e515a"
sha256 = "1ab5zqz9hd165r29982mqrfs6avgn9qr1j5532z44jkzbf0g6jwb"
["github.com/golang/glog"]
sumVersion = "v0.0.0-20160126235308-23def4e6c14b"
["github.com/golang/glog".fetch]
type = "git"
url = "https://github.com/golang/glog"
rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998"
sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"
["github.com/golang/groupcache"]
sumVersion = "v0.0.0-20190702054246-869f871628b6"
["github.com/golang/groupcache".fetch]
type = "git"
url = "https://github.com/golang/groupcache"
rev = "869f871628b6baa9cfbc11732cdf6546b17c1298"
sha256 = "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw"
["github.com/golang/lint"]
sumVersion = "v0.0.0-20180702182130-06c8688daad7"
["github.com/golang/lint".fetch]
type = "git"
url = "https://github.com/golang/lint"
rev = "06c8688daad7faa9da5a0c2f163a3d14aac986ca"
sha256 = "0xi94dwvz50a66bq1hp9fyqkym5mcpdxdb1hrfvicldgjf37lc47"
["github.com/golang/mock"]
sumVersion = "v1.4.0"
["github.com/golang/mock".fetch]
type = "git"
url = "https://github.com/golang/mock"
rev = "3dcdcb6994c4de42a73bd2e4790178be3ed4554b"
sha256 = "0vmxkfhb19ql1vhfi069ginmzmqv7f072k0y397jg030ykya6wqd"
["github.com/golang/protobuf"]
sumVersion = "v1.5.2"
["github.com/golang/protobuf".fetch]
type = "git"
url = "https://github.com/golang/protobuf"
rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f"
sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk"
["github.com/golang/snappy"]
sumVersion = "v0.0.0-20180518054509-2e65f85255db"
["github.com/golang/snappy".fetch]
type = "git"
url = "https://github.com/golang/snappy"
rev = "2e65f85255dbc3072edf28d6b5b8efc472979f5a"
sha256 = "05w6mpc4qcy0pv8a2bzng8nf4s5rf5phfang4jwy9rgf808q0nxf"
["github.com/google/btree"]
sumVersion = "v0.0.0-20180813153112-4030bb1f1f0c"
["github.com/google/btree".fetch]
type = "git"
url = "https://github.com/google/btree"
rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306"
sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6"
["github.com/google/go-cmp"]
sumVersion = "v0.5.5"
["github.com/google/go-cmp".fetch]
type = "git"
url = "https://github.com/google/go-cmp"
rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8"
sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7"
["github.com/google/go-github"]
sumVersion = "v17.0.0+incompatible"
["github.com/google/go-github".fetch]
type = "git"
url = "https://github.com/google/go-github"
rev = "747f93dd9b489bd56f7442b3c42bfea12800a75b"
sha256 = "1kvw95l77a5n5rgal9n1xjh58zxb3a40ij1j722b1h4z8yg9jhg4"
["github.com/google/go-querystring"]
sumVersion = "v1.0.0"
["github.com/google/go-querystring".fetch]
type = "git"
url = "https://github.com/google/go-querystring"
rev = "44c6ddd0a2342c386950e880b658017258da92fc"
sha256 = "0xl12bqyvmn4xcnf8p9ksj9rmnr7s40pvppsdmy8n9bzw1db0iwz"
["github.com/google/gopacket"]
sumVersion = "v1.1.18"
["github.com/google/gopacket".fetch]
type = "git"
url = "https://github.com/google/gopacket"
rev = "558173e197d46ae52f0f7c58313c96296ee16a9c"
sha256 = "16qg6w96lv44xx897hp9ymc85sifdyx89hn8763rga6g5w57srw4"
["github.com/google/martian"]
sumVersion = "v2.1.0+incompatible"
["github.com/google/martian".fetch]
type = "git"
url = "https://github.com/google/martian"
rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e"
sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp"
["github.com/google/pprof"]
sumVersion = "v0.0.0-20181206194817-3ea8567a2e57"
["github.com/google/pprof".fetch]
type = "git"
url = "https://github.com/google/pprof"
rev = "3ea8567a2e5752420fc544d2e2ad249721768934"
sha256 = "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c"
["github.com/google/renameio"]
sumVersion = "v0.1.0"
["github.com/google/renameio".fetch]
type = "git"
url = "https://github.com/google/renameio"
rev = "f0e32980c006571efd537032e5f9cd8c1a92819e"
sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx"
["github.com/google/subcommands"]
sumVersion = "v1.2.0"
["github.com/google/subcommands".fetch]
type = "git"
url = "https://github.com/google/subcommands"
rev = "24aea2b9b9c12400919203843c92ef808c7ad560"
sha256 = "00w7fx92696z5p3isvpg71b4023g8f686xnhy56k08vc2q1r2hhw"
["github.com/google/uuid"]
sumVersion = "v1.1.1"
["github.com/google/uuid".fetch]
type = "git"
url = "https://github.com/google/uuid"
rev = "0cd6bf5da1e1c83f8b45653022c74f71af0538a4"
sha256 = "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb"
["github.com/googleapis/gax-go"]
sumVersion = "v2.0.0+incompatible"
["github.com/googleapis/gax-go".fetch]
type = "git"
url = "https://github.com/googleapis/gax-go"
rev = "317e0006254c44a0ac427cc52a0e083ff0b9622f"
sha256 = "0h92x579vbrv2fka8q2ddy1kq6a63qbqa8zc09ygl6skzn9gw1dh"
["github.com/googleapis/gax-go/v2"]
sumVersion = "v2.0.3"
relPath = "v2"
["github.com/googleapis/gax-go/v2".fetch]
type = "git"
url = "https://github.com/googleapis/gax-go"
rev = "c8a15bac9b9fe955bd9f900272f9a306465d28cf"
sha256 = "13x3x7agq0b46wpchbd2sqli5l33z6hvfn1qjbiqvsgpbv7wd140"
["github.com/gopherjs/gopherjs"]
sumVersion = "v0.0.0-20190430165422-3e4dfb77656c"
["github.com/gopherjs/gopherjs".fetch]
type = "git"
url = "https://github.com/gopherjs/gopherjs"
rev = "3e4dfb77656c424b6d1196a4d5fed0fcf63677cc"
sha256 = "0bmapn4dskpr4a79kcr5irkw19px4a71ls5gspffxiva7sapgyvw"
["github.com/gorilla/context"]
sumVersion = "v0.0.0-20160226214623-1ea25387ff6f"
["github.com/gorilla/context".fetch]
type = "git"
url = "https://github.com/gorilla/context"
rev = "1ea25387ff6f684839d82767c1733ff4d4d15d0a"
sha256 = "1nh1nzxcsgd215x4xn59wc4cbqfa8zvhvnnx5p8fkrn4bj1cgak4"
["github.com/gorilla/mux"]
sumVersion = "v1.6.1"
["github.com/gorilla/mux".fetch]
type = "git"
url = "https://github.com/gorilla/mux"
rev = "53c1911da2b537f792e7cafcb446b05ffe33b996"
sha256 = "10cvljpjgvkq1zqj82hr46dnddfcpmm18wabbv4pkxjrmvb9xkf7"
["github.com/gorilla/websocket"]
sumVersion = "v1.4.2"
["github.com/gorilla/websocket".fetch]
type = "git"
url = "https://github.com/gorilla/websocket"
rev = "b65e62901fc1c0d968042419e74789f6af455eb9"
sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s"
["github.com/gregjones/httpcache"]
sumVersion = "v0.0.0-20180305231024-9cad4c3443a7"
["github.com/gregjones/httpcache".fetch]
type = "git"
url = "https://github.com/gregjones/httpcache"
rev = "9cad4c3443a7200dd6400aef47183728de563a38"
sha256 = "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s"
["github.com/grpc-ecosystem/go-grpc-middleware"]
sumVersion = "v1.2.1"
["github.com/grpc-ecosystem/go-grpc-middleware".fetch]
type = "git"
url = "https://github.com/grpc-ecosystem/go-grpc-middleware"
rev = "7a5efaad6c58f5b6f96d76e658608730125ac82a"
sha256 = "0fi649ar17h6b71ng7a88spy19svlsmjf7zhb90s23cr4r534wmm"
["github.com/grpc-ecosystem/grpc-gateway"]
sumVersion = "v1.5.0"
["github.com/grpc-ecosystem/grpc-gateway".fetch]
type = "git"
url = "https://github.com/grpc-ecosystem/grpc-gateway"
rev = "8558711daa6c2853489043207b563dceacbc19cf"
sha256 = "0brmvi6ngjb9wwxnfgxl6kyj8ixyrikylvr8vnkchihr7n8lwipk"
["github.com/gsterjov/go-libsecret"]
sumVersion = "v0.0.0-20161001094733-a6f4afe4910c"
["github.com/gsterjov/go-libsecret".fetch]
type = "git"
url = "https://github.com/gsterjov/go-libsecret"
rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1"
sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7"
["github.com/gxed/hashland/keccakpg"]
sumVersion = "v0.0.1"
relPath = "keccakpg"
["github.com/gxed/hashland/keccakpg".fetch]
type = "git"
url = "https://github.com/gxed/hashland"
rev = "a72cc0875a1e95edd309d3134bc7c11bf2d7360b"
sha256 = "1b921dh9i6zw7y8jfzwvrmdbhnwid12a5z1zjawslfq2vvsajwmm"
["github.com/gxed/hashland/murmur3"]
sumVersion = "v0.0.1"
relPath = "murmur3"
["github.com/gxed/hashland/murmur3".fetch]
type = "git"
url = "https://github.com/gxed/hashland"
rev = "a72cc0875a1e95edd309d3134bc7c11bf2d7360b"
sha256 = "1b921dh9i6zw7y8jfzwvrmdbhnwid12a5z1zjawslfq2vvsajwmm"
["github.com/gxed/pubsub"]
sumVersion = "v0.0.0-20180201040156-26ebdf44f824"
["github.com/gxed/pubsub".fetch]
type = "git"
url = "https://github.com/gxed/pubsub"
rev = "26ebdf44f8241701f6ac147523687095c1b9213b"
sha256 = "0q0r6bvimjxwi3yd0w2wjkx1x8m0d9pwi25b7n4s4g10h36rabjp"
["github.com/hashicorp/errwrap"]
sumVersion = "v1.0.0"
["github.com/hashicorp/errwrap".fetch]
type = "git"
url = "https://github.com/hashicorp/errwrap"
rev = "8a6fb523712970c966eefc6b39ed2c5e74880354"
sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c"
["github.com/hashicorp/go-multierror"]
sumVersion = "v1.1.0"
["github.com/hashicorp/go-multierror".fetch]
type = "git"
url = "https://github.com/hashicorp/go-multierror"
rev = "2004d9dba6b07a5b8d133209244f376680f9d472"
sha256 = "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k"
["github.com/hashicorp/golang-lru"]
sumVersion = "v0.5.4"
["github.com/hashicorp/golang-lru".fetch]
type = "git"
url = "https://github.com/hashicorp/golang-lru"
rev = "14eae340515388ca95aa8e7b86f0de668e981f54"
sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn"
["github.com/hashicorp/hcl"]
sumVersion = "v1.0.0"
["github.com/hashicorp/hcl".fetch]
type = "git"
url = "https://github.com/hashicorp/hcl"
rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241"
sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66"
["github.com/hpcloud/tail"]
sumVersion = "v1.0.0"