forked from dexidp/dex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTHIRD_PARTY_LICENSES.txt
2362 lines (1762 loc) · 84.6 KB
/
THIRD_PARTY_LICENSES.txt
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
------------------------------ Top-Level License -------------------------------
SPDX:Apache-2.0
---------------------------------- Copyright -----------------------------------
Copyright 2014 The Kubernetes Authors All rights reserved.
Copyright 2015 The Kubernetes Authors All rights reserved.
Copyright 2015 The Kubernetes Authors.
Copyright 2017 The Kubernetes Authors.
-------------------------- Fourth Party Dependencies ---------------------------
----------------------------------- Licenses -----------------------------------
- Apache-2.0
- BSD-2-Clause
- BSD-3-Clause--modified-by-Google
- MIT
- MPL-2.0
- Unicode-DFS-2016
--------------------------------- (separator) ----------------------------------
== Dependency
ariga.io/atlas
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2021-present The Atlas Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
cloud.google.com/go/compute/metadata
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2014 Google LLC
Copyright 2016 Google LLC
Copyright 2018 Google LLC
Copyright 2021 Google LLC
Copyright 2022 Google LLC
--------------------------------- (separator) ----------------------------------
== Dependency
entgo.io/ent
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2019-present Facebook Inc. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/AppsFlyer/go-sundheit
== License Type
SPDX:Apache-2.0
== Copyright
(no copyright notices found)
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/Azure/go-ntlmssp
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2016 Microsoft
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/Masterminds/goutils
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2014 Alexander Okoli
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/Masterminds/semver
== License Type
SPDX:MIT
== Copyright
Copyright (C) 2014-2019, Matt Butcher and Matt Farina
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/Masterminds/semver/v3
== License Type
SPDX:MIT
== Copyright
Copyright (C) 2014-2019, Matt Butcher and Matt Farina
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/Masterminds/sprig/v3
== License Type
SPDX:MIT
== Copyright
Copyright (C) 2013-2020 Masterminds
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/agext/levenshtein
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2016 ALRUX Inc.
== Notices
Alrux Go EXTensions (AGExt) - package levenshtein
Copyright 2016 ALRUX Inc.
This product includes software developed at ALRUX Inc.
(http://www.alrux.com/).
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/apparentlymart/go-textseg/v13
== License Type
=== MIT-71da33b1
=== Apache-2.0
=== Unicode-DFS-2016
Copyright (c) 2017 Martin Atkins
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
---------
Unicode table generation programs are under a separate copyright and license:
Copyright (c) 2014 Couchbase, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.
---------
Grapheme break data is provided as part of the Unicode character database,
copright 2016 Unicode, Inc, which is provided with the following license:
Unicode Data Files include all data files under the directories
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and
http://www.unicode.org/utility/trac/browser/.
Unicode Data Files do not include PDF online code charts under the
directory http://www.unicode.org/Public/.
Software includes any source code published in the Unicode Standard
or under the directories
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and
http://www.unicode.org/utility/trac/browser/.
NOTICE TO USER: Carefully read the following legal agreement.
BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
TERMS AND CONDITIONS OF THIS AGREEMENT.
IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
THE DATA FILES OR SOFTWARE.
COPYRIGHT AND PERMISSION NOTICE
Copyright © 1991-2017 Unicode, Inc. All rights reserved.
Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Unicode data files and any associated documentation
(the "Data Files") or Unicode software and any associated documentation
(the "Software") to deal in the Data Files or Software
without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, and/or sell copies of
the Data Files or Software, and to permit persons to whom the Data Files
or Software are furnished to do so, provided that either
(a) this copyright and permission notice appear with all copies
of the Data Files or Software, or
(b) this copyright and permission notice appear in associated
Documentation.
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT OF THIRD PARTY RIGHTS.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale,
use or other dealings in these Data Files or Software without prior
written authorization of the copyright holder.
== Copyright
Copyright (c) 2014 Couchbase, Inc.
Copyright (c) 2017 Martin Atkins
Copyright © 1991-2017 Unicode, Inc. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/beevik/etree
== License Type
=== BSD-2-Clause-25c0e098
Copyright 2015-2023 Brett Vickers. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
== Copyright
Copyright 2015-2019 Brett Vickers.
Copyright 2015-2023 Brett Vickers. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/beorn7/perks
== License Type
SPDX:MIT
== Copyright
Copyright (C) 2013 Blake Mizerany
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/cespare/xxhash/v2
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2016 Caleb Spare
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/coreos/go-oidc/v3
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2014 CoreOS, Inc
== Notices
CoreOS Project
Copyright 2014 CoreOS, Inc
This product includes software developed at CoreOS, Inc.
(http://www.coreos.com/).
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/coreos/go-semver
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2013-2015 CoreOS, Inc.
Copyright 2018 CoreOS, Inc
== Notices
CoreOS Project
Copyright 2018 CoreOS, Inc
This product includes software developed at CoreOS, Inc.
(http://www.coreos.com/).
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/coreos/go-systemd/v22
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2014 Docker, Inc.
Copyright 2015 CoreOS Inc.
Copyright 2015 CoreOS, Inc.
Copyright 2015 RedHat, Inc.
Copyright 2015, 2018 CoreOS, Inc.
Copyright 2015-2018 CoreOS, Inc.
Copyright 2016 CoreOS, Inc.
Copyright 2018 CoreOS, Inc
Copyright 2018 CoreOS, Inc.
Copyright 2019 CoreOS, Inc.
Copyright 2020 CoreOS, Inc.
== Notices
CoreOS Project
Copyright 2018 CoreOS, Inc
This product includes software developed at CoreOS, Inc.
(http://www.coreos.com/).
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/dexidp/dex/api/v2
== License Type
SPDX:Apache-2.0
== Copyright
(no copyright notices found)
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/dexidp/dex/examples
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2014 The Kubernetes Authors All rights reserved.
Copyright 2015 The Kubernetes Authors All rights reserved.
Copyright 2015 The Kubernetes Authors.
Copyright 2017 The Kubernetes Authors.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/felixge/httpsnoop
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2016 Felix Geisendörfer ([email protected])
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/fsnotify/fsnotify
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright © 2012 The Go Authors. All rights reserved.
Copyright © fsnotify Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/ghodss/yaml
== License Type
=== MIT-0ceb9ff3
=== BSD-3-Clause--modified-by-Google
The MIT License (MIT)
Copyright (c) 2014 Sam Ghods
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Copyright (c) 2012 The Go Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
== Copyright
Copyright (c) 2012 The Go Authors. All rights reserved.
Copyright (c) 2014 Sam Ghods
Copyright 2013 The Go Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/go-asn1-ber/asn1-ber
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2011-2015 Michael Mitton ([email protected])
copyright (c) 2015-2016 go-asn1-ber Authors
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/go-jose/go-jose/v3
== License Type
SPDX:Apache-2.0
== Copyright
Copyright (c) 2012 The Go Authors. All rights reserved.
Copyright 2010 The Go Authors. All rights reserved.
Copyright 2010 The Go Authors. All rights reserved.
Copyright 2011 The Go Authors. All rights reserved.
Copyright 2011 The Go Authors. All rights reserved.
Copyright 2014 Square Inc.
Copyright 2016 Square, Inc.
Copyright 2016 Zbigniew Mandziejewicz
Copyright 2017 Square Inc.
Copyright 2018 Square Inc.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/go-ldap/ldap/v3
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2011-2015 Michael Mitton ([email protected])
copyright (c) 2015-2016 go-ldap Authors
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/go-openapi/inflect
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2011 Chris Farmiloe
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/go-sql-driver/mysql
== License Type
SPDX:MPL-2.0
== Copyright
Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2014 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2016 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2017 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2018 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2019 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2020 The Go-MySQL-Driver Authors. All rights reserved.
Copyright 2022 The Go-MySQL-Driver Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/gogo/protobuf
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright (c) 2013, The GoGo Authors. All rights reserved.
Copyright (c) 2015, The GoGo Authors. rights reserved.
Copyright (c) 2015, The GoGo Authors. All rights reserved.
Copyright (c) 2016, The GoGo Authors. All rights reserved.
Copyright (c) 2017, The GoGo Authors. All rights reserved.
Copyright (c) 2018, The GoGo Authors. All rights reserved.
Copyright (c) 2019, The GoGo Authors. All rights reserved.
Copyright 2010 The Go Authors.
Copyright 2010 The Go Authors. All rights reserved.
Copyright 2011 The Go Authors. All rights reserved.
Copyright 2012 The Go Authors. All rights reserved.
Copyright 2013 The Go Authors. All rights reserved.
Copyright 2014 The Go Authors. All rights reserved.
Copyright 2015 The Go Authors. All rights reserved.
Copyright 2016 The Go Authors. All rights reserved.
Copyright 2017 The Go Authors. All rights reserved.
Copyright 2018 The Go Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/golang/groupcache
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2012 Google Inc.
Copyright 2013 Google Inc.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/golang/protobuf
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright 2010 The Go Authors. All rights reserved.
Copyright 2010 The Go Authors. All rights reserved.
Copyright 2011 The Go Authors. All rights reserved.
Copyright 2014 The Go Authors. All rights reserved.
Copyright 2015 The Go Authors. All rights reserved.
Copyright 2015 The Go Authors. All rights reserved.
Copyright 2016 The Go Authors. All rights reserved.
Copyright 2017 The Go Authors. All rights reserved.
Copyright 2018 The Go Authors. All rights reserved.
Copyright 2019 The Go Authors. All rights reserved.
Copyright 2020 The Go Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/google/go-cmp
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright (c) 2017 The Go Authors. All rights reserved.
Copyright 2017, The Go Authors. All rights reserved.
Copyright 2018, The Go Authors. All rights reserved.
Copyright 2019, The Go Authors. All rights reserved.
Copyright 2020, The Go Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/google/s2a-go
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2021 Google LLC
Copyright 2022 Google LLC
Copyright 2023 Google LLC
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/google/uuid
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright (c) 2009,2014 Google Inc. All rights reserved.
Copyright 2016 Google Inc. All rights reserved.
Copyright 2017 Google Inc. All rights reserved.
Copyright 2018 Google Inc. All rights reserved.
Copyright 2021 Google Inc. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/googleapis/enterprise-certificate-proxy
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2022 Google LLC.
Copyright 2023 Google LLC.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/googleapis/gax-go/v2
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright 2016, Google Inc.
Copyright 2018, Google Inc.
Copyright 2019, Google Inc.
Copyright 2021 Google LLC
Copyright 2021, Google Inc.
Copyright 2022 Google LLC
Copyright 2022, Google Inc.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/gorilla/handlers
== License Type
SPDX:BSD-2-Clause
== Copyright
Copyright (c) 2013 The Gorilla Handlers Authors. All rights reserved.
Copyright 2013 The Gorilla Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/gorilla/mux
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright (c) 2012-2018 The Gorilla Authors. All rights reserved.
Copyright 2009 The Go Authors. All rights reserved.
Copyright 2011 Gorilla Authors. All rights reserved.
Copyright 2012 The Gorilla Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/grpc-ecosystem/go-grpc-prometheus
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2016 Michal Witkowski. All Rights Reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/hashicorp/hcl/v2
== License Type
SPDX:MPL-2.0
== Copyright
(no copyright notices found)
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/huandu/xstrings
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2015 Huan Du
Copyright 2015 Huan Du. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/imdario/mergo
== License Type
SPDX:BSD-3-Clause--modified-by-Google
== Copyright
Copyright (c) 2012 The Go Authors. All rights reserved.
Copyright (c) 2013 Dario Castañé. All rights reserved.
Copyright 2009 The Go Authors. All rights reserved.
Copyright 2013 Dario Castañé. All rights reserved.
Copyright 2014 Dario Castañé. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/jonboulle/clockwork
== License Type
SPDX:Apache-2.0
== Copyright
(no copyright notices found)
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/kylelemons/godebug
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2013 Google Inc. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/lib/pq
== License Type
SPDX:MIT
== Copyright
Copyright (C) 2011 Blake Mizerany
Copyright (c) 2011-2013, 'pq' Contributors
Copyright (c) 2014 - Gustavo Niemeyer <[email protected]>
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/mattermost/xml-roundtrip-validator
== License Type
SPDX:Apache-2.0
== Copyright
(no copyright notices found)
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/mattn/go-sqlite3
== License Type
SPDX:MIT
== Copyright
Copyright (C) 2018 G.J.R. Timmer <[email protected]>.
Copyright (C) 2018 segment.com <[email protected]>
Copyright (C) 2019 G.J.R. Timmer <[email protected]>.
Copyright (C) 2019 Yasuhiro Matsumoto <[email protected]>.
Copyright (C) 2022 Yasuhiro Matsumoto <[email protected]>.
Copyright (c) 2014 Yasuhiro Matsumoto
Copyright 2011 The Go Authors. All rights reserved.
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/matttproud/golang_protobuf_extensions
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2012 Matt T. Proud ([email protected])
Copyright 2013 Matt T. Proud
Copyright 2016 Matt T. Proud
== Notices
Copyright 2012 Matt T. Proud ([email protected])
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/mitchellh/copystructure
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2014 Mitchell Hashimoto
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/mitchellh/go-wordwrap
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2014 Mitchell Hashimoto
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/mitchellh/reflectwalk
== License Type
SPDX:MIT
== Copyright
Copyright (c) 2013 Mitchell Hashimoto
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/oklog/run
== License Type
SPDX:Apache-2.0
== Copyright
(no copyright notices found)
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/pkg/errors
== License Type
SPDX:BSD-2-Clause
== Copyright
Copyright (c) 2015, Dave Cheney <[email protected]>
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/prometheus/client_golang
== License Type
SPDX:Apache-2.0
== Copyright
Copyright (c) 2013, The Prometheus Authors
Copyright (c) 2015 Björn Rabenstein
Copyright 2010 The Go Authors
Copyright 2012-2015 The Prometheus Authors
Copyright 2013 Matt T. Proud
Copyright 2013-2015 Blake Mizerany, Björn Rabenstein
Copyright 2014 The Prometheus Authors
Copyright 2015 The Prometheus Authors
Copyright 2016 The Prometheus Authors
Copyright 2017 The Prometheus Authors
Copyright 2018 The Prometheus Authors
Copyright 2019 The Prometheus Authors
Copyright 2020 The Prometheus Authors
Copyright 2021 The Prometheus Authors
Copyright 2022 The Prometheus Authors
== Notices
Prometheus instrumentation library for Go applications
Copyright 2012-2015 The Prometheus Authors
This product includes software developed at
SoundCloud Ltd. (http://soundcloud.com/).
The following components are included in this product:
perks - a fork of https://github.com/bmizerany/perks
https://github.com/beorn7/perks
Copyright 2013-2015 Blake Mizerany, Björn Rabenstein
See https://github.com/beorn7/perks/blob/master/README.md for license details.
Go support for Protocol Buffers - Google's data interchange format
http://github.com/golang/protobuf/
Copyright 2010 The Go Authors
See source code for license details.
Support for streaming Protocol Buffer messages for the Go language (golang).
https://github.com/matttproud/golang_protobuf_extensions
Copyright 2013 Matt T. Proud
Licensed under the Apache License, Version 2.0
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/prometheus/client_model
== License Type
SPDX:Apache-2.0
== Copyright
Copyright 2012-2015 The Prometheus Authors
Copyright 2013 Prometheus Team
== Notices
Data model artifacts for Prometheus.
Copyright 2012-2015 The Prometheus Authors
This product includes software developed at
SoundCloud Ltd. (http://soundcloud.com/).
--------------------------------- (separator) ----------------------------------
== Dependency
github.com/prometheus/common
== License Type
SPDX:Apache-2.0
== Copyright
Copyright (c) 2011, Open Knowledge Foundation Ltd.
Copyright 2013 The Prometheus Authors
Copyright 2014 The Prometheus Authors
Copyright 2015 The Prometheus Authors
Copyright 2016 The Prometheus Authors
Copyright 2017 The Prometheus Authors
Copyright 2018 The Prometheus Authors
Copyright 2019 The Prometheus Authors
Copyright 2020 The Prometheus Authors