-
Notifications
You must be signed in to change notification settings - Fork 11
/
NOTICE
7928 lines (5813 loc) · 458 KB
/
NOTICE
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
================================================================================
================================================================================
Third-Party Software for terraform-provider-cdp
--------------------------------------------------------------------------------
The product or component covered by this notice file is subject to copyright owned by Cloudera, the Apache Software Foundation or other third parties, as applicable, and the copyright owner reserves all rights.
The following notices and licenses apply to various third party software packages, including open source software packages, which are distributed with the product identified in this file or accompanying this file. Such product (i) may not include all of the referenced third party software packages or include only a portion of a given package and (ii) may also include other components, which may contain additional third party software packages as identified in their separate respective notice files.
To the extent required by the license associated with a third party software package, Cloudera, Inc. will provide a copy of the third party software package’s source code upon request and at a reasonable fee. All requests for source code must be made in writing and mailed to "Cloudera, Inc., ATTN: Legal Dept.,5470 Great America Pkwy, Santa Clara, CA 95054" and include the following information: (i) the name and version number of the covered binary, (ii) name and the version number of the Cloudera product containing the covered binary, (iii) your name, (iv) your company or organization name (if applicable), (v) the license under which you are requesting the source code to be provided, and (vi) your return mailing and email address (if available).
The following 3rd-party software packages may be used by or distributed with terraform-provider-cdp. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
Date generated: 2023-5-31
Revision ID: 160cbaf93b284ae4fca98d58e77d05752f45db47
================================================================================
================================================================================
================================================================================
Dependencies
================================================================================
- appengine (5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a) [Apache-2.0, BSD-3-Clause]
- cast (2b0eb0f724e320b655240e331aef36d1175986c2) [MIT]
- cli (784fcd13e857c49c0e5738a19707762f372a3eb3) [MPL-2.0-no-copyleft-exception]
- color (a05da93ebe62ca9fc6791d3376ec4dad01196448) [MIT]
- complete (05b68ffc813dd10c420993cb1cf927b346c057b8) [MIT]
- crypto (776e461a4e6d8b372a43c72122c5c28cfc40dca2) [BSD-3-Clause, openssl-ssleay, MIT]
- easyjson (c120ca7ced6051261161ce15e8f1542a4b2567fc) [MIT, BSD-3-Clause]
- errwrap (7b00e5db719c64d14dd0caaacbd13e76254d02c0) [MPL-2.0]
- github.com/agext/levenshtein (v1.2.2) [Apache-2.0]
- github.com/apparentlymart/go-textseg/v13 (v13.0.0) [Multi-license: MIT OR Unicode-DFS-2016 OR Unicode-DFS-2020, Apache-2.0]
- github.com/go-openapi/analysis (v0.21.4) [Apache-2.0]
- github.com/go-openapi/errors (v0.20.3) [Apache-2.0]
- github.com/go-openapi/loads (v0.21.2) [Apache-2.0]
- github.com/go-openapi/runtime (v0.25.0) [Apache-2.0, MIT, BSD-3-Clause]
- github.com/go-openapi/strfmt (v0.21.3) [Apache-2.0]
- github.com/go-openapi/validate (v0.22.0) [Apache-2.0, MIT]
- github.com/hashicorp/go-checkpoint (v0.5.0) [MPL-2.0]
- github.com/hashicorp/go-version (v1.6.0) [MPL-2.0]
- github.com/hashicorp/terraform-svchost (f050f53b9734) [MPL-2.0]
- github.com/hashicorp/yamux (2f1d1f20f75d) [MPL-2.0]
- github.com/huandu/xstrings (v1.3.2) [MIT]
- github.com/Masterminds/goutils (v1.1.1) [Apache-2.0]
- github.com/Masterminds/sprig/v3 (v3.2.2) [MIT]
- github.com/mitchellh/copystructure (v1.2.0) [MIT]
- github.com/mitchellh/go-wordwrap (v1.0.0) [MIT]
- github.com/mitchellh/reflectwalk (v1.0.2) [MIT]
- github.com/oklog/run (v1.0.0) [Apache-2.0]
- github.com/russross/blackfriday (v1.6.0) [BSD-2-Clause]
- github.com/shopspring/decimal (v1.3.1) [MIT, BSD-3-Clause]
- github.com/vmihailenco/msgpack (v4.0.4) [BSD-2-Clause]
- github.com/vmihailenco/msgpack/v4 (v4.3.12) [BSD-2-Clause]
- github.com/vmihailenco/tagparser (v0.1.1) [BSD-2-Clause]
- go-cleanhttp (6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2) [MPL-2.0]
- go-cmp (a97318bf6562f2ed2632c5f985db51b1bc5bdcd0) [BSD-3-Clause]
- go-colorable (11a925cff3d38c293ddc8c05a16b504e3e2c63be) [MIT]
- go-cty (180e0b5efdf936a25a8c3cac79887c2d3587a262) [MIT, IPA]
- go-cty (d3edf31b63203c0f3d27901301db51b462141745) [MIT]
- go-genproto (1bc688fe9f3e0f5d5ae9e946bb15ec517a5e6823) [Apache-2.0]
- go-hclog (8b7499ad6ad46ce583e825d324d008032b644703) [MIT]
- go-homedir (af06845cf3004701891bf4fdb884bfe4920b3727) [MIT]
- go-isatty (13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8) [MIT]
- go-multierror (9974e9ec57696378079ecc3accd3d6f29401b3a0) [MPL-2.0]
- go-plugin (5a212b5b9ae4c3bed24ad357f98a8d1c9f23e8a4) [MPL-2.0]
- go-radix (1a2de0c21c94309923825da3df33a4381872c795) [MIT]
- go-testing-interface (93f0c65740d3e21a23304be03030037f06e933ea) [MIT]
- go-uuid (67cd70b3bc50aeab4f2a02f869573616871a9a2a) [MPL-2.0]
- go.mongodb.org/mongo-driver (v1.11.1) [Apache-2.0]
- govalidator (f21760c49a8d602d863493de796926d2a5c1138d) [MIT, Apache-2.0]
- grpc-go (eeb9afa1f6b6388152955eeca8926e36ca94c768) [Apache-2.0]
- hc-install (140ad91606b63771f1f2038c95ce72c155ef3990) [MPL-2.0]
- hcl (e54a1960efd6cdfe35ecb8cc098bed33cd6001a8) [MPL-2.0]
- ini.v1 (b2f570e5b5b844226bbefe6fb521d891f529a951) [Apache-2.0]
- intern (8e6ff32b3e7c0b018c43953085fe2ac330fe9acd) [MIT]
- jsonpointer (2446e21cad36eee826e1c2380f0ff747074a2faa) [Apache-2.0]
- jsonreference (c5db5582e080fbeae80be42f42881230a8caebf6) [Apache-2.0]
- logr (47e013cee9b1f91c987cc70a218639655431b607) [Apache-2.0]
- logutils (a335183dfd075f638afcc820c90591ca3c97eba6) [MPL-2.0]
- mapstructure (ab69d8d93410fce4361f4912bb1ff88110a81311) [MIT]
- mergo (194978757031c1a5c8ff8e059ae75fc2fc2a04f7) [BSD-3-Clause]
- mod (b71060237c896c7c9fc602ab66e33ea6079659fa) [BSD-3-Clause]
- net (dfa2b5dffd96fb2ae13e7d182501f0bce044a0a4) [BSD-3-Clause, BSD-2-Clause]
- opentelemetry-go (2fe8861a24e20088c065b116089862caf9e3cd8b) [Apache-2.0, Multi-license: Apache-2.0 OR BSD-3-Clause OR MIT]
- opentracing-go (d34af3eaa63c4d08ab54863a4bdd0daa45212e12) [Apache-2.0]
- pretty (3cd153a126da607b78d1762779b1e1054f9889fc) [MIT]
- protobuf (ae97035608a719c7a1c1c41bed0ae0744bdb0c6f) [BSD-3-Clause]
- protobuf (6875c3d7242d1a3db910ce8a504f124cb840c23a) [BSD-3-Clause]
- semver (7bb0c843b53d6ad21a3f619cb22c4b442bb3ef3e) [MIT]
- speakeasy (4aabc24848ce5fd31929f7d1e4ea74d3709c14cd) [MIT, Apache-2.0]
- spec (df35a527ea5dde89966d4c6b7661d000a99899b9) [Apache-2.0]
- stdr (521af2addfa7c81c8a65d0e85ed34bb6bb6dc262) [Apache-2.0]
- swag (0579829e66fde26b27d401921afb73704c4d463d) [Apache-2.0]
- sys (c7a1bf9a0b0aa7c0c0e35a435924dd68e64d1653) [BSD-3-Clause]
- terraform-exec (20b39e17d811112c03a2a9e62f2343f9593afea3) [MPL-2.0]
- terraform-json (1985ec492e2dbd4c168ef9c7e985b6cbe3d9fb1e) [MPL-2.0]
- terraform-plugin-docs (44ca5539c72833f113b72493d523a8ab129beb8a) [MPL-2.0]
- terraform-plugin-framework (3773267ad651b16ec12cfe38ab4fdd59b3d9ab5d) [MPL-2.0]
- terraform-plugin-go (c593d2e0da8d2258b2a22af867c39842a0cb89f7) [MPL-2.0, MIT]
- terraform-plugin-log (be410f482cf0fc8896fe3e276c125428919a9282) [MPL-2.0]
- terraform-plugin-sdk (1798ae4ae71f7ffff29312a07c92d41205aff03b) [MPL-2.0]
- terraform-registry-address (1a097ae96e03499182a7b7b653079a5141d75eca) [MPL-2.0]
- testify (b747d7c5f853d017ddbc5e623d026d7fc2770a58) [MIT]
- text (9db913aaf20ced01b7a130d9fb222d74a1339fa6) [BSD-3-Clause]
- ulid (02a8604050d8466dd915307496174adb9be4593a) [Apache-2.0, BSD-3-Clause]
- uuid (44b5fee7c49cf3bcdf723f106b36d56ef13ccc88) [BSD-3-Clause]
- yaml.v2 (7649d4548cb53a614db133b2a8ac1f31859dda8c) [MIT, Apache-2.0]
- yaml.v3 (f6f7691b1fdeb513f56608cd2c32c51f8194bf51) [Apache-2.0, MIT]
--------------------------------------------------------------------------------
Package Title: appengine (5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a)
Package Locator: git+github.com/golang/appengine$5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a
--------------------------------------------------------------------------------
* Package Info *
Authors: kaylanguyen@google.com, joelgerard@users.noreply.github.com, jason.a.collins@gmail.com, sbuss@google.com, zev.goldstein@gmail.com, jubishop@gmail.com, aurken@pm.me, 11913400+juliehockett@users.noreply.github.com, masahiro.furudate@gmail.com, bashtian86@gmail.com, asr@alum.mit.edu, geeknoid@users.noreply.github.com, mtraver@users.noreply.github.com, 37878988+goog-lukemc@users.noreply.github.com, eascholtz@gmail.com, steven.buss@gmail.com, vvakame+dev@gmail.com, gamaguchi@gmail.com, 1271721+Smerom@users.noreply.github.com, delphinus@remora.cx, astec@users.noreply.github.com, mrno110y@gmail.com, rock619@gmail.com, danstryder@gmail.com, cbro@golang.org, sadams.codes@gmail.com, ross@zombiezen.com, me@davidsansome.com, lytvynov.a.v@gmail.com, yi-jiayu@users.noreply.github.com, jeff.tze.wu@gmail.com, strom@nevermore.ee, dklimkin@users.noreply.github.com, lorenc.d@gmail.com, joetsai@digital-static.net, evan.jones@bluecore.com, issac.trotts@gmail.com, ctin@google.com, wsh@google.com, adamtanner@google.com, shantuo@google.com, shadams@google.com, djd@golang.org, light@google.com, iannucci@google.com, dsymonds@golang.org, gmlewis@google.com, mcgreevy@golang.org, gmlewis@golang.org, zevdg@google.com, bergerl@google.com, berger.lukas@gmail.com, chizhg@google.com, ludo@google.com, imcusg@gmail.com, 49699333+dependabot[bot]@users.noreply.github.com, deleplace2015@gmail.com, 56172920+jihuin@users.noreply.github.com, thaJeztah@users.noreply.github.com, 107502002+ybocalandro@users.noreply.github.com, bsiegert@gmail.com, mail@pokutuna.com
Dependency Path: github.com/golang/appengine
--------------------------------------------------------------------------------
Package Title: cast (2b0eb0f724e320b655240e331aef36d1175986c2)
Package Locator: git+github.com/spf13/cast$2b0eb0f724e320b655240e331aef36d1175986c2
--------------------------------------------------------------------------------
* Package Info *
Authors: bjorn.erik.pedersen@gmail.com, heewa.b@gmail.com, thdespou@hotmail.com, thefirstmuffinman@gmail.com, xavier.vello@datadoghq.com, rvolosatovs@riseup.net, moorereason@gmail.com, chyeh@cepave.com, pgdba.yzy@gmail.com, m@cognusion.com, chyeh@users.noreply.github.com, gowithrain@qq.com, cyrill@schumacher.fm, tylerpowerx@gmail.com, jeff@somethingsimilar.com, jack.spirou@target.com, chance.zibolski@gmail.com, steve.francia@gmail.com, derek@derekperkins.com, txgruppi@gmail.com, asdine.elhrychy@gmail.com, romain.baugue@elwinar.com, 49699333+dependabot[bot]@users.noreply.github.com, sagikazarmark@users.noreply.github.com, mark.sagikazar@gmail.com, qwei2013@gmail.com, yveshield@gmail.com, tuziemon@hotmail.co.jp, __pm@outlook.com, zheng.leslie@qq.com, pro@k4rian.com
Dependency Path: github.com/spf13/cast
--------------------------------------------------------------------------------
Package Title: cli (784fcd13e857c49c0e5738a19707762f372a3eb3)
Package Locator: git+github.com/mitchellh/cli$784fcd13e857c49c0e5738a19707762f372a3eb3
--------------------------------------------------------------------------------
* Package Info *
Authors: 49699333+dependabot[bot]@users.noreply.github.com, xmitchx@gmail.com, sabithksme@gmail.com, andrii.zakurenyi@c.delinea.com, mitchell.hashimoto@gmail.com, katy@katy.moe, radek.simko@gmail.com, 70637961+santosh653@users.noreply.github.com, dnephin@gmail.com, jeffrey.mitchell@gmail.com, dylan.arbour@gmail.com, acomagu@gmail.com, moorara@gmail.com, seth@sethvargo.com, frank.schroeder@gmail.com, robertjdeusser@gmail.com, sean@chittenden.org, gobwas@gmail.com, rdeusser@salesforce.com, sdadeveloper@gmail.com, iamthemuffinman@outlook.com, sethvargo@gmail.com, fujiistorage@gmail.com, james@jen20.com, phinze@phinze.com, tim@nitrous.io, ru@ryanuber.com, chuyeow@gmail.com, ftharsln@gmail.com, henrik@hodne.io, tim@fewagainstmany.com
Dependency Path: github.com/mitchellh/cli
--------------------------------------------------------------------------------
Package Title: color (a05da93ebe62ca9fc6791d3376ec4dad01196448)
Package Locator: git+github.com/fatih/color$a05da93ebe62ca9fc6791d3376ec4dad01196448
--------------------------------------------------------------------------------
* Package Info *
Authors: 49699333+dependabot[bot]@users.noreply.github.com, ftharsln@gmail.com, pellared@hotmail.com, martin@ubique.se, max@mpatterson.xyz, jonathan@onrewind.com, marwan-at-work@github.com, 54780737+bl-ue@users.noreply.github.com, tal.liron@gmail.com, alexey.palazhchenko@gmail.com, achilleas.k@gmail.com, jrwillette88@gmail.com, edward@4angle.com, dmitris@users.noreply.github.com, rhysd@users.noreply.github.com, github@hollensbe.org, raphael@hackebrot.de, ahmetalpbalkan@gmail.com, github@q33.us, albertnigma@gmail.com, andrii.rubtsov@gmail.com, moorereason@gmail.com, harsha@harshavardhana.net, mattn.jp@gmail.com, alex@tyba.com, andrewaclt@gmail.com, lcorr005@gmail.com, zddhub@gmail.com, sinan@koding.com, marc@marc-abramowitz.com, tenpeoplemeet@gmail.com, hermanschaaf@gmail.com, cenkalti@gmail.com
Dependency Path: github.com/fatih/color
--------------------------------------------------------------------------------
Package Title: complete (05b68ffc813dd10c420993cb1cf927b346c057b8)
Package Locator: git+github.com/posener/complete$05b68ffc813dd10c420993cb1cf927b346c057b8
--------------------------------------------------------------------------------
* Package Info *
Authors: posener@gmail.com, chris@u-d13.com, EMAIL:-posener@gmail.com, 881420+antichris@users.noreply.github.com, zlaw777@gmail.com, anis@minio.io, goreadme[bot]@users.noreply.github.com, gechrr@gmail.com, adam@aslevy.com, theadamlevy@gmail.com, eyal@stratoscale.com, craig@hesling.com, acomagu@gmail.com, ctyfoxylos@schubergphilis.com, github@thomshutt.com, seth@sethvargo.com, alex.dadgar@gmail.com, deleplace2015@gmail.com, josharian@gmail.com, lucapette@gmail.com, ivan.daniluk@gmail.com, 70637961+santosh653@users.noreply.github.com
Dependency Path: github.com/posener/complete
--------------------------------------------------------------------------------
Package Title: crypto (776e461a4e6d8b372a43c72122c5c28cfc40dca2)
Package Locator: git+go.googlesource.com/crypto$776e461a4e6d8b372a43c72122c5c28cfc40dca2
--------------------------------------------------------------------------------
* Package Info *
Authors: packrat386@gmail.com, emmanuel@orijtech.com, rolandshoemaker@gmail.com, ahmad.s.rusdi@gmail.com, dcohen@gatech.edu, bcmills@google.com, iantay@google.com, filippo@golang.org, jk+github@digineo.de, etryzelaar@google.com, pasi.tahkapaa@gmail.com, mike.munday@ibm.com, lilithkchung@gmail.com, katie@golang.org, cbeuw.andy@gmail.com, bobmcn@gmail.com, hyangah@gmail.com, alex.gaynor@gmail.com, rossikinsey@gmail.com, contact@yannic-bonenberger.com, lucas@bremis.ch, alouis@digitalocean.com, iant@golang.org, luke.champine@gmail.com, bradfitz@golang.org, jason-baker@users.noreply.github.com, thebaker@google.com, alex.brainman@gmail.com, mariano@smallstep.com, hi@filippo.io, mattn.jp@gmail.com, mastahyeti@gmail.com, edef@edef.eu, skinne@google.com, fshahriar@gmail.com, lars.lehtonen@gmail.com, laboger@linux.vnet.ibm.com, dmitshur@golang.org, alex@cloudware.io, ragansa@fb.com, Jason@zx2c4.com, browne@vmware.com, tklauser@distanz.ch, michael.hudson@canonical.com, yuan415030@gmail.com, agnivade@yahoo.co.in, cseo@linux.vnet.ibm.com, conradoplg@gmail.com, yanweizhi@bytedance.com, mdempsky@google.com, re.udalov@gmail.com, clement.chigot@atos.net, aofei@aofeisheng.com, hanwen@google.com, kris@cloudflare.com, nsajko@gmail.com, andrey.petrov@shazow.net, mmcloughlin@gmail.com, aead@mail.de, maxsem.wiki@gmail.com, matloob@golang.org, ihaken@netflix.com, qh06@qq.com, ddos@google.com, mengzhuo1203@gmail.com, code@mdcook.net, julien.kauffmann@freelan.org, mbohuslavek@gmail.com, outtatime@gmail.com, ross@smithii.com, peterke@gmail.com, kc1212@users.noreply.github.com, axel.wagner.hh@googlemail.com, KillPinguin@users.noreply.github.com, kev@inburke.com, igor.zhilianin@gmail.com, dxjones@gmail.com, andres.lowrie@gmail.com, 224617+mkishere@users.noreply.github.com, alexandre@alexandreviau.net, paul@paulfurley.com, agl@golang.org, dnjuguna@gmail.com, moehrmann@google.com, tbushnell@google.com, git@frezbo.com, wteiken@google.com, isaac.ardis@gmail.com, maciejd@google.com, davidben@google.com, leo@costela.net, jrcanty@gmail.com, billo@ca.ibm.com, git@leonklingele.de, drathier@users.noreply.github.com, me+google@tomthorogood.co.uk, joe@joeshaw.org, alb.donizetti@gmail.com, mirtchovski@gmail.com, dojha12@gmail.com, mark.rushakoff@gmail.com, florian@uekermann.me, brad@morgabra.com, mike@sowbug.com, andybons@golang.org, eiais@google.com, ilya.tocar@intel.com, jake.b@socialcodeinc.com, spencertung@google.com, damien@platform.sh, jarondl@google.com, in.gottwald@gmail.com, sami.ponkanen@gmail.com, me@slukjanov.name, jgracenin@gmail.com, rahimi.mnr@gmail.com, andrew.ekstedt@gmail.com, pmoody@uber.com, sam@samwhited.com, tugdual.saunier@gmail.com, xunianzu@gmail.com, anmol@aubble.com, rsc@golang.org, namusyaka@gmail.com, linyintor@gmail.com, artyom.pervukhin@gmail.com, m@mdp.im, crvv.mail@gmail.com, tobias.assarsson@gmail.com, sukrit.handa@utoronto.ca, sbuss@google.com, martinkr@google.com, dave@cheney.net, jeff@somethingsimilar.com, johan@cognitivelogic.com, mathias@hall-andersen.dk, adam@continusec.com, cnicutar@google.com, light@google.com, whorfin@gmail.com, joetsai@digital-static.net, fastest963@gmail.com, jfmyers9@gmail.com, suda.kyoto@gmail.com, pquerna@apache.org, fredrik.forsmo@gmail.com, hello@emilienkenler.com, heschi@google.com, munday@ca.ibm.com, minux@golang.org, adg@golang.org, pmorjan@gmail.com, lion@aosc.xyz, mikioh.mikioh@gmail.com, lazard@golang.org, ryuzo.yamamoto@gmail.com, austin@google.com, dsavints@gmail.com, paul@vanbrouwershaven.com, pedronis@lucediurna.net, garton@gmail.com, henrik@hodne.io, emm.odeke@gmail.com, mike@kothar.net, majid@apsalar.com, alok.menghrajani@gmail.com, kelwert@atlassian.com, jonathan@titanous.com, me@jessfraz.com, juniorz@gmail.com, svbl@google.com, ahmedf@vmware.com, fedor@indutny.com, martin.hamrle@gmail.com, jamie.r.beverly@gmail.com, peter.moody@gmail.com, joe2farrell@gmail.com, nsheridan@gmail.com, samuel.b.hug@gmail.com, crhyme@google.com, scott@sctsm.com, miquella@gmail.com, schnake.john@gmail.com, themax@gmail.com, jacob@jhaven.me, bwester@squareup.com, samic@google.com, rlb@ipv.sx, carl@stripe.com, jonathanboulle@gmail.com, arlolra@gmail.com, cs@squareup.com, paul.meyer@microsoft.com, lewin.bormann@gmail.com, evan@stripe.com, matt@mattbostock.com, sburford@google.com, ptseng@squareup.com, thomasdesr@gmail.com, jhahn@google.com, ekg@google.com, 0intro@gmail.com, dhiru.kholia@gmail.com, mg@ebfe.org, jra@nella.org, marete@toshnix.com, alexander@bumpern.de, rasky@develer.com, taruti@taruti.net, kbsriram@google.com, inflatablewoman@gmail.com, jsing@google.com, dsz0111@gmail.com, glennb@google.com, nathanhu@google.com, marga@google.com, josharian@gmail.com, coruus@gmail.com, michael.marineau@coreos.com, traetox@gmail.com, drc@yahoo-inc.com, dsymonds@golang.org, eric.d.eisner@gmail.com, dchest@gmail.com, david.calavera@gmail.com, yzou@google.com, r@golang.org, jakob@nym.se, jmpittman@google.com, jpsugar@google.com, schulze@math.uni-hannover.de, casey.marshall@gmail.com, adhintz@google.com, kr@xph.us, fullung@gmail.com, nigeltao@golang.org, jcb@google.com, minux.ma@gmail.com, emilliken@gmail.com, sledbetter@google.com, dgryski@gmail.com, willemvds@gmail.com, gustav.paul@gmail.com, kardianos@gmail.com, peter.armitage@gmail.com, gary@beagledreams.com, chhansmann@gmail.com, luitvd@gmail.com, pilne1407@gmail.com, murp@ibm.com, trevordixon@gmail.com, radek.simko@gmail.com, jdkasten@google.com, roland@golang.org, julie@golang.org, tamird@google.com, seyed.mahdi.hosseini.moghaddam@ibm.com, dneil@google.com, hans@stackallocated.com, yuanyanghau@gmail.com, pov@mahou-shoujo.moe, ben@benburkert.com, peter@verraedt.be, mixa1243@gmail.com, imcusg@gmail.com, github@hoffman-andrews.com, dan@kortschak.io, gobot@golang.org, buildpaas@gmail.com, yastrebov.alex@gmail.com, hopehook.com@gmail.com, aaqaishtyaq@gmail.com, mpoliwczak34@gmail.com, hi@nhooyr.io, nicola.murino@gmail.com
Dependency Path: go.googlesource.com/crypto
--------------------------------------------------------------------------------
Package Title: easyjson (c120ca7ced6051261161ce15e8f1542a4b2567fc)
Package Locator: git+github.com/mailru/easyjson$c120ca7ced6051261161ce15e8f1542a4b2567fc
--------------------------------------------------------------------------------
* Package Info *
Authors: a.mayorskiy@corp.mail.ru, 48577114+zikaeroh@users.noreply.github.com, i.anferov@corp.mail.ru, v-maximi@microsoft.com, bloodsin.romanov@gmail.com, p.parshin@city-mobil.ru, kirillx@gmail.com, cafxx@strayorange.com, cafxx@mercari.com, a.mayorskiy@webprod.io, drooddy@gmail.com, sam901@yandex.ru, ivan.boyarkin@kiwi.com, a.sulaev@corp.mail.ru, zifter.ai@gmail.com, argo@uber.com, elmas.ferhat@gmail.com, kenshaw@gmail.com, ar@gortc.io, dmbohdan@gmail.com, philip.j.r.pearl@gmail.com, senseye.com.ua@gmail.com, shmeleine@gmail.com, rappleyard@depoel.co.uk, wbo@hellofresh.com, solteke.st@gmail.com, timur.makarchuk@gmail.com, motkov.kirill@gmail.com, 17377258+sntdevco@users.noreply.github.com, vlad@lesnoy.name, makarchuk@group-ib.com, mw@tectusdreamlab.com, imselfish@stek29.rocks, aleksandr@zelenin.me, a1exej-v@yandex.ru, dmirogin@ya.ru, irioth@gmail.com, Irioth@gmail.com, michael.matur@gmail.com, dev@incsw.in, goschwald@maxmind.com, nic.dade@gmail.com, regedaster@gmail.com, levi@levigross.com, sah4ez32@gmail.com, github@cafxx.strayorange.com, strom@nevermore.ee, mmb@ya.ru, drobanton@gmail.com, carlo.ferraris@rakuten.com, clu@uber.com, lispad@gmail.com, v.varankin@corp.mail.ru, edward@4angle.com, nanjj@cn.ibm.com, james@jen20.com, dfield@gmail.com, noisyscanner@gmail.com, noisyscanner@users.noreply.github.com, ibobrik@gmail.com, will@summercat.com, jksmphone@gmail.com, raynos2@gmail.com, koalex@users.noreply.github.com, cespare@gmail.com, andreas.reuterberg@gmail.com, romanov.vasily@mail.ru, e.proydakov@rambler-co.ru, a.baranov@office.ngs.ru, victor@starodub.org, nek.narqo+git@gmail.com, g.sokol99@g-sokol.info, long@mindworker.de, gobwas@gmail.com, erik@dubbelboer.com, jura.stakhiv@gmail.com, doroginin@gmail.com, dmitrydoroginin@LAZ-RU-L-M-0140.local, stuart.carnie@gmail.com, a.petrukhin@corp.mail.ru, mkhasanov83@gmail.com, vstarodub@users.noreply.github.com, connor@peet.io, hector.jusforgues@lazada.com, marat.khasanov@lazada.com, dmbreaker@dmbreaker.dmbreaker, anton.velikanov@lazada.com, jz@rubiconproject.com, vadim.petrov@lazada.com, v.romanov@corp.mail.ru, steve.jiang@vungle.com, james-lawrence@users.noreply.github.com, m.kabishchev@lingualeo.com, v.starodub@corp.mail.ru, absourd.noise@gmail.com, hector.jusforgues@gmail.com, s.kamardin@corp.mail.ru, bulletmys@yandex.ru, 40833223+bulletmys@users.noreply.github.com, dmitry.rybakov@corp.mail.ru, zinoviev.denis@yandex.ru, syed.qasim.sarfraz@gmail.com, 70637961+santosh653@users.noreply.github.com, maxxarts@gmail.com, komika@komika.org, 63663261+YaroslavPodorvanov@users.noreply.github.com
Dependency Path: github.com/mailru/easyjson
--------------------------------------------------------------------------------
Package Title: errwrap (7b00e5db719c64d14dd0caaacbd13e76254d02c0)
Package Locator: git+github.com/hashicorp/errwrap$7b00e5db719c64d14dd0caaacbd13e76254d02c0
--------------------------------------------------------------------------------
* Package Info *
Authors: 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 7110138+CalebAlbers@users.noreply.github.com, noreply@hashicorp.com, dnephin@hashicorp.com, dnephin@gmail.com, mitchell.hashimoto@gmail.com, xmitchx@gmail.com, ml@matthewleon.com, andrew.martin@lovestockleaf.com
Dependency Path: github.com/hashicorp/errwrap
--------------------------------------------------------------------------------
Package Title: github.com/agext/levenshtein (v1.2.2)
Package Locator: go+github.com/agext/levenshtein$v1.2.2
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/agext/levenshtein
--------------------------------------------------------------------------------
Package Title: github.com/apparentlymart/go-textseg/v13 (v13.0.0)
Package Locator: go+github.com/apparentlymart/go-textseg/v13$v13.0.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/apparentlymart/go-textseg/v13
--------------------------------------------------------------------------------
Package Title: github.com/go-openapi/analysis (v0.21.4)
Package Locator: go+github.com/go-openapi/analysis$v0.21.4
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/go-openapi/analysis
--------------------------------------------------------------------------------
Package Title: github.com/go-openapi/errors (v0.20.3)
Package Locator: go+github.com/go-openapi/errors$v0.20.3
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/go-openapi/errors
--------------------------------------------------------------------------------
Package Title: github.com/go-openapi/loads (v0.21.2)
Package Locator: go+github.com/go-openapi/loads$v0.21.2
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/go-openapi/loads
--------------------------------------------------------------------------------
Package Title: github.com/go-openapi/runtime (v0.25.0)
Package Locator: go+github.com/go-openapi/runtime$v0.25.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/go-openapi/runtime
--------------------------------------------------------------------------------
Package Title: github.com/go-openapi/strfmt (v0.21.3)
Package Locator: go+github.com/go-openapi/strfmt$v0.21.3
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/go-openapi/strfmt
--------------------------------------------------------------------------------
Package Title: github.com/go-openapi/validate (v0.22.0)
Package Locator: go+github.com/go-openapi/validate$v0.22.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/go-openapi/validate
--------------------------------------------------------------------------------
Package Title: github.com/hashicorp/go-checkpoint (v0.5.0)
Package Locator: go+github.com/hashicorp/go-checkpoint$v0.5.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/hashicorp/go-checkpoint
--------------------------------------------------------------------------------
Package Title: github.com/hashicorp/go-version (v1.6.0)
Package Locator: go+github.com/hashicorp/go-version$v1.6.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/hashicorp/go-version
--------------------------------------------------------------------------------
Package Title: github.com/hashicorp/terraform-svchost (f050f53b9734)
Package Locator: go+github.com/hashicorp/terraform-svchost$f050f53b9734
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/hashicorp/terraform-svchost
--------------------------------------------------------------------------------
Package Title: github.com/hashicorp/yamux (2f1d1f20f75d)
Package Locator: go+github.com/hashicorp/yamux$2f1d1f20f75d
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/hashicorp/yamux
--------------------------------------------------------------------------------
Package Title: github.com/huandu/xstrings (v1.3.2)
Package Locator: go+github.com/huandu/xstrings$v1.3.2
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/huandu/xstrings
--------------------------------------------------------------------------------
Package Title: github.com/Masterminds/goutils (v1.1.1)
Package Locator: go+github.com/Masterminds/goutils$v1.1.1
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/Masterminds/goutils
--------------------------------------------------------------------------------
Package Title: github.com/Masterminds/sprig/v3 (v3.2.2)
Package Locator: go+github.com/Masterminds/sprig/v3$v3.2.2
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/Masterminds/sprig/v3
--------------------------------------------------------------------------------
Package Title: github.com/mitchellh/copystructure (v1.2.0)
Package Locator: go+github.com/mitchellh/copystructure$v1.2.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/mitchellh/copystructure
--------------------------------------------------------------------------------
Package Title: github.com/mitchellh/go-wordwrap (v1.0.0)
Package Locator: go+github.com/mitchellh/go-wordwrap$v1.0.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/mitchellh/go-wordwrap
--------------------------------------------------------------------------------
Package Title: github.com/mitchellh/reflectwalk (v1.0.2)
Package Locator: go+github.com/mitchellh/reflectwalk$v1.0.2
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/mitchellh/reflectwalk
--------------------------------------------------------------------------------
Package Title: github.com/oklog/run (v1.0.0)
Package Locator: go+github.com/oklog/run$v1.0.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/oklog/run
--------------------------------------------------------------------------------
Package Title: github.com/russross/blackfriday (v1.6.0)
Package Locator: go+github.com/russross/blackfriday$v1.6.0
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/russross/blackfriday
--------------------------------------------------------------------------------
Package Title: github.com/shopspring/decimal (v1.3.1)
Package Locator: go+github.com/shopspring/decimal$v1.3.1
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/shopspring/decimal
--------------------------------------------------------------------------------
Package Title: github.com/vmihailenco/msgpack (v4.0.4)
Package Locator: go+github.com/vmihailenco/msgpack$v4.0.4
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/vmihailenco/msgpack
--------------------------------------------------------------------------------
Package Title: github.com/vmihailenco/msgpack/v4 (v4.3.12)
Package Locator: go+github.com/vmihailenco/msgpack/v4$v4.3.12
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/vmihailenco/msgpack/v4
--------------------------------------------------------------------------------
Package Title: github.com/vmihailenco/tagparser (v0.1.1)
Package Locator: go+github.com/vmihailenco/tagparser$v0.1.1
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: github.com/vmihailenco/tagparser
--------------------------------------------------------------------------------
Package Title: go-cleanhttp (6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2)
Package Locator: git+github.com/hashicorp/go-cleanhttp$6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2
--------------------------------------------------------------------------------
* Package Info *
Authors: 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 7110138+CalebAlbers@users.noreply.github.com, noreply@hashicorp.com, ukeme.bassey@hashicorp.com, jeffrey.mitchell@gmail.com, xmitchx@gmail.com, bflad417@gmail.com, cleung2010@gmail.com, jeff@hashicorp.com, j.bardin@gmail.com, vishalnayakv@gmail.com
Dependency Path: github.com/hashicorp/go-cleanhttp
--------------------------------------------------------------------------------
Package Title: go-cmp (a97318bf6562f2ed2632c5f985db51b1bc5bdcd0)
Package Locator: git+github.com/google/go-cmp$a97318bf6562f2ed2632c5f985db51b1bc5bdcd0
--------------------------------------------------------------------------------
* Package Info *
Authors: joetsai@digital-static.net, light@google.com, neild@users.noreply.github.com, elmas.ferhat@gmail.com, mattdee123@gmail.com, kevlar@google.com, shurcooL@gmail.com, liangcszzu@163.com, bakhtiyar.garashov@gmail.com, cespare@gmail.com, aoang@x2oe.com, catatsuy@catatsuy.org, aoang@x2ox.com, tklauser@distanz.ch, sonjeabin@gmail.com, eltociear@gmail.com, tobias.klauser@gmail.com, colin.newell@gmail.com, ernest.galbrun@gmail.com, 36500782+ko30005@users.noreply.github.com, a.ishikawa810@gmail.com, 178inaba.git@gmail.com, morrowc@ops-netman.net, brad@danga.com, rogpeppe@gmail.com, muesli@gmail.com, crawshaw@golang.org, lmilewski@gmail.com, rsc@swtch.com
Dependency Path: github.com/google/go-cmp
--------------------------------------------------------------------------------
Package Title: go-colorable (11a925cff3d38c293ddc8c05a16b504e3e2c63be)
Package Locator: git+github.com/mattn/go-colorable$11a925cff3d38c293ddc8c05a16b504e3e2c63be
--------------------------------------------------------------------------------
* Package Info *
Authors: mattn.jp@gmail.com, shuiyuzhe@gmail.com, iyahaya@nifty.com, devld@ikedam.jp, dolmen@cpan.org, mislav.marohnic@gmail.com, koron.kaoriya@gmail.com, naru123456789@gmail.com, alexandre@alexandreviau.net, cenkalti@gmail.com, mitaka.214@gmail.com, tklauser@distanz.ch, max.altgelt@nextron-systems.com, sergey.simonchik@jetbrains.com, ujiprog@gmail.com, nick@craig-wood.com, alec.therabbit.git@gmail.com, me@toshimaru.net, radek.simko@gmail.com, tyru.exe@gmail.com, 1549571+filimonov@users.noreply.github.com
Dependency Path: github.com/mattn/go-colorable
--------------------------------------------------------------------------------
Package Title: go-cty (180e0b5efdf936a25a8c3cac79887c2d3587a262)
Package Locator: git+github.com/zclconf/go-cty$180e0b5efdf936a25a8c3cac79887c2d3587a262
--------------------------------------------------------------------------------
* Package Info *
Authors: mart@degeneration.co.uk, mildwonkey@users.noreply.github.com, alisdair@users.noreply.github.com, pamela.selle@gmail.com, j.bardin@gmail.com, paul@paultyng.net, nicholas.spain96@gmail.com, azr@users.noreply.github.com, radek.simko@gmail.com, j.goodhouse@gmail.com, kayrus@users.noreply.github.com, ptyng@hashicorp.com, minamijoyo@gmail.com, sander@xanzy.io, matthieu@matthieu-antoine.me, owentuz@gmail.com, pdecat@gmail.com, liam.cervante@hashicorp.com, daniel@dbanck.de, dbanck@users.noreply.github.com, zsj950618@gmail.com, 3526523+annawinkler@users.noreply.github.com, 107502002+ybocalandro@users.noreply.github.com, github@jedevc.com, 49699333+dependabot[bot]@users.noreply.github.com
Dependency Path: github.com/zclconf/go-cty
--------------------------------------------------------------------------------
Package Title: go-cty (d3edf31b63203c0f3d27901301db51b462141745)
Package Locator: git+github.com/hashicorp/go-cty$d3edf31b63203c0f3d27901301db51b462141745
--------------------------------------------------------------------------------
* Package Info *
Authors: 49699333+dependabot[bot]@users.noreply.github.com, ptyng@hashicorp.com, alex.somesan@gmail.com, apilon@hashicorp.com, mart@degeneration.co.uk, paul@paultyng.net, alisdair@users.noreply.github.com, nicholas.spain96@gmail.com, azr@users.noreply.github.com, j.bardin@gmail.com, radek.simko@gmail.com, j.goodhouse@gmail.com, kayrus@users.noreply.github.com, minamijoyo@gmail.com, sander@xanzy.io
Dependency Path: github.com/hashicorp/go-cty
--------------------------------------------------------------------------------
Package Title: go-genproto (1bc688fe9f3e0f5d5ae9e946bb15ec517a5e6823)
Package Locator: git+github.com/googleapis/go-genproto$1bc688fe9f3e0f5d5ae9e946bb15ec517a5e6823
--------------------------------------------------------------------------------
* Package Info *
Authors: bot@renovateapp.com, yoshi-automation@google.com, quartzmo@gmail.com, 6331106+codyoss@users.noreply.github.com, 49699333+dependabot[bot]@users.noreply.github.com, noahdietz@users.noreply.github.com, 69952136+nicoleczhu@users.noreply.github.com, 80869356+google-cloud-policy-bot[bot]@users.noreply.github.com, renovate@whitesourcesoftware.com, tamird@gmail.com, 26876514+tbpg@users.noreply.github.com, tswadell@google.com, ilkergoktugozturk@gmail.com, joetsai@digital-static.net, ananyasaxena1@gmail.com, cbro@golang.org, shollyman@google.com, deklerk@google.com, hengf.li@gmail.com, cjcotter@google.com, 9397363+hongalex@users.noreply.github.com, koloite@gmail.com, dcavazos@google.com, davido262@gmail.com, jba@users.noreply.github.com, doroginin@gmail.com, pongad@google.com, igorbernstein@google.com, larryxiao@users.noreply.github.com, guokeno0@gmail.com, djd@golang.org, adam@adamtanner.org, dayveday@gmail.com
Dependency Path: github.com/googleapis/go-genproto
--------------------------------------------------------------------------------
Package Title: go-hclog (8b7499ad6ad46ce583e825d324d008032b644703)
Package Locator: git+github.com/hashicorp/go-hclog$8b7499ad6ad46ce583e825d324d008032b644703
--------------------------------------------------------------------------------
* Package Info *
Authors: 2614075+drewbailey@users.noreply.github.com, evan@hashicorp.com, evan@phx.io, robbie@hashicorp.com, ttsugrii@fb.com, mitchell.hashimoto@gmail.com, alex@hashicorp.com, alex.dadgar@gmail.com, mahmood@notnoop.com, mahmood@hashicorp.com, sander@xanzy.io, blalor@bravo5.org, blalor@hashicorp.com, evan@fallingsnow.net, seth@sethvargo.com, jim@kalafut.net, jeff@hashicorp.com, beccapetrin@posteo.net, beccapetrin@gmail.com, felix@userspace.com.au, evan@scytale.io, cleung2010@gmail.com, Caiyeon@users.noreply.github.com, jeffrey.mitchell@gmail.com, banzaimonkey@gmail.com, raskchanky@gmail.com, rb@hashicorp.com, dani@builds.terrible.systems, dekimsey@gmail.com, bflad417@gmail.com, jamiefinnigan@gmail.com, seth.a.hoenig@gmail.com, 3526523+annawinkler@users.noreply.github.com, dolmen@cpan.org, binaek@turbot.com, luiz@hashicorp.com, 464492+angrycub@users.noreply.github.com, mschurter@hashicorp.com, paddy@hashicorp.com, gliptak@gmail.com, abailey@hashicorp.com, marco.molteni@mailbox.org, 45549939+varnson@users.noreply.github.com, varnson.fan@gmail.com, dnephin@hashicorp.com, dnephin@gmail.com, j.bardin@gmail.com, ncabatoff@hashicorp.com, jkalafut@hashicorp.com, ibrahimalihc@users.noreply.github.com, hashicorp-tsccr[bot]@users.noreply.github.com, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, NodyHub@users.noreply.github.com, shoenig@duck.com, 7110138+CalebAlbers@users.noreply.github.com, kent.picat.gruber@gmail.com, phk@mm.st
Dependency Path: github.com/hashicorp/go-hclog
--------------------------------------------------------------------------------
Package Title: go-homedir (af06845cf3004701891bf4fdb884bfe4920b3727)
Package Locator: git+github.com/mitchellh/go-homedir$af06845cf3004701891bf4fdb884bfe4920b3727
--------------------------------------------------------------------------------
* Package Info *
Authors: mitchell.hashimoto@gmail.com, xmitchx@gmail.com, mike@mikebrancato.com, knu@idaemons.org, leigh@mcchouse.com, rodcloutier@gmail.com, liangchaoyjs@163.com, admwiggin@gmail.com, steven.selph@gmail.com, info@matt3o12.de, bredov@gmail.com, ruben@rocketeer.be
Dependency Path: github.com/mitchellh/go-homedir
--------------------------------------------------------------------------------
Package Title: go-isatty (13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8)
Package Locator: git+github.com/mattn/go-isatty$13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8
--------------------------------------------------------------------------------
* Package Info *
Authors: mattn.jp@gmail.com, grafov@gmail.com, stuartnelson3@gmail.com, simon@captaincodeman.com, majid@apsalar.com, fike@midstorm.org, fabian.raetz@gmail.com, dolmen@cpan.org, samuel.thibault@ens-lyon.org, 3806110+tjni@users.noreply.github.com, tklauser@distanz.ch, henry@yearning.io, shogo82148@gmail.com, contact@marc-auberer.com, seyed.mahdi.hosseini.moghaddam@ibm.com, martin@ubique.se, 29139614+renovate[bot]@users.noreply.github.com, 5332688+dmgk@users.noreply.github.com, nick@craig-wood.com, sir@cmpwn.com, my@mysq.to, me@carlosedp.com, clement.chigot@atos.net, radek.simko@gmail.com, thesyncim@gmail.com, aeppert@gmail.com, luis@helloeave.com, ftharsln@gmail.com
Dependency Path: github.com/mattn/go-isatty
--------------------------------------------------------------------------------
Package Title: go-multierror (9974e9ec57696378079ecc3accd3d6f29401b3a0)
Package Locator: git+github.com/hashicorp/go-multierror$9974e9ec57696378079ecc3accd3d6f29401b3a0
--------------------------------------------------------------------------------
* Package Info *
Authors: mwhooker@gmail.com, haoxinst@gmail.com, 72365+pcman312@users.noreply.github.com, mitchell.hashimoto@gmail.com, xmitchx@gmail.com, felix@debuggable.com, nethier@hashicorp.com, mdeggies@gmail.com, j.bardin@gmail.com, bflad417@gmail.com, frenchben@docker.com, dvrkps@users.noreply.github.com, sagikazarmark@users.noreply.github.com, dtolnay@gmail.com, sethvargo@gmail.com, phinze@phinze.com, ru@ryanuber.com, max.nordlund@gmail.com, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, bshore@hashicorp.com, github-team-es-release-engineering@hashicorp.com, 82989873+hc-github-team-es-release-engineering@users.noreply.github.com, 7110138+CalebAlbers@users.noreply.github.com, seth@sethvargo.com, 49699333+dependabot[bot]@users.noreply.github.com, hashicorp-tsccr[bot]@users.noreply.github.com
Dependency Path: github.com/hashicorp/go-multierror
--------------------------------------------------------------------------------
Package Title: go-plugin (5a212b5b9ae4c3bed24ad357f98a8d1c9f23e8a4)
Package Locator: git+github.com/hashicorp/go-plugin$5a212b5b9ae4c3bed24ad357f98a8d1c9f23e8a4
--------------------------------------------------------------------------------
* Package Info *
Authors: 49699333+dependabot[bot]@users.noreply.github.com, bflad417@gmail.com, nicola.murino@gmail.com, tgross@hashicorp.com, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, fairclothjm@users.noreply.github.com, jmfaircloth@hashicorp.com, swenson@swenson.io, christopher.swenson@hashicorp.com, noreply@hashicorp.com, lechuan.niu@daocloud.io, 69793468+shubham-cmyk@users.noreply.github.com, 182850+Skarlso@users.noreply.github.com, 100231082+gavriel-hc@users.noreply.github.com, ted.behling@hashicorp.com, gavriel.hirsch@hashicorp.com, jeffrey.mitchell@gmail.com, mahmood@hashicorp.com, aleksandr.zagaevskiy@ru.axxonsoft.com, mitchell.hashimoto@gmail.com, xmitchx@gmail.com, mildwonkey@users.noreply.github.com, lujiajing1126@gmail.com, skarlso777@gmail.com, j.bardin@gmail.com, ptyng@hashicorp.com, marcus.efraimsson@gmail.com, paul@paultyng.net, kurosawa7620@gmail.com, Lachlan.Orr@q2ebanking.com, trung.n.k@gmail.com, humings@gmail.com, krisss@vmware.com, cleung2010@gmail.com, radek.simko@gmail.com, mschurter@hashicorp.com, BjoernAkAManf@users.noreply.github.com, briankassouf@users.noreply.github.com, johnmccabe@users.noreply.github.com, thomas.gosteli@protonmail.ch, jeff@hashicorp.com, evan@scytale.io, nmiyake@users.noreply.github.com, s.bourlon@gmail.com, schmichael@hashicorp.com, bkassouf@hashicorp.com, brian.m.kassouf@gmail.com, jivepaulrock@gmail.com, diptanuc@gmail.com, david.calavera@gmail.com, sethvargo@gmail.com, rekby@users.noreply.github.com, 83741749+paladin-devops@users.noreply.github.com, paddy@carvers.co, prat@hashicorp.com
Dependency Path: github.com/hashicorp/go-plugin
--------------------------------------------------------------------------------
Package Title: go-radix (1a2de0c21c94309923825da3df33a4381872c795)
Package Locator: git+github.com/armon/go-radix$1a2de0c21c94309923825da3df33a4381872c795
--------------------------------------------------------------------------------
* Package Info *
Authors: armon.dadgar@gmail.com, teabee89@gmail.com, bjorn.erik.pedersen@gmail.com, ujjwal.cpp@gmail.com, morrowc@ops-netman.net, mitchell.hashimoto@gmail.com, isaac.ardis@gmail.com, lorneli@163.com, preetha@hashicorp.com, anthony.olurin@metricaid.com, damian@gryski.com
Dependency Path: github.com/armon/go-radix
--------------------------------------------------------------------------------
Package Title: go-testing-interface (93f0c65740d3e21a23304be03030037f06e933ea)
Package Locator: git+github.com/mitchellh/go-testing-interface$93f0c65740d3e21a23304be03030037f06e933ea
--------------------------------------------------------------------------------
* Package Info *
Authors: xmitchx@gmail.com, paul@paultyng.net, mitchell.hashimoto@gmail.com, schmichael@hashicorp.com, dvrkps@users.noreply.github.com, bflad417@gmail.com, roy@hashicorp.com, 70637961+santosh653@users.noreply.github.com
Dependency Path: github.com/mitchellh/go-testing-interface
--------------------------------------------------------------------------------
Package Title: go-uuid (67cd70b3bc50aeab4f2a02f869573616871a9a2a)
Package Locator: git+github.com/hashicorp/go-uuid$67cd70b3bc50aeab4f2a02f869573616871a9a2a
--------------------------------------------------------------------------------
* Package Info *
Authors: 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 7110138+CalebAlbers@users.noreply.github.com, jeffrey.mitchell@gmail.com, Lexman42@users.noreply.github.com, nodakai@gmail.com, xmitchx@gmail.com, bflad417@gmail.com, jeff@hashicorp.com, sethvargo@gmail.com, sergeyklay@users.noreply.github.com, vishalnayak@users.noreply.github.com, vishalnayakv@gmail.com
Dependency Path: github.com/hashicorp/go-uuid
--------------------------------------------------------------------------------
Package Title: go.mongodb.org/mongo-driver (v1.11.1)
Package Locator: go+go.mongodb.org/mongo-driver$v1.11.1
--------------------------------------------------------------------------------
* Package Info *
Dependency Path: go.mongodb.org/mongo-driver
--------------------------------------------------------------------------------
Package Title: govalidator (f21760c49a8d602d863493de796926d2a5c1138d)
Package Locator: git+github.com/asaskevich/govalidator$f21760c49a8d602d863493de796926d2a5c1138d
--------------------------------------------------------------------------------
* Package Info *
Authors: asaskevich@icloud.com, asaskevich@users.noreply.github.com, lfaoro@gmail.com, malovrh.jure@gmail.com, dparrish@ceeness.com, cassioherculano@gmail.com, dzenovich@gmail.com, webmaster@bosenok.ru, oki.setiawan@tanihub.com, beornf@gmail.com, andrew.munro@skybettingandgaming.com, synestry@gmail.com, marcanthonysanti@gmail.com, elmas.ferhat@gmail.com, badges@fossa.io, jasonlam604@gmail.com, grzegorz@eliszewski.pl, alex.saskevich@synesis.ru, github@hoffman-andrews.com, igor@novg.net, panxiaohuai@guazi.com, michael@stapelberg.de, aymane.mzily@gmail.com, jessachandler@gmail.com, dannym87@gmail.com, bwatas@gmail.com, eggs.benjamin@gmail.com, debernardi.benjamin@gmail.com, nick@nicholaslaw.com.au, ajmeese7@gmail.com, maciek.borzecki@gmail.com, pisarukvadim@gmail.com, sergio@vimeo.com, iyed.bennour@scmfrance.fr, ken.schneider18@gmail.com, pgier@redhat.com, domen@ipavec.net, gvelkov@gmail.com, m.jansen@bauer-kirch.de, creditsuisse38@gmail.com, krhubert@gmail.com, antoine.leveugle@gmail.com, roman.useinov@gmail.com, genofire@users.noreply.github.com, jerome.r@kasomi.com, kohki.makimoto@gmail.com, db@fino.digital, umar.nizamani@gmail.com, richard.le.terrier@gmail.com, marek.mikuliszyn@gmail.com, joshua.m.horowitz@gmail.com, anthony@snapchat.com, andrewmoorewatson@gmail.com, nullstyle@gmail.com, konishchev@gmail.com, joost.lawerman@gmail.com, x00.x7f@gmail.com, hvnsweeting@gmail.com, asdine.elhrychy@gmail.com, info@asapdesign.de, rajaram@acubetechnologies.in, waltton@outlook.com, markus.mahlberg@me.com, isabella.tromba@gmail.com, hvn@familug.org, favadi@fastmail.fm, d.sanader@planet-work.com, hamonanth@gmail.com, sebastian.dahlgren@gmail.com, nkcraddock@gmail.com, ndavies@iparadigms.com, siva@joshsoftware.com, annismckenzie@Daniels-MacBook-Pro.local, daniel.lohse@alfatraining.de, annismckenzie@Daniels-MacBook-Pro-2.local, ito_shohei@cyberagent.co.jp, andriy.rakhnin@i3design.com, alexhomel@ya.ru, hermanbergwerf@gmail.com, tsaikd@gmail.com, matt@mzsanford.com, ccl1115@gmail.com, bb.simon.yu@gmail.com, daniel.korner@tu-dortmund.de, oryband@gmail.com, okansu@sunstate.se, jgannonjr@gmail.com, bom.d.van@gmail.com, nms277@gmail.com, brian.downs@gmail.com, stevenwilkin@gmail.com, deiwin.sarjas@gmail.com, archive.of.receipts@gmail.com, attilaolah@gmail.com, chef@bitdeli.com, sosjava@ya.ru, sergey.dobrodey@hotmail.com, eli.pavlov.vn@gmail.com, kasra.abdolahi1379@gmail, fatt3me@gmail.com, letmemakenewone@gmail.com, baharkh127@gmail.com, yuangongji@foxmail.com, asaskevich@yandex.com, prasunjoshi, 1660857+lucasdss@users.noreply.github.com, frankhe.cn@gmail.com, mohamed@elawadi.net, vasile.gabriel@email.com, rolindle@cisco.com, daledewd@gmail.com, vulxj0j8j8@gmail.com, sav3nme@gmail.com, 40318863+tomasmik@users.noreply.github.com, ndavies@turnitin.com, jack.wilsdon@gmail.com
Dependency Path: github.com/asaskevich/govalidator
--------------------------------------------------------------------------------
Package Title: grpc-go (eeb9afa1f6b6388152955eeca8926e36ca94c768)
Package Locator: git+github.com/grpc/grpc-go$eeb9afa1f6b6388152955eeca8926e36ca94c768
--------------------------------------------------------------------------------
* Package Info *
Authors: 39203661+zasweq@users.noreply.github.com, 52979934+matthewstevenson88@users.noreply.github.com, gregorycooke@google.com, dfawley@google.com, easwars@google.com, anramach@google.com, arvind.bright100@gmail.com, apolcyn@google.com, 110920239+erm-g@users.noreply.github.com, sergiitk@google.com, 126021+ash2k@users.noreply.github.com, tobo.atchou@gmail.com, s.matyukevich@gmail.com, 118117161+Mskxn@users.noreply.github.com, 58267404+erni27@users.noreply.github.com, rockingspore@gmail.com, xht_xht@qq.com, SaveTheRbtz@GMail.com, joeljeske14@gmail.com, 45449532+ulascansenturk@users.noreply.github.com, 38831921+my4-dev@users.noreply.github.com, knut.zuidema@gmail.com, 42193836+psyhatter@users.noreply.github.com, wangwx_junction@163.com, stanleycheung@google.com, borjalazarotoralles@gmail.com, 39397413+ktalg@users.noreply.github.com, fabian.holler@simplesurance.de, hnlq.sysu@gmail.com, __Singleton__@hackerdom.ru, ronakj@uber.com, kjburda@gmail.com, 2035234+jhump@users.noreply.github.com, hi@sergii.org, simonkotwicz@gmail.com, buzzsurfr@users.noreply.github.com, fuweid89@gmail.com, antoine.tollenaere@datadoghq.com, 67390330+mohanli-ml@users.noreply.github.com, sean@barag.org, 1590890+richzw@users.noreply.github.com, gtcooke94@gmail.com, yashhanda7@yahoo.com, yimin.chen@live.com, wby@ojbk.io, hchtgh315@gmail.com, atollena@gmail.com, 17816869670@163.com, andre.missaglia@gmail.com, tklauser@distanz.ch, yachor@gmail.com, aleksandrosansan@gmail.com, 39493925+RedHawker@users.noreply.github.com, fp544037857@gmail.com, ronakjainc@gmail.com, 88515053+feihu-stripe@users.noreply.github.com, im.longkai@gmail.com, anuraaga@gmail.com, juraci.github@kroehling.de, mitch.ward@datadoghq.com, bcmills@google.com, lidiz@google.com, menghanl@google.com, carzil@yandex.ru, 770954908@qq.com, 41276823+RobinLG@users.noreply.github.com, 37758547+idiamond-stripe@users.noreply.github.com, ddyihai@google.com, zhenlian@google.com, anthonin.bonnefoy@datadoghq.com, bsiegert@gmail.com, tswadell@google.com, sding3@ncsu.edu, patrickjiang0530@gmail.com, 55257063+ashithasantosh@users.noreply.github.com, jh@fullstory.com, eric@codebutler.com, thomas@tada.se, appu@google.com, horizonzy@apache.org, 67486458+wanlin31@users.noreply.github.com, rolandshoemaker@gmail.com, charlesxsh@hotmail.com, 217bssr@gmail.com, sgreene570@gmail.com, a.babik@designfortress.com, shitian.ni@gmail.com, hchtgh@163.com, ej@evanjones.ca, Mark.S.Lewis@outlook.com, terrytangyuan@gmail.com, sanjaypujare@users.noreply.github.com, singhuddeshyaofficial@gmail.com, rleungx@gmail.com, anicr7@gmail.com, ejona@google.com, zibarev.i@gmail.com, hrishihiraskar@gmail.com, terrymwilson@gmail.com, evan.jones@datadoghq.com, 57130330+EinKrebs@users.noreply.github.com, hagbard@gmail.com, Shnitzelil@users.noreply.github.com, cesarghali@users.noreply.github.com, yihuaz@google.com, 36129334+wuqinqiang@users.noreply.github.com, amenzhinsky@gmail.com, anassi@google.com, rayjingithub@gmail.com, 43191155+lzhfromustc@users.noreply.github.com, jille@quis.cx, mj.thelastid@gmail.com, howardjohn@google.com, JNProtzman@gmail.com, 42793+vmg@users.noreply.github.com, iskandarov11@inbox.ru, konrad.reiche@gmail.com, wardddustin@gmail.com, simon54894@gmail.com, laststem@gmail.com, 82504881+dkkb@users.noreply.github.com, eafzali@gmail.com, fujianhao1997@qq.com, wentworth@outlook.com, lvzecai@gmail.com, mayanksinghal308@gmail.com, irfanmahmoudsharif@gmail.com, jtattermusch@users.noreply.github.com, longxboyhi@gmail.com, fagnerncarvalho@gmail.com, gauravgahlot0107@gmail.com, zdapeng@google.com, mmukhi@google.com, deklerk@google.com, enocom@google.com, eric.wong.t@gmail.com, yuxuanli@google.com, bkutzman@google.com, thinkerou@gmail.com, coocood@gmail.com, ppawelslomka@gmail.com, dnephin@gmail.com, goldifit@gmail.com, cmceniry@mit.edu, muir@retailnext.net, groob@users.noreply.github.com, gyuhox@gmail.com, therc@users.noreply.github.com, reterclose@gmail.com, wright.elliot@gmail.com, liuxulei@ghostcloud.cn, mail@fholler.de, tomwilkie@users.noreply.github.com, sunshangpp@gmail.com, hein.meling@uis.no, seanharger93@gmail.com, keisuke.kishimoto@gmail.com, tsunanet@gmail.com, 12931063+xinzhangx@users.noreply.github.com, c4milo@users.noreply.github.com, Zeymo.wang@gmail.com, brad@danga.com, jack0@users.noreply.github.com, lytvynov.a.v@gmail.com, tcguitar@gmail.com, mmx@google.com, ghasemloo@users.noreply.github.com, vitalyisaev2@gmail.com, seuchida@gmail.com, nghialv2607@gmail.com, peter@cockroachlabs.com, mehrdada@users.noreply.github.com, justyna.ilczuk@gmail.com, jtattermusch@google.com, me@ahmadsherif.com, stevenerenst@gmail.com, dbudworth@spark.net, lk4d4math@gmail.com, tamird@gmail.com, campoy@golang.org, ericdrex@gmail.com, charithe@users.noreply.github.com, steeve.morin@gmail.com, alec@swapoff.org, matt.proud@gmail.com, sdrzlyz@126.com, adelez@google.com, steven.hl.0901@gmail.com, bryant@montevideo.com.uy, grayson.koonce@gmail.com, anthony.romano@coreos.com, marcus.hines@gmail.com, michal@improbable.io, psanford@retailnext.net, rodaine+github@gmail.com, pmarks@google.com, roth@google.com, ncteisen@gmail.com, toqizhao@gmail.com, thibault.riviere@scality.com, rhys.hiltner@gmail.com, xyzzyz@google.com, ncteisen@google.com, yang.clive@gmail.com, ThomasHabets@users.noreply.github.com, mike@iroot.net, nev@improbable.io, jifeng.yin@gmail.com, keijiyoshida.mail@gmail.com, david@wu-man.com, pongad@google.com, zellyn@squareup.com, spencer.kimball@gmail.com, mmukhi@mmukhi.mtv.corp.google.com, petermattis@gmail.com, jalexmullins91@gmail.com, smallfish.xy@gmail.com, jakub.wit.martin@gmail.com, mcgreevy@golang.org, dan@yikyakapp.com, jatwill@linuxstuff.org, sbatschelet@mac.com, johan.brandhorst@gmail.com, eno4@ecom.com, f@lex.la, yogeesh.pandey@gmail.com, 734339+btc@users.noreply.github.com, thomas@zen.ly, igorbernstein@google.com, notcarl@google.com, chen_yunpeng@foxmail.com, knweiss@gmail.com, keegan.csmith@gmail.com, zacromero3@gmail.com, krzysztofdrys@users.noreply.github.com, github@hoffman-andrews.com, guenther@unix-ag.uni-kl.de, dsymonds@golang.org, cheng@kik.com, ashi009@users.noreply.github.com, dustin@virtualroadside.com, canguler@google.com, andrew@sig.gy, andy.xning@gmail.com, elliot@identitii.com, github-tech@jeltef.nl, mike@mikeraimondi.com, sabottenda@gmail.com, thaJeztah@users.noreply.github.com, tomwei7@163.com, mr.wrfly@gmail.com, huynq0911@gmail.com, falakreyaz@gmail.com, zelahi@users.noreply.github.com, bot@codelingo.io, dntj@users.noreply.github.com, iant@golang.org, wukai199010@163.com, cbro@golang.org, joe2farrell@gmail.com, shurcooL@gmail.com, ben@bendarnell.com, saicheems@gmail.com, shnt1221@gmail.com, stephen.day@docker.com, timburks@google.com, admwiggin@gmail.com, xiangli.cs@gmail.com, peter.edge@gmail.com, enisoc@google.com, vieux@docker.com, bradfitz@golang.org, pquerna@apache.org, yangg@google.com, xfxyjwf@gmail.com, kartikyadav71199@gmail.com, drysdale@google.com, ymzhu@google.com, ilylia@126.com, ktr@syfm.me, Capstan@users.noreply.github.com, 43948155+yangdihangN@users.noreply.github.com, aanm@users.noreply.github.com, 42203940+datuanmac@users.noreply.github.com, mklencke@gmail.com, taralx@gmail.com, prannay.khosla@gmail.com, ajwerner@cockroachlabs.com, wjywbs@users.noreply.github.com, yuqitao1024@qq.com, 8175562+WeiranFang@users.noreply.github.com, sdrzlyz@gmail.com, 29494941+jbpratt78@users.noreply.github.com, alazarev@dropbox.com, 41535602+ruiHut@users.noreply.github.com, lazarevav@gmail.com, dzbarsky@gmail.com, yuzeming@gmail.com, sanmiguelje@gmail.com, adtac@google.com, 35056280+srini100@users.noreply.github.com, michael.hudson@canonical.com, lem12@mcmaster.ca, mats.stichel@gmail.com, zbarsky@dropbox.com, ahmet@mangomm.co.uk, jpbetz@google.com, foka@debian.org, iamquang95@gmail.com, b.v.wells@gmail.com, bjboreham@gmail.com, 54947267+shanel-at-google@users.noreply.github.com, mozhonghua@yeah.net, 32089134+yhyddr@users.noreply.github.com, geon0250@gmail.com, 41496192+yuxiaobo96@users.noreply.github.com, ensonic@hora-obscura.de, abozigian@gmail.com, code@liujiacai.net, MatthewDolan@users.noreply.github.com, joetsai@digital-static.net, 31981920+GarrettGutierrez1@users.noreply.github.com, ericgribkoff@google.com, egonelbre@gmail.com, ne250143@yahoo.co.jp, adtac@adtac.in, p.kowalczuk.priv@gmail.com, j.mya.pitz@gmail.com, 2822367+misberner@users.noreply.github.com, jamesxuhaozhe@gmail.com, pdbogen@users.noreply.github.com, jiangtao@google.com, neild@users.noreply.github.com, 54489480+panguncle@users.noreply.github.com, billzong2012@gmail.com, Ryanfsdf@users.noreply.github.com, zounengren@cmss.chinamobile.com, wei.cai-nat@daocloud.io, KillerX@users.noreply.github.com, chalin@users.noreply.github.com, nautim@ya.ru, zouyee1989@gmail.com, tariq181290@gmail.com, 30441101+sethp-nr@users.noreply.github.com, gargut@google.com, evanlimanto@berkeley.edu, rikingcoding@gmail.com, 32377977+cindyxue@users.noreply.github.com, 66145057+d-reidenbach@users.noreply.github.com, echo80313@gmail.com, elizabeth.zou.0@gmail.com, 61797154+aka-achu@users.noreply.github.com, h.tanaka.0325@gmail.com, pradeep.mamillapalli@equifax.com, geo.kechagias@gmail.com, sora134@gmail.com, stephen95@gmail.com, su3g4284zo6y7@gmail.com, seanabraham@gmail.com, antonbn@gmail.com, ezou@google.com, garrettgutierrez1@gmail.com, timothygu99@gmail.com, 8771937+chongyangshi@users.noreply.github.com, hypnoglow@gmail.com, sagikazarmark@users.noreply.github.com, piyush@codeitout.com, edmond@edison.tech, tobias.klauser@gmail.com, resec0109@gmail.com, pierrefenoll@gmail.com, jboeuf@users.noreply.github.com, jboeuf@google.com, dkwasnick@justin.tv, alexander.fahlke@gmail.com, nuss.justin@gmail.com, ag@ashishgandhi.org, sameer@golang.org, luan.cestari@gmail.com, LisaFC@users.noreply.github.com, s4uliu5@gmail.com, brandon.philips@coreos.com, chrjen@users.noreply.github.com, jeff@somethingsimilar.com, yangzhouhan@gmail.com, awpr@google.com
Dependency Path: github.com/grpc/grpc-go
--------------------------------------------------------------------------------
Package Title: hc-install (140ad91606b63771f1f2038c95ce72c155ef3990)
Package Locator: git+github.com/hashicorp/hc-install$140ad91606b63771f1f2038c95ce72c155ef3990
--------------------------------------------------------------------------------
* Package Info *
Authors: radek.simko@gmail.com, 49699333+dependabot[bot]@users.noreply.github.com, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 5575356+kmoe@users.noreply.github.com, varkockova.a@gmail.com, noreply@hashicorp.com, mafredri@gmail.com, tgross@hashicorp.com, wztdyl@sina.com, 36851+smacfarlane@users.noreply.github.com, bflad417@gmail.com, katy@katy.moe, ammar@ammar.io, rolandshoemaker@gmail.com
Dependency Path: github.com/hashicorp/hc-install
--------------------------------------------------------------------------------
Package Title: hcl (e54a1960efd6cdfe35ecb8cc098bed33cd6001a8)
Package Locator: git+github.com/hashicorp/hcl$e54a1960efd6cdfe35ecb8cc098bed33cd6001a8
--------------------------------------------------------------------------------
* Package Info *
Authors: maxbowsher@gmail.com, violet.hynes@hashicorp.com, smiller@hashicorp.com, lang@hashicorp.com, matkins@saymedia.com, xmitchx@gmail.com, octo@google.com, seth@sethvargo.com, COsorio11@users.noreply.github.com, davor.kapsa@gmail.com, frank.schroeder@gmail.com, olenfalk@amazon.com, github-tech@jeltef.nl, j.bardin@gmail.com, sean@chittenden.org, mitchell.hashimoto@gmail.com, theherk@gmail.com, kron82@gmail.com, Vladislav.Rassokhin@jetbrains.com, j.mark.pim@gmail.com, sethvargo@gmail.com, maerious@gmail.com, james@jen20.com, tim.gent@gmail.com, phinze@phinze.com, vishalnayakv@gmail.com, merlin.gaillard@showmax.com, dan.carley@gmail.com, ebaratte@gmail.com, msabate@suse.com, drew.wells00@gmail.com, vladislav.rassokhin@jetbrains.com, robert.hencke@gmail.com, brad.alexander@otoy.com, matt.ho@gmail.com, buzer@buzer.net, sander@xanzy.io, ftharsln@gmail.com, me@derekdowling.com, ru@ryanuber.com, amalaviy@akamai.com, sethvargo@users.noreply.github.com, emil@hessman.se, matt@cryptopanic.org, binet@cern.ch, kale@worsley.co.nz, alisdair@users.noreply.github.com, mildwonkey@users.noreply.github.com, radek.simko@gmail.com, bvdrucker@gmail.com, pam@hashicorp.com, mart@degeneration.co.uk, chrism@vancluevertech.com, pratik.mallya@liveramp.com, minamijoyo@gmail.com, colinhoglund@users.noreply.github.com, mateusz@kinvolk.io, johnsflores@gmail.com, bschrijver@schubergphilis.com, watassbass@gmail.com, habnabit@users.noreply.github.com, code@nozaq.io, akupila@gmail.com, buck@hashicorp.com, mahmood@hashicorp.com, delatrie@gmail.com, mahmood@notnoop.com, dani@tomlinson.io, aburdine@redventures.com, derek.mcneil90@gmail.com, paul@paultyng.net, github@me.phillipgeorge.com, jackson.nic@gmail.com, azr@users.noreply.github.com, aries0robin@gmail.com, lile2@kingsoft.com, mdeggies@gmail.com, hello@acotten.com, alex.heneveld@cloudsoftcorp.com, pamela.selle@gmail.com, 5470233+sivapalan@users.noreply.github.com, remi.lapeyre@henki.fr, mark.foster@optimizely.com, 56281590+glerb@users.noreply.github.com, liam.cervante@hashicorp.com, joerg@thalheim.io, crw@crw.xyz, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, bduggan@matatu.org, antun.maldini@gmail.com, 73482956+ascopes@users.noreply.github.com, 5575356+kmoe@users.noreply.github.com, katy@katy.moe, heber.tomer@gmail.com, seth.a.hoenig@gmail.com, contact@jamesharris.id.au, me@ryan.ec, inkel.ar@gmail.com, 17609145+alvin-huang@users.noreply.github.com, i.alidjikov@gmail.com, litvinenkoalex@gmail.com, tgross@hashicorp.com, jorgevallecilloc@gmail.com, hashicorp-tsccr[bot]@users.noreply.github.com
Dependency Path: github.com/hashicorp/hcl
--------------------------------------------------------------------------------
Package Title: ini.v1 (b2f570e5b5b844226bbefe6fb521d891f529a951)
Package Locator: git+gopkg.in/ini.v1$b2f570e5b5b844226bbefe6fb521d891f529a951
--------------------------------------------------------------------------------
* Package Info *
Authors: 45100065+jade-clarke@users.noreply.github.com, 782854+gandarez@users.noreply.github.com, jc@unknwon.io, dgemoli@redhat.com, nicolai.github@dagestad.fr, ravron@posteo.net, b.pedini@bjphoster.com, 44652880+tphilippeau-tower@users.noreply.github.com, u@gogs.io, sagikazarmark@users.noreply.github.com, drayton@munster.dev, art27@cantab.net, yuangongji@foxmail.com, msw123123@gmail.com, kevin@schmittle.net, 11557732+jmluang@users.noreply.github.com, 82787816@qq.com, aligator@users.noreply.github.com, lintong724@163.com, joe@sourcegraph.com, 45479280+YangKian@users.noreply.github.com, jstewmon@gmail.com, 42391391+r3db34n@users.noreply.github.com, dev@jeffas.io, yoan@dosimple.ch, shahms@shahms.com, pentecostjonathan@gmail.com, lists@svrinformatica.it, tendyang@126.com, garner@datadoghq.com, max@mxcrypt.com, 479701624@qq.com, Pixdigit@users.noreply.github.com, anton.synd.antonov@gmail.com, jshiffer@zerotao.org, carterjones@users.noreply.github.com, alexandre@pauzies.com, gustavosbarreto@gmail.com, asciimoo@gmail.com, peter.vaczi@gmail.com, etk39@cornell.edu, lispking@qq.com, hhercules@users.noreply.github.com, guido.serra@olx.com, services@creolmail.org, puhsiu@jumpush.twbbs.org, jbowes@repl.ca, vetinari+github@ankh-morp.org, radek.simko@gmail.com, ijc25@users.noreply.github.com, hello@rheakara.com, mail@loshkovskyi.net, aishwarya.thangappa@gmail.com, notarobot@nextrevision.net, alessio@debian.org, lyobzik@gmail.com, shawnpsmith@gmail.com, bokecc@qq.com, ahmetalpbalkan@gmail.com, tim.hutt@dyson.com, joe@decafjoe.com, kuuyee@gmail.com, brian@networkredux.com, liutao@liut.cc, joe2010xtmf@163.com, kozjakm1@gmail.com
Dependency Path: gopkg.in/ini.v1
--------------------------------------------------------------------------------
Package Title: intern (8e6ff32b3e7c0b018c43953085fe2ac330fe9acd)
Package Locator: git+github.com/josharian/intern$8e6ff32b3e7c0b018c43953085fe2ac330fe9acd
--------------------------------------------------------------------------------
* Package Info *
Authors: josharian@gmail.com, lukeshu@datawire.io
Dependency Path: github.com/josharian/intern
--------------------------------------------------------------------------------
Package Title: jsonpointer (2446e21cad36eee826e1c2380f0ff747074a2faa)
Package Locator: git+github.com/go-openapi/jsonpointer$2446e21cad36eee826e1c2380f0ff747074a2faa
--------------------------------------------------------------------------------
* Package Info *
Authors: 48816116+youyuanwu@users.noreply.github.com, o.lemasle@gmail.com, ivan@flanders.co.nz, gord@axiom.co, iant@golang.org, gbjk@thermeon.com
Dependency Path: github.com/go-openapi/jsonpointer
--------------------------------------------------------------------------------
Package Title: jsonreference (c5db5582e080fbeae80be42f42881230a8caebf6)
Package Locator: git+github.com/go-openapi/jsonreference$c5db5582e080fbeae80be42f42881230a8caebf6
--------------------------------------------------------------------------------
* Package Info *
Authors: youyuanwu@outlook.com, apelisse@gmail.com, olivier.lemasle@apalia.net, 48816116+youyuanwu@users.noreply.github.com, ivan@flanders.co.nz, robbie.coleman@crowdstrike.com, Emmanuel.Meinen@target.com, fredbi@yahoo.com, honza@redhat.com, gbjk@thermeon.com
Dependency Path: github.com/go-openapi/jsonreference
--------------------------------------------------------------------------------
Package Title: logr (47e013cee9b1f91c987cc70a218639655431b607)
Package Locator: git+github.com/go-logr/logr$47e013cee9b1f91c987cc70a218639655431b607
--------------------------------------------------------------------------------
* Package Info *
Authors: patrick.ohly@intel.com, thockin@google.com, pnacht@google.com, timon86.wang@gmail.com, github@m.wojas.nl, james.chacon@snowflake.com, alexis.jeandeau@gmail.com, 189196+balki@users.noreply.github.com, tonyli.lives@gmail.com, 10730886+hn8@users.noreply.github.com, vvakame+dev@gmail.com, seankhliao@gmail.com, ashley.davis@jetstack.io, pshailesh@pshailesh-a01.vmware.com, David.Lanouette@RedHat.com, David.Lanouette@GMail.com, quentin@quba.fr, nospam@iandavis.com, 67618206+tyler-at-fast@users.noreply.github.com, simon@sawert.se, liran.polak@gmail.com, sollyross@google.com, bentheelder@google.com, sross@redhat.com
Dependency Path: github.com/go-logr/logr
--------------------------------------------------------------------------------
Package Title: logutils (a335183dfd075f638afcc820c90591ca3c97eba6)
Package Locator: git+github.com/hashicorp/logutils$a335183dfd075f638afcc820c90591ca3c97eba6
--------------------------------------------------------------------------------
* Package Info *
Authors: 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 7110138+CalebAlbers@users.noreply.github.com, noreply@hashicorp.com, xmitchx@gmail.com, bflad417@gmail.com, ru@ryanuber.com, dmitry@codingrobots.com, armon.dadgar@gmail.com, joseph@josephholsten.com, mitchell.hashimoto@gmail.com
Dependency Path: github.com/hashicorp/logutils
--------------------------------------------------------------------------------
Package Title: mapstructure (ab69d8d93410fce4361f4912bb1ff88110a81311)
Package Locator: git+github.com/mitchellh/mapstructure$ab69d8d93410fce4361f4912bb1ff88110a81311
--------------------------------------------------------------------------------
* Package Info *
Authors: mitchell.hashimoto@gmail.com, bugra.gocer@gmail.com, ariels@treeverse.io, shurikus84@gmail.com, joekralicky@gmail.com, radek.simko@gmail.com, vlanse@gmail.com, suzuki.shunsuke.1989@gmail.com, xmitchx@gmail.com, kevin.lin@shopee.com, bogdandrutu@gmail.com, anonymous@github.com, adam@abemedia.co.uk, veiko.kaap@guardtime.com, ju.nicodev@gmail.com, rekkers.sem@gmail.com, dnephin@gmail.com, sascha.roland@freenet.de, arno.geurts@sqills.com, bored-engineer@users.noreply.github.com, luopeng.he@gmail.com, mjkeeler7@gmail.com, leventov.ru@gmail.com, mkostovetski@veyo.com, jsamunderu@gmail.com, yamil.rivera@wizeline.com, camden@ccheek.com, info@marc-hoersken.de, miner.blake@gmail.com, i@zhsj.me, dhui@users.noreply.github.com, felipe.ramos@corp.globo.com, sebastian.widmer@terreactive.ch, jm.carp@gmail.com, noi@upstream.auto, larstore@sonat.no, james.service@riverbed.com, cleung2010@gmail.com, pierre.rossi@hemispherian.com, mark@markcostello.net, rvolosatovs@riseup.net, frank.schroeder@gmail.com, lazard@csail.mit.edu, emm.odeke@gmail.com, abazekin@gmail.com, jiangkun.zhao@ele.me, beornf@gmail.com, hori_ryota@cyberagent.co.jp, wh@uber.com, abg@uber.com, john.koepi@gmail.com, skipor@yandex-team.ru, gernot.eger@gmail.com, nmiyake@users.noreply.github.com, sdadeveloper@gmail.com, jeffrey.mitchell@gmail.com, gerrit@erg.abdn.ac.uk, james@jen20.com, shurcooL@gmail.com, hector.jusforgues@lazada.com, ru@ryanuber.com, nobu.k.jp+github@gmail.com, armon.dadgar@gmail.com, abursavich@gmail.com, nailsbrokeandfell@gmail.com, gyimesi.akos@gmail.com
Dependency Path: github.com/mitchellh/mapstructure
--------------------------------------------------------------------------------
Package Title: mergo (194978757031c1a5c8ff8e059ae75fc2fc2a04f7)
Package Locator: git+github.com/imdario/mergo$194978757031c1a5c8ff8e059ae75fc2fc2a04f7
--------------------------------------------------------------------------------
* Package Info *
Authors: d@rio.hn, 41898282+github-actions[bot]@users.noreply.github.com, ramon@pulumi.com, anonymous@github.com, doelaudi@gmail.com, zhiyuwang.newbis@gmail.com, dcastane@coopanio.com, 49699333+dependabot[bot]@users.noreply.github.com, zaq.wiedmann@outreach.io, heaths@outlook.com, thomas.prebble@gmail.com, contact@marc-auberer.com, eltociear@gmail.com, nicolas.deloof@gmail.com, takeshi.arabiki@gmail.com, janoszen@users.noreply.github.com, mail@martindeltour.be, 70624950+genisysram@users.noreply.github.com, bion@modopayments.com, i@dario.im, briche.arnaud@gmail.com, tariq181290@gmail.com, eyalsoha@google.com, dcastane@loyal.guru, pppeerxu@gmail.com, s.bourlon@gmail.com, umair.m.idris@gmail.com, 59949151+komalsinha-g@users.noreply.github.com, 29090864+svyotov@users.noreply.github.com, stanislav.yotov@klarrio.com, vincent@sbr.pm, Vyacheslav.Vershinin@acronis.com, muesli@gmail.com, pradeep.palanisamy@toyota.com, yann.hamon@contentful.com, silvin.lubecki@docker.com, adam.a.tanner@oracle.com, smgladkovskiy@gmail.com, badges@fossa.io, gwenael.pluchon+github@gmail.com, requilence@gmail.com, mike@fluffypenguin.org, Pierre.Poissinger@ordina.be, aouyang@linkedin.com, nogoegst@users.noreply.github.com, hosszu.kalman@gmail.com, nbrown.us@gmail.com, owan.orisano@gmail.com, thomas.gosteli@protonmail.ch, masahide.y@gmail.com, andrew.smith@miracl.com, jason.e.joyner@gmail.com, buoto@buzytor.com, theo.brigitte@gmail.com, bassobassista@gmail.com, orlando@hashlabs.com, joel.gaehwiler@gmail.com, makis@ideopod.com, ttr314@googlemail.com, nicola.girardi@scmitaly.it, me@derekdowling.com, sulifx@gmail.com, vincentcr@gmail.com, kboorky@turbine.com, remco@dutchcoders.io, robert.a.strong@gmail.com, edofic@gmail.com
Dependency Path: github.com/imdario/mergo
--------------------------------------------------------------------------------
Package Title: mod (b71060237c896c7c9fc602ab66e33ea6079659fa)
Package Locator: git+go.googlesource.com/mod$b71060237c896c7c9fc602ab66e33ea6079659fa
--------------------------------------------------------------------------------
* Package Info *
Authors: matloob@golang.org, bcmills@google.com, rsc@golang.org, komuw05@gmail.com, iant@golang.org, jayconrod@google.com, tomzierbock@gmail.com, rfindley@google.com, jaredallard@users.noreply.github.com, katie@golang.org, fshahriar@gmail.com, franciscossouza@gmail.com, dmitshur@golang.org, me+google@tomthorogood.co.uk, zchee.io@gmail.com, yuanyanghau@gmail.com, deklerk@google.com, tklauser@distanz.ch, ilia.choly@gmail.com, hi@filippo.io, github@gone.nl, gobot@golang.org, heschi@google.com, imcusg@gmail.com, fp544037857@gmail.com, hopehook.com@gmail.com, hickford@google.com, oleksandr.red+github@gmail.com, simar@linux.com
Dependency Path: go.googlesource.com/mod
--------------------------------------------------------------------------------
Package Title: net (dfa2b5dffd96fb2ae13e7d182501f0bce044a0a4)
Package Locator: git+go.googlesource.com/net$dfa2b5dffd96fb2ae13e7d182501f0bce044a0a4
--------------------------------------------------------------------------------
* Package Info *
Authors: antonio.ojea.garcia@gmail.com, dneil@google.com, tklauser@distanz.ch, michal@axiom.co, alexander.yastrebov@zalando.de, michael.fraenkel@gmail.com, bradfitz@golang.org, steven.hartland@multiplay.co.uk, filippo@golang.org, roberto@golang.org, johan.brandhorst@gmail.com, ab.listsubs@gmail.com, dmitshur@golang.org, katie@golang.org, julie@golang.org, namusyaka@gmail.com, mpvl@golang.org, billo@ca.ibm.com, tamird@google.com, bynovhack@gmail.com, radek.simko@gmail.com, cherryyz@google.com, paschalistsilias@gmail.com, dr.volker.dobler@gmail.com, rsc@golang.org, miller.research@gmail.com, xuchao@google.com, iant@golang.org, jzhan@uber.com, ali.farooq0@pm.me, contact@yannic-bonenberger.com, rs@rhapsodyk.net, chuainian@gmail.com, nigeltao@golang.org, wu.purewhite@gmail.com, a.mayorskiy@corp.mail.ru, fshahriar@gmail.com, emmanuel@orijtech.com, lars.lehtonen@gmail.com, khr@google.com, taralx@gmail.com, songjiayang1@gmail.com, mikioh.public.networking@gmail.com, cuong.manhle.vn@gmail.com, dgoutnik@gmail.com, moritz@fain.io, rs@netflix.com, piombo.dario@gmail.com, tuxillo@quantumachine.net, man.gregory@gmail.com, hi@nhooyr.io, the729@gmail.com, gugl.zadolbal@gmail.com, aofei@aofeisheng.com, pascal@pascaldierich.com, dweomer5@gmail.com, afabre@cloudflare.com, mikhail@lesyk.org, me@carlosedp.com, git@tomanthony.co.uk, clement.chigot@atos.net, marius@grailbio.com, paulzhol@gmail.com, mdlayher@gmail.com, matloob@golang.org, mickael.kerjean@gmail.com, sergey.dobrodey@synesis.ru, santhosh.tekuri@gmail.com, zoncoen@gmail.com, crvv.mail@gmail.com, joel@sing.id.au, mrostecki@suse.de, hi@filippo.io, keithr@alum.mit.edu, elessar@dropbox.com, stapelberg@google.com, uhei@users.noreply.github.com, igor.zhilianin@gmail.com, arthur@arthurfabre.com, mikioh.mikioh@gmail.com, jmkim@pukyong.ac.kr, kunpei@google.com, deklerk@google.com, mr.williamchang@gmail.com, igudger@google.com, gauthier.jolly@gmail.com, nick@craig-wood.com, wingyminus@gmail.com, mail@richard-musiol.de, meirfischer@gmail.com, nototon@gmail.com, david@urld.io, anand@mistry.ninja, andybons@golang.org, dhowden@gmail.com, lmb@cloudflare.com, kev@inburke.com, tombergan@google.com, rogpeppe@gmail.com, frederic.guillot@gmail.com, anmol@aubble.com, ben@benburkert.com, francisco.rojas.gallegos@gmail.com, xunianzu@gmail.com, t@avelino.xxx, hnakamur@gmail.com, mike@app.leby.org, daniela.petruzalek@gmail.com, rhys@justin.tv, shihanng@gmail.com, shurcooL@gmail.com, jbd@google.com, lucas.bremgartner@gmail.com, lazard@golang.org, 0intro@gmail.com, todd@tneal.org, dsavints@gmail.com, martin@probst.io, posener@gmail.com, kale@lemnisys.com, rodaine@gmail.com, apolcyn@google.com, walken@google.com, haya14busa@gmail.com, tonistiigi@gmail.com, voutasaurus@gmail.com, joetsai@digital-static.net, tormodlea@gmail.com, kardianos@gmail.com, alex.brainman@gmail.com, tr00.g33k@gmail.com, artyom.pervukhin@gmail.com, radu@cockroachlabs.com, cezarsa@gmail.com, ivan@cloudflare.com, sam@samwhited.com, ayanamist@gmail.com, jonathan@titanous.com, michael.hudson@canonical.com, gyuhox@gmail.com, adg@golang.org, dave@cheney.net, igungor@gmail.com, danderson@google.com, notcarl@google.com, nic.day@me.com, djd@golang.org, dsymonds@golang.org, dpiddy@gmail.com, rolandshoemaker@gmail.com, github@hoffman-andrews.com, ricardospadilha@gmail.com, tshprecher@gmail.com, blake.mizerany@gmail.com, andy@balholm.com, tamird@gmail.com, jra@nella.org, mattn.jp@gmail.com, ai@uber.com, sameer@golang.org, arnout@bzzt.net, fsimonce@redhat.com, mg@ebfe.org, cbro@golang.org, mathieu.lonjaret@gmail.com, robert.stepanek@gmail.com, brad@danga.com, matthias.frei@inf.ethz.ch, bcmills@google.com, timothygu99@gmail.com, ben.hutchings@essensium.com, dblack@atlassian.com, martenseemann@gmail.com, dmcardle@google.com, lukeshu@datawire.io, heschi@google.com, frank@frankchiarulli.com, tpeczenyj@weborama.com, roland@golang.org, yastrebov.alex@gmail.com, renthraysk@gmail.com, kevin@dunglas.fr, lvzecai@gmail.com, jorropo.pgm@gmail.com, moshe@squareup.com, wzshiming@foxmail.com, thenagapraneeth@gmail.com, chenguoqi@loongson.cn, gobot@golang.org, rengels@ix.netcom.com, eli@siliconsprawl.com, jokicnikola07@gmail.com, tjomek.jezierski@gmail.com, mr.lizhisheng@gmail.com, kyle@agilicus.com, imcusg@gmail.com, hopehook@qq.com, mpoliwczak34@gmail.com, weidi_deng@icloud.com, sean@liao.dev, drchase@google.com, ronakjainc@gmail.com, mzh@golangcn.org, nek.dev@gmail.com, figginsn@gmail.com, laurent@singulargarden.com, admin@iseki.space, oleksandr.red+github@gmail.com, perry.j.abbott@gmail.com, aeciodantasjunior@gmail.com, tetsuokiso9@gmail.com, josharian@gmail.com, jacobsa@google.com, oleku.konko@gmail.com, nlopes.ml@gmail.com, nmvc@google.com, daniel@cloudflare.com, daniel.morsing@gmail.com, tatsuhiro.t@gmail.com, ga@stripetree.co.uk, gabriel.aszalos@gmail.com, github@mattkeenan.net, kr@xph.us, abursavich@gmail.com, frederickmayle@gmail.com, andybalholm@gmail.com, gri@golang.org, robryk@gmail.com, piatek@google.com, r@golang.org, marko.silokunnas@gmail.com, scottwferg@gmail.com, chaishushan@gmail.com, agl@golang.org, ukai@google.com, minux.ma@gmail.com, block.rxckin.beats@gmail.com, jeff@somethingsimilar.com, franciscossouza@gmail.com
Dependency Path: go.googlesource.com/net
--------------------------------------------------------------------------------
Package Title: opentelemetry-go (2fe8861a24e20088c065b116089862caf9e3cd8b)
Package Locator: git+github.com/open-telemetry/opentelemetry-go$2fe8861a24e20088c065b116089862caf9e3cd8b
--------------------------------------------------------------------------------
* Package Info *
Authors: 107717825+opentelemetrybot@users.noreply.github.com, git@andrew.wom.icu, 3375195+CharlieTLe@users.noreply.github.com, pellared@hotmail.com, 126021+ash2k@users.noreply.github.com, xc454981894@gmail.com, chalin@users.noreply.github.com, 49699333+dependabot[bot]@users.noreply.github.com, MrAlias@users.noreply.github.com, 34675136+ChillOrb@users.noreply.github.com, 23655598+Tijmen34@users.noreply.github.com, t@crashfast.com, ashvitha297@gmail.com, shah.kaushal95@gmail.com, jmacd@users.noreply.github.com, remy.chantenay@gmail.com, luke_stoward@hotmail.co.uk, guustavo.paiva@gmail.com, damien.mathieu@elastic.co, 63461656+TotomiEcio@users.noreply.github.com, eduardobonzi.dev@gmail.com, matthew.wear@gmail.com, unicod3@users.noreply.github.com, lpfvip2008@gmail.com, 190567268@qq.com, 3766680+MadVikingGod@users.noreply.github.com, alanprot@gmail.com, 4194920+tigrannajaryan@users.noreply.github.com, 59150626+KasonBraley@users.noreply.github.com, pijusnavickas@gmail.com, severin.neumann@altmuehlnet.de, yurishkuro@users.noreply.github.com, regeda@users.noreply.github.com, a9@aneurysm9.com, 63265430+mackjmr@users.noreply.github.com, 41898282+github-actions[bot]@users.noreply.github.com, robertlin1@gmail.com, suizman@users.noreply.github.com, zhaoziqi9146@gmail.com, danielmmetz@users.noreply.github.com, ayatane@google.com, dashpole@google.com, bogdandrutu@gmail.com, fjn.aniaan@gmail.com, 49190927+onepiece010938@users.noreply.github.com, 41936996+vasireddy99@users.noreply.github.com, darkfeline@felesatra.moe, jb.t.leloup@gmail.com, seankhliao@gmail.com, 40186491+wisdommatt@users.noreply.github.com, pcarter@fastmail.com, ziliugao@gmail.com, kuisong.tong@gmail.com, h.bing612@gmail.com, gustavo@lightstep.com, luiz@hashicorp.com, nenghui.fang@gmail.com, albert.lockett@gmail.com, lazy@splunk.com, 40619032+rogerogers@users.noreply.github.com, 42@dmathieu.com, wdullaer@users.noreply.github.com, arhell333@gmail.com, cheung.zhy.csu@gmail.com, 64158840+ttd2089@users.noreply.github.com, mr.patelgaurang@gmail.com, cull.methi@gmail.com, haavard.ae@gmail.com, qq530901331@outlook.com, craig.pastro@auth0.com, gyliu513@gmail.com, kmurudi@ncsu.edu, 244236866@qq.com, pastro.craig@gmail.com, btopol@us.ibm.com, tobias.klauser@gmail.com, jkwatson@gmail.com, 46550959+bryan-aguilar@users.noreply.github.com, minquan.chen@daocloud.io, 12352919+TylerHelmuth@users.noreply.github.com, sam@samxie.me, martin.hickey@ie.ibm.com, aboten@lightstep.com, 710297349@qq.com, vibhavp@gmail.com, 370182+plantfansam@users.noreply.github.com, 61813998+sourikghosh@users.noreply.github.com, damemi@gmail.com, 88060063+nelzkiddom@users.noreply.github.com, eouw0o83hf@users.noreply.github.com, Aaron.Clawson@gmail.com, seachen@tencent.com, cuichen.li94@gmail.com, b.v.wells@gmail.com, 13175394+tttanikawa@users.noreply.github.com, 19381524+sincejune@users.noreply.github.com, 49174849+thinkgos@users.noreply.github.com, jeremy@stytch.com, ken8203@gmail.com, 39718333+erichsueh3@users.noreply.github.com, ben.ye@bytedance.com, yb532204897@gmail.com, traviscjefferson@gmail.com, 48237831+zhyChesterCheung@users.noreply.github.com, hus.fnst@fujitsu.com, br3ndanr@gmail.com, evantorrie@users.noreply.github.com, josephwoodward@xeuse.com, rpajak@splunk.com, pkwarren@users.noreply.github.com, pablo.baeyens@datadoghq.com, ronald.petty@rx-m.com, 72626345+adriankostrubiak-tomtom@users.noreply.github.com, garth@garthk.com, srikanth.chekuri92@gmail.com, tonistiigi@gmail.com, pbaeyens31+github@gmail.com, lizf@honeycomb.io, jcchavezs@gmail.com, andreimatei1@gmail.com, dengq@vmware.com, 45026656+Submarinee@users.noreply.github.com, roni.lichtman@gmail.com, tomasrebelomota@gmail.com, luxas@users.noreply.github.com, 56270044+bhautikpip@users.noreply.github.com, willyr.goncalves@gmail.com, koenraad.verheyden@posteo.net, 145104+ymotongpoo@users.noreply.github.com, sean.schade@gmail.com, sengjea@users.noreply.github.com, nelsonghezzi@users.noreply.github.com, lastchiliarch@163.com, eundoo.song@hyundai.com, eronwright@gmail.com, 33804388+0xc0d@users.noreply.github.com, github@corybennett.org, euskadi31@gmail.com, elindy26@gmail.com, edwali@amazon.com, contato@andersonq.eti.br, tianyaqu@qq.com, akashsb15@gmail.com, karenyrxu@gmail.com, hus.fnst@cn.fujitsu.com, marco.hofstetter@bluewin.ch, 635901534@qq.com, gliptak@gmail.com, 73505006+IrisTuntun@users.noreply.github.com, tonyli.lives@gmail.com, cjyou20110920sspu@163.com, lizhijian@cn.fujitsu.com, snnadend@amazon.com, 32409412+dhruv-vora@users.noreply.github.com, slagiewka@users.noreply.github.com, hvoam@amazon.com, lastchiliarch@gmail.com, alikhil@mail.ru, fenggw-fnst@cn.fujitsu.com, ssementchouk@infoblox.com, 38492574+matej-g@users.noreply.github.com, brunorafael92@hotmail.com, 47993494+cynthiakedu@users.noreply.github.com, 57678801+mothershipper@users.noreply.github.com, austin@lightstep.com, xsambundy@gmail.com, kjschnei001@gmail.com, ijsong@gmail.com, 17177346+veera83372@users.noreply.github.com, louis.delos@gmail.com, trevor.foster@hotmail.ca, punya@google.com, 5341407+schafle@users.noreply.github.com, zidhussein@gmail.com, kacper@stasik.eu, dstdfx@gmail.com, iamwgliang@gmail.com, serdarkalayci@gmail.com, krzesimir@kinvolk.io, hstan@users.noreply.github.com, bandy.chris@gmail.com, justinandrewfoote@gmail.com, ross@zombiezen.com, johannes@kinvolk.io, xuzuan@gmail.com, t.hannan93@gmail.com, jbd@amazon.com, ilya@kaznacheev.me, bjboreham@gmail.com, kangh@us.ibm.com, paul@eval.ca, stanleynguyen@users.noreply.github.com, 31576500+danrusei@users.noreply.github.com, 31993057+cpackingham@users.noreply.github.com, jbd@google.com, jbd@golang.org, andrei.ozerov92@gmail.com, DrontXL@yandex.ru, thomas.meire@oqton.com, poga.po@gmail.com, liming.d.pro@gmail.com, eundoo.song@gmail.com, stefan.prisca@gmail.com, andy@retailnext.net, mitchell@lightstep.com, purple4reina@gmail.com, u5.horie@gmail.com, brandon@ifup.org, Kanji.yy@gmail.com, yzp@google.com, michal@axiom.co, michal.mhr@gmail.com, tensorchen@tencent.com, 60260788+mujtaba-ahmed12@users.noreply.github.com, williamtong@google.com, abdullahalmariah@gmail.com, yoan@dosimple.ch, jmacd@lightstep.com, codingalias@gmail.com, vladimir.webdev@gmail.com, dcwangmit01@gmail.com, tensorchen@gmail.com, pjanotti@splunk.com, pthomson@tyro.com, sean.slattery203@gmail.com, realdave@users.noreply.github.com, dave.s.mcgregor@gmail.com, ahmed.mujtaba@ingka.ikea.com, iggerman@yandex.ru, rahulpa@google.com, reicheltp@users.noreply.github.com, moorara@users.noreply.github.com, 36113375+hinch5@users.noreply.github.com, shouri.piratla9@gmail.com, domi.roos@gmail.com, seh@panix.com, marwan.sameer@gmail.com, owais@users.noreply.github.com, dreamworm@ya.ru, goldsmith.mike@gmail.com, nilebox@users.noreply.github.com, me@rebeccapruim.com, wingyminus@gmail.com, theoden9014@gmail.com, amrh@microsoft.com, clsung@gmail.com, amramahdi@gmail.com, becca@paxos.xyz, dmathieu@salesforce.com, mjgarton@users.noreply.github.com, johanan.liebermann@gmail.com, luis@zalando.de, zlthooray@gmail.com, hkang.sunysb@gmail.com, vineethpothulapati@outlook.com, github@elsesiy.com, dmiller@windmill.engineering, skaris@splunk.com, iredelmeier@gmail.com, elmas.ferhat@gmail.com, davidmontoyago@users.noreply.github.com, paulo@omnition.io, fuweid89@gmail.com, avanhardenberg@honeycomb.io, elizabeth@ugcs.caltech.edu, mceranlevy@gmail.com, emuller+github@salesforce.com, skaris@omnition.io, freeformz@gmail.com, agneum@users.noreply.github.com, emuller@salesforce.com, stgrzeszczak@users.noreply.github.com, elizabeth@ctyalcove.org, zchee.io@gmail.com, dave.josephsen@gmail.com, qdlacz@gmail.com, thinkerou@gmail.com, edwardam@interlix.com, S.Kanzhelev@live.com, joe.schafer@delta46.us, azfaar.qureshi@gmail.com, azfaarq@amazon.com, 54301319+rabunkosar-dd@users.noreply.github.com, xiaoqiangding@126.com
Dependency Path: github.com/open-telemetry/opentelemetry-go
--------------------------------------------------------------------------------
Package Title: opentracing-go (d34af3eaa63c4d08ab54863a4bdd0daa45212e12)
Package Locator: git+github.com/opentracing/opentracing-go$d34af3eaa63c4d08ab54863a4bdd0daa45212e12
--------------------------------------------------------------------------------
* Package Info *
Authors: ys@uber.com, github@ysh.us, bg451@users.noreply.github.com, bensigelman@users.noreply.github.com, bhs@resonancelabs.com, kyle@kyleconroy.com, blake.mizerany@gmail.com, brandon.gonzalez.451@gmail.com, richard.scothern@gmail.com, bitbucket@ysh.us, tobias.schottdorf@gmail.com, tamird@gmail.com, stephen.gutekanst@gmail.com, jmacd@users.noreply.github.com, josh.macdonald@gmail.com, bas@xacte.com, bhs@lightstep.com, yurishkuro@users.noreply.github.com, kris@cixar.com, huynq0911@gmail.com, goldsmith.mike@gmail.com, jeremyxu2010@gmail.com, valient@gmail.com, jcchavezs@gmail.com, DiSiqueira@users.noreply.github.com, eirinikos@gmail.com, ghita71@gmail.com, 35295607+PikBot@users.noreply.github.com, cce@tracelytics.com, bradb@uber.com, ror6ax@gmail.com, davor.kapsa@gmail.com, raise-0@163.com, matt.ho@gmail.com, me@rohanpai.com, ted@lightstep.com, rustam@zagirov.name, billf@mu.org, voutasaurus@gmail.com, radu.berinde@gmail.com, antonin.amand@gmail.com, u.verainf@gmail.com, slimsag@users.noreply.github.com, aleksey@incsw.in, 49699333+dependabot[bot]@users.noreply.github.com, mmorel-35@users.noreply.github.com, jordan.bangia@gmail.com, 68464660+kishorkunal-raj@users.noreply.github.com, mail@rahmansyed.com, cyril.tovena@gmail.com, cakub6@gmx.com, blakewedwards@gmail.com, dmonakhov@gmail.com, chanxuehong@gmail.com, qdlacz@gmail.com, meteor.lxy@foxmail.com, q8886888@qq.com, moorara@users.noreply.github.com, apd@arista.com
Dependency Path: github.com/opentracing/opentracing-go
--------------------------------------------------------------------------------
Package Title: pretty (3cd153a126da607b78d1762779b1e1054f9889fc)
Package Locator: git+github.com/kr/pretty$3cd153a126da607b78d1762779b1e1054f9889fc
--------------------------------------------------------------------------------
* Package Info *
Authors: 49699333+dependabot[bot]@users.noreply.github.com, benhoyt@gmail.com, mmorel-35@users.noreply.github.com, james@jamesh.id.au, fons@syntacticsugar.consulting, paul@myitcv.io, 30413512+eclipseo@users.noreply.github.com, muesli@gmail.com, udondan@users.noreply.github.com, kr@xph.us, gustavo@niemeyer.net, dominik@honnef.co, cespare@gmail.com, maruel@chromium.org, cameron.walters@gmail.com, gustav.paul@gmail.com, rickdangerous1@gmail.com, jason.mcvetta@gmail.com, kortschak@epistle, blake.mizerany@gmail.com, dave@cheney.net
Dependency Path: github.com/kr/pretty
--------------------------------------------------------------------------------
Package Title: protobuf (ae97035608a719c7a1c1c41bed0ae0744bdb0c6f)
Package Locator: git+github.com/golang/protobuf$ae97035608a719c7a1c1c41bed0ae0744bdb0c6f
--------------------------------------------------------------------------------
* Package Info *
Authors: neild@users.noreply.github.com, dneil@google.com, joetsai@digital-static.net, krzysztofdrys@users.noreply.github.com, cybrcodr@users.noreply.github.com, christian.eg.persson@gmail.com, 59542438+ijschwabacher@users.noreply.github.com, marcellanz@n-1.ch, dfawley@google.com, mantrax3.14@gmail.com, oleksandr.red+github@gmail.com, menghanl@google.com, thaJeztah@users.noreply.github.com, ilyevsky@gmail.com, herbie@google.com, jh@fullstory.com, prannay.khosla@gmail.com, AlexRudd@users.noreply.github.com, taralx@gmail.com, jjlin@cs.stanford.edu, cyrille.hemidy@gmail.com, haraldnordgren@gmail.com, sesmith177@gmail.com, iskander.sharipov@intel.com, 42557275+dasmdasm@users.noreply.github.com, thomas@tmcrain.com, pan@erlang.org, dhowden@gmail.com, jacquesmaraisrsa@gmail.com, aaronongcs@gmail.com, lunaria21@gmail.com, kassiansun@gmail.com, isaac.ardis@gmail.com, eleniums@yahoo.com, dsymonds@golang.org, r@golang.org, deklerk@google.com, 39187022+jukkag@users.noreply.github.com, rhys.hiltner@gmail.com, tamird@gmail.com, johnmccabe@users.noreply.github.com, cmang@golang.org, ccl333@gmail.com, F21@users.noreply.github.com, zzxx513@gmail.com, huseyin.mert@bulutyazilim.com, grayson.koonce@gmail.com, 30298262+cspahr-tulipretail@users.noreply.github.com, tiziano88@gmail.com, jakub@vrana.cz, nek.narqo+git@gmail.com, ewang@users.noreply.github.com, ross@zombiezen.com, light@google.com, spencer@twitch.tv, burcujdogan@gmail.com, calbach@google.com, goller@gmail.com, nate.finch@gmail.com, bcmills@google.com, mark@markcostello.net, lmilewski@google.com, noreply@google.com, bryan.chan@huawei.com, notcarl@google.com, joetsai@google.com, bmills@alumni.cmu.edu, lincoln.stoll@gmail.com, hakim@google.com, bruno@robotinfra.com, xiaofeng@google.com, lukegb@google.com, matloob@golang.org, djd@golang.org, toqizhao@gmail.com, adg@golang.org, vonhollen@google.com, matloob@google.com, levs@google.com, d@domob.eu, zac.mullett@gmail.com, erikmcc@google.com, zellyn@squareup.com, jstacho@google.com, crawshaw@golang.org, swast@google.com, lorenzo.simionato@gmail.com, awbraunstein@google.com, clayb@google.com, rsc@golang.org, agl@golang.org, fullung@gmail.com, jeff@somethingsimilar.com, nigeltao@golang.org, mikkel@krautz.dk, dave@cheney.net
Dependency Path: github.com/golang/protobuf
--------------------------------------------------------------------------------
Package Title: protobuf (6875c3d7242d1a3db910ce8a504f124cb840c23a)
Package Locator: git+go.googlesource.com/protobuf$6875c3d7242d1a3db910ce8a504f124cb840c23a
--------------------------------------------------------------------------------
* Package Info *
Authors: stapelberg@google.com, vanja@google.com, schroederc@google.com, emcfarlane000@gmail.com, dneil@google.com, lassefolger@google.com, stp.abhi@gmail.com, gberg@google.com, jhumphries@buf.build, oleksandr.red+github@gmail.com, hoeppi@google.com, leitzler@gmail.com, nabeyang@gmail.com, sbenza@google.com, ash2kk@gmail.com, joetsai@digital-static.net, prokopchuk@google.com, sachinpad49@gmail.com, rsc@golang.org, zchee.io@gmail.com, dasenov@google.com, kolyshkin@gmail.com, emmanuel@orijtech.com, ryoyasekino1993@gmail.com, amenzhinsky@gmail.com, justinsb@google.com, herbie@google.com, julie@golang.org, su3g4284zo6y7@gmail.com, moehrmann@google.com, kev@inburke.com, oscar.soderlund@einride.tech, renthraysk@gmail.com, dfawley@google.com, shantuo@google.com, bsiegert@gmail.com, jsw@google.com, andybons@golang.org
Dependency Path: go.googlesource.com/protobuf
--------------------------------------------------------------------------------
Package Title: semver (7bb0c843b53d6ad21a3f619cb22c4b442bb3ef3e)
Package Locator: git+github.com/Masterminds/semver$7bb0c843b53d6ad21a3f619cb22c4b442bb3ef3e
--------------------------------------------------------------------------------
* Package Info *
Authors: matt@mattfarina.com, me@carolynvanslyck.com, tech@samboyer.org, kazhuravlev@users.noreply.github.com, a-chimni@mercari.com, kazhuravlev@fastmail.com, retmain@foxmail.com, 48681726+MarkRosemaker@users.noreply.github.com, simontheleg@gmail.com, afirth@users.noreply.github.com, roli@schilter.me, Kyle.Michel@ontariosystems.com, ryan@currah.ca, Brian-Williams@users.noreply.github.com, thedevsaddam@gmail.com, jjc@syapse.com, greysteil@gmail.com, aniruddhamaru@gmail.com, riley.avron@gmail.com, uudashr@gmail.com, zknill@users.noreply.github.com, mh-cbon@users.noreply.github.com, dave@goddard.id.au, mbutcher@engineyard.com, technosophos@gmail.com, mbutcher@deis.com, adam@reese.io, jesse.claven@me.com
Dependency Path: github.com/Masterminds/semver
--------------------------------------------------------------------------------
Package Title: speakeasy (4aabc24848ce5fd31929f7d1e4ea74d3709c14cd)
Package Locator: git+github.com/bgentry/speakeasy$4aabc24848ce5fd31929f7d1e4ea74d3709c14cd
--------------------------------------------------------------------------------
* Package Info *
Authors: 1640719+fiksn@users.noreply.github.com, wardddustin@gmail.com, chigot.c@gmail.com, bgentry@users.noreply.github.com, taek42@protonmail.com, curtis@curtis.io, MichaelS11@users.noreply.github.com, burning2007@ya.ru, akolbasov@intermodaldata.com, luke.champine@gmail.com, rasky@develer.com, andrew@du.nham.ca, blakesgentry@gmail.com
Dependency Path: github.com/bgentry/speakeasy
--------------------------------------------------------------------------------
Package Title: spec (df35a527ea5dde89966d4c6b7661d000a99899b9)
Package Locator: git+github.com/go-openapi/spec$df35a527ea5dde89966d4c6b7661d000a99899b9
--------------------------------------------------------------------------------
* Package Info *
Authors: ivan@flanders.co.nz, chainanichan@gmail.com, ahmad.moudani@crowdstrike.com, youyuanwu@outlook.com, 48816116+youyuanwu@users.noreply.github.com, zhsj@debian.org, 49522235+agmikhailov@users.noreply.github.com, fredbi@yahoo.com, b.v.wells@gmail.com, ujjwal.cpp@gmail.com, j2gg0s@gmail.com, sdghchj@qq.com, me@honza.ca, ivs@ozon.ru, ishveda@softserveinc.com, amruta9.kulkarni@gmail.com, petr.kotas@gmail.com, nherring@google.com, zhrlnt@gmail.com, stefan.schimanski@gmail.com, frederic.bidon@advisam.consulting, pytlesk4@gmail.com, ffelian@gmail.com, mikedanese@google.com, koron.kaoriya@gmail.com, karim.y.elghamrawy@gmail.com, serosset@cisco.com, zibarev.i@gmail.com, fabian.ruff@sap.com, fabian@progra.de, ethantkoenig@gmail.com, morlay.null@gmail.com, nikitaraghunath@gmail.com, tgraf@suug.ch, decauwsemaecker.glen@gmail.com, arvind9111@gmail.com, pengsrc@icloud.com, toryjadams@icloud.com, mehdy@google.com, vburenin@gmail.com, Federico.Aguirre@arrisi.com, gbjk@thermeon.com
Dependency Path: github.com/go-openapi/spec
--------------------------------------------------------------------------------
Package Title: stdr (521af2addfa7c81c8a65d0e85ed34bb6bb6dc262)
Package Locator: git+github.com/go-logr/stdr$521af2addfa7c81c8a65d0e85ed34bb6bb6dc262
--------------------------------------------------------------------------------
* Package Info *
Authors: me@iamcalledrob.com, thockin@google.com, patrick.ohly@intel.com, seankhliao@gmail.com
Dependency Path: github.com/go-logr/stdr
--------------------------------------------------------------------------------
Package Title: swag (0579829e66fde26b27d401921afb73704c4d463d)
Package Locator: git+github.com/go-openapi/swag$0579829e66fde26b27d401921afb73704c4d463d
--------------------------------------------------------------------------------
* Package Info *
Authors: ivan@flanders.co.nz, fredbi@yahoo.com, , frederic.bidon@advisam.consulting, diego.fu@hootsuite.com, posener@gmail.com, panterathefamilyguy@gmail.com, shirou.faw@gmail.com, pytlesk4@gmail.com, xena@yolo-swag.com, tobias@tobi042.de, Federico.Aguirre@arrisi.com, 1153719+mszczygiel@users.noreply.github.com, katokazu@amazon.com, kato.kazuyoshi@gmail.com, ujjwal.cpp@gmail.com, 7532924+seanprince@users.noreply.github.com, david@spinthemoose.com, motkov.kirill@gmail.com, michael.bowler@form3.tech, oleksandr.red+github@gmail.com, petr.kotas@gmail.com, nitinmohan87@gmail.com, tolstov.georgij@gmail.com, mccreepertakumi@gmail.com, viktor.danyliuk@arachnys.com, owan.orisano@gmail.com
Dependency Path: github.com/go-openapi/swag
--------------------------------------------------------------------------------
Package Title: sys (c7a1bf9a0b0aa7c0c0e35a435924dd68e64d1653)
Package Locator: git+go.googlesource.com/sys$c7a1bf9a0b0aa7c0c0e35a435924dd68e64d1653
--------------------------------------------------------------------------------
* Package Info *
Authors: Jason@zx2c4.com, tklauser@distanz.ch, farmer1992@gmail.com, guillaumesottas@gmail.com, mdlayher@gmail.com, tamird@google.com, alex.brainman@gmail.com, dkess@google.com, dev@der-flo.net, joel@sing.id.au, mzh@golangcn.org, billotosyr@gmail.com, Ben@Benjojo.co.uk, chigot.c@gmail.com, iant@golang.org, github@gone.nl, anton.a.kuklin@gmail.com, cherryyz@google.com, stanhu@gmail.com, nemesismk2@gmail.com, kolyshkin@gmail.com, stephan.klatt@gmail.com, skladd@users.noreply.github.com, zsj950618@gmail.com, ricardo.katz@serpro.gov.br, pawel.szulik@intel.com, blue@cmd.nu, anatol.pomozov@gmail.com, polliosa@google.com, me@tadeo.ca, awn@spacetime.dev, in.gottwald@gmail.com, bsiegert@gmail.com, yar.vorobiov@gmail.com, zhangboyang.id@gmail.com, yang.liu636@gmail.com, mail@eliasnaur.com, bcmills@google.com, pugachev.mm@gmail.com, andybons@golang.org, neeilan96@gmail.com, kanseihonbucho@protonmail.com, contact@yannic-bonenberger.com, ed@nuxi.nl, tom.parkin@gmail.com, johan.jansson@iki.fi, nikson.sust@gmail.com, cespare@gmail.com, 995386871@qq.com, deftly@gmail.com, ser1325@gmail.com, bradfitz@golang.org, code@bit48.net, axel.wagner.hh@googlemail.com, umangjparmar@gmail.com, eric.fang@arm.com, ebiggers@google.com, simon@rozman.si, amenzhinsky@gmail.com, cuong.manhle.vn@gmail.com, tikuta@google.com, paulo.gomes.uk@gmail.com, shrinidhi.kaushik@gmail.com, jayconrod@google.com, jpap.code@gmail.com, ericchiang@google.com, cpuidle@gmx.de, clement.chigot@atos.net, tonistiigi@gmail.com, 53217283+utkarsh-extc@users.noreply.github.com, aindurti@gmail.com, admwiggin@gmail.com, me@carlosedp.com, paulzhol@gmail.com, robert.ayrapetyan@gmail.com, gvormayr@gmail.com, keithr@alum.mit.edu, r.visweswara@gmail.com, james@jen20.com, jeroen@simonetti.nl, mail@acln.ro, dominik@honnef.co, mike.munday@ibm.com, matloob@golang.org, josharian@gmail.com, oohcode@gmail.com, maya@NetBSD.org, yath@google.com, cseo@linux.vnet.ibm.com, foka@debian.org, cyphar@cyphar.com, itchyny@hatena.ne.jp, alb.donizetti@gmail.com, jordanrh@microsoft.com, mengzhuo1203@gmail.com, virtuallysue@gmail.com, dave@natulte.net, laboger@linux.vnet.ibm.com, s7onith@gmail.com, sw@nogoegst.net, tony.reix@bull.net, leighmcc@gmail.com, andrei@resin.io, kev@inburke.com, joerichey@google.com, g.sora4@gmail.com, jan@apache.org, mark@kyne.com.au, squeed@gmail.com, jeetparekh96@gmail.com, davidlwimmer@gmail.com, zacharywmadigan@gmail.com, kamilkropiewnicki@gmail.com, wingyminus@gmail.com, stapelberg@google.com, ddos@google.com, lixin20101023@gmail.com, hakim@google.com, irfanmahmoudsharif@gmail.com, hi@filippo.io, hyangah@gmail.com, aead@mail.de, adamsh@google.com, phil@bolthole.com, chrisko@google.com, choleraehyq@gmail.com, chri@evolware.org, michael.hudson@canonical.com, garatuev@gmail.com, gdk@google.com, ryan.zhang@docker.com, tamird@gmail.com, ledmonster@gmail.com, xry23333@gmail.com, crunk1@gmail.com, awn@cryptolosophy.org, aman@tmm1.net, kieran@kcolford.com, bengen@hilluzination.de, luca.bruno@coreos.com, seanc@joyent.com, kirr@nexedi.com, ben@links.org, campoy@golang.org, awn@cryptolosophy.io, tyler.treat@apcera.com, google@hellopiers.pro, pastarmovj@google.com, mikioh.mikioh@gmail.com, derek@mcgstyle.net, James.Cowgill@imgtec.com, jasonchujc@gmail.com, cmang@golang.org, niconegoto@yahoo.co.jp, agis.anast@gmail.com, ylh@pdx.edu, sameer@golang.org, maxime.deroucy@gmail.com, steven.hartland@multiplay.co.uk, samueltan@google.com, vladimir.stefanovic@imgtec.com, jk+github@digineo.de, elliotmr@gmail.com, alexander@bumpern.de, jrtc27@jrtc27.com, hirochachacha@gmail.com, shawn.walker@oracle.com, dan.kortschak@adelaide.edu.au, me@jessfraz.com, munday@ca.ibm.com, christy@linux.vnet.ibm.com, dneil@google.com, riku.voipio@linaro.org, roylee17@currant.com, caio.oliveira@intel.com, tsunanet@gmail.com, lunaria21@gmail.com, 0intro@gmail.com, mdempsky@google.com, npetroni@cs.umd.edu, nick.patavalis@gmail.com, dave@cheney.net, kshrier@racktopsystems.com, jacobsa@google.com, dajo2002@gmail.com, ken@bonsai.com, r@golang.org, minux@golang.org, p@pwaller.net, mattn.jp@gmail.com, pawelknap88@gmail.com, songlim327@gmail.com, vsivsi@yahoo.com, billo@ca.ibm.com, nahamu@gmail.com, ben.hutchings@essensium.com, hanling.he@gmail.com, tobias@kohlbau.de, viric@viric.name, me+google@tomthorogood.co.uk, rsc@golang.org, bolian@microsoft.com, roland@golang.org, tobias.klauser@gmail.com, artyom.pervukhin@gmail.com, khr@golang.org, julie@golang.org, johan@gisky.be, dm.shynk@gmail.com, oscar.soderlund@einride.tech, mdlayher@planetscale.com, zhouguangyuan.xian@gmail.com, mknyszek@google.com, zchee.io@gmail.com, mouhao.mu@gmail.com, lmb@cloudflare.com, optix2000@gmail.com, dustin.spicuzza@gmail.com, murp@ibm.com, joshgreyhat@gmail.com, zhangyunhao116@gmail.com, dandare100@gmail.com, crawshaw@tailscale.com, eschouten@apple.com, l.h.lee2617@gmail.com, chenguoqi@loongson.cn, aayushagrawal.1111@gmail.com, limeidan@loongson.cn, alexej.perevalov@gmail.com, eric@ericlagergren.com, mathieu@zeroserieux.com, martenseemann@gmail.com, wardddustin@gmail.com, rsworktech@gmail.com, i@lmb.io, michael.lelli@steelseries.com, dgoutnik@gmail.com, mpoliwczak34@gmail.com, alessandro.arzilli@gmail.com, wu.purewhite@gmail.com, fp544037857@gmail.com, clayton@claytontii.com, qwer.kocka@gmail.com, awawfumin@gmail.com, btw515wolf2@gmail.com, dan@kortschak.io, whh8b@obs.cr, roman@rmazur.io, craig65535@gmail.com, ssoto@redhat.com, masshash.github@gmail.com, mkuranowski@gmail.com, flaniel@microsoft.com, jordan@tailscale.com, jjc@jclark.com, imcusg@gmail.com, dagood@microsoft.com, qmuntaldiaz@microsoft.com, bsiegert@google.com, samuel.thibault@ens-lyon.org, dave@pifke.org, ericscottlagergren@gmail.com, dirk@esherido.com, thockin@google.com, cookieo9@gmail.com, will@worrbase.com, adg@golang.org, dsymonds@golang.org, nigeltao@golang.org
Dependency Path: go.googlesource.com/sys
--------------------------------------------------------------------------------
Package Title: terraform-exec (20b39e17d811112c03a2a9e62f2343f9593afea3)
Package Locator: git+github.com/hashicorp/terraform-exec$20b39e17d811112c03a2a9e62f2343f9593afea3
--------------------------------------------------------------------------------
* Package Info *
Authors: 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 49699333+dependabot[bot]@users.noreply.github.com, 5575356+kmoe@users.noreply.github.com, proj-terraform-exec@hashicorp.com, radek.simko@gmail.com, dbanck@users.noreply.github.com, 17039873+radditude@users.noreply.github.com, ben.bennett@hashicorp.com, hashibot-feedback+tf-sdk-circleci@hashicorp.com, hadrien.patte@protonmail.com, chanwit@gmail.com, katy@katy.moe, bflad417@gmail.com, duke66@yandex.ru, lornasong@users.noreply.github.com, xgen@yandex-team.ru, karol@pasternak.pro, chris@ellbot.com, rambabu.iitk@gmail.com, lafentres@users.noreply.github.com, alecrabold@outlook.com, wztdyl@sina.com, mvdoster@gmail.com, philnielsen888@gmail.com, angelbarrerasanchez@gmail.com, vfiftyfive@gmail.com, aleksander@aleksic.no, paul@paultyng.net, paddy@carvers.co, apilon@hashicorp.com, ptyng@hashicorp.com, matt@mjslabs.com, gdavison@hashicorp.com, paddy@hashicorp.com, lorna@hashicorp.com, 24284972+sudomateo@users.noreply.github.com, Kit_Ewbank@hotmail.com, minamijoyo@gmail.com, kent@hashicorp.com
Dependency Path: github.com/hashicorp/terraform-exec
--------------------------------------------------------------------------------
Package Title: terraform-json (1985ec492e2dbd4c168ef9c7e985b6cbe3d9fb1e)
Package Locator: git+github.com/hashicorp/terraform-json$1985ec492e2dbd4c168ef9c7e985b6cbe3d9fb1e
--------------------------------------------------------------------------------
* Package Info *
Authors: jpogran@outlook.com, 49699333+dependabot[bot]@users.noreply.github.com, radek.simko@gmail.com, liam.cervante@hashicorp.com, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, sebastian.rivera@hashicorp.com, dbanck@users.noreply.github.com, daniel@dbanck.de, alisdair@users.noreply.github.com, chrism@vancluevertech.com, paddy@hashicorp.com, paddy@carvers.co, mdeggies@gmail.com, cstitt@hashicorp.com, ptyng@hashicorp.com, paul@paultyng.net, mildwonkey@users.noreply.github.com, mwhooker@gmail.com, mhooker@hashicorp.com
Dependency Path: github.com/hashicorp/terraform-json
--------------------------------------------------------------------------------
Package Title: terraform-plugin-docs (44ca5539c72833f113b72493d523a8ab129beb8a)
Package Locator: git+github.com/hashicorp/terraform-plugin-docs$44ca5539c72833f113b72493d523a8ab129beb8a
--------------------------------------------------------------------------------
* Package Info *
Authors: 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, 49699333+dependabot[bot]@users.noreply.github.com, github@simplebox.anonaddy.com, 58244+bookshelfdave@users.noreply.github.com, austinvalle@gmail.com, bflad417@gmail.com, ben.bennett@hashicorp.com, ivan.demarino@hashicorp.com, andre.moeller@datadrivers.de, hello@adns.io, ivan.de.marino@gmail.com, hippolyte.henry@datadoghq.com, remi.lapeyre@lenstra.fr, jacob.bednarz@gmail.com, jacob.bednarz@hey.com, o.andriyanov@gmail.com, eamonn.otoole@hpe.com, xgen@yandex-team.ru, lipenkov@gmail.com, dev.github@ojford.com, Kanji.yy@gmail.com, paddy@hashicorp.com, Kit_Ewbank@hotmail.com, 36851+smacfarlane@users.noreply.github.com, nayyara.samuel@gmail.com, paul@paultyng.net, ptyng@hashicorp.com, kyriakos@fastmail.com, koikonom@users.noreply.github.com, gdavison@hashicorp.com, github-team-tf-provider-devex@hashicorp.com
Dependency Path: github.com/hashicorp/terraform-plugin-docs
--------------------------------------------------------------------------------
Package Title: terraform-plugin-framework (3773267ad651b16ec12cfe38ab4fdd59b3d9ab5d)
Package Locator: git+github.com/hashicorp/terraform-plugin-framework$3773267ad651b16ec12cfe38ab4fdd59b3d9ab5d
--------------------------------------------------------------------------------
* Package Info *
Authors: bflad417@gmail.com, 121905282+zliang-akamai@users.noreply.github.com, 49699333+dependabot[bot]@users.noreply.github.com, 90171690+vicshi06@users.noreply.github.com, github-team-tf-provider-devex@hashicorp.com, austinvalle@gmail.com, ben.bennett@hashicorp.com, br.kalow@gmail.com, 43934258+ashleemboyer@users.noreply.github.com, github@simplebox.anonaddy.com, remy.leone@gmail.com, ryanbberger@gmail.com, 58244+bookshelfdave@users.noreply.github.com, 1972314+skirsten@users.noreply.github.com, Integralist@users.noreply.github.com, Kanji.yy@gmail.com, 17104096+yyamanoi1222@users.noreply.github.com, 62622282+hashibot-web@users.noreply.github.com, iwarapter@hotmail.com, roidelapluie@o11y.eu, jar-b@users.noreply.github.com, 83350965+laurapacilio@users.noreply.github.com, kwangsan@gmail.com, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, vishnu.ravindra@hashicorp.com, git@doridian.net, liam.cervante@hashicorp.com, pchambino@gmail.com, larstobi@relatime.no, ivan.demarino@hashicorp.com, mbang@hashicorp.com, gzigzigzeo@gmail.com, paddy@hashicorp.com, hashibot-feedback+tf-sdk-circleci@hashicorp.com, bluekeyes@gmail.com, 5575356+kmoe@users.noreply.github.com, Kit_Ewbank@hotmail.com, paddy@carvers.co, 15078782+SarahFrench@users.noreply.github.com, jbinko+github@gmail.com, 129506189+hashicorp-tsccr[bot]@users.noreply.github.com
Dependency Path: github.com/hashicorp/terraform-plugin-framework
--------------------------------------------------------------------------------
Package Title: terraform-plugin-go (c593d2e0da8d2258b2a22af867c39842a0cb89f7)
Package Locator: git+github.com/hashicorp/terraform-plugin-go$c593d2e0da8d2258b2a22af867c39842a0cb89f7
--------------------------------------------------------------------------------
* Package Info *
Authors: ben.bennett@hashicorp.com, austinvalle@gmail.com, 49699333+dependabot[bot]@users.noreply.github.com, github@simplebox.anonaddy.com, 58244+bookshelfdave@users.noreply.github.com, bflad417@gmail.com, mart@degeneration.co.uk, 110428419+hashicorp-copywrite[bot]@users.noreply.github.com, charliegetzenlc@gmail.com, radek.simko@gmail.com, ivan.demarino@hashicorp.com, alex.somesan@gmail.com, hashibot-feedback+tf-sdk-circleci@hashicorp.com, paddy@hashicorp.com, me@kjagiello.com, remi.lapeyre@henki.fr, 5575356+kmoe@users.noreply.github.com, mildwonkey@users.noreply.github.com, aareet@users.noreply.github.com, paul@paultyng.net, ptyng@hashicorp.com, russell@hashicorp.com, katy@katy.moe, github-team-tf-provider-devex@hashicorp.com
Dependency Path: github.com/hashicorp/terraform-plugin-go
--------------------------------------------------------------------------------
Package Title: terraform-plugin-log (be410f482cf0fc8896fe3e276c125428919a9282)
Package Locator: git+github.com/hashicorp/terraform-plugin-log$be410f482cf0fc8896fe3e276c125428919a9282
--------------------------------------------------------------------------------