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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: cargo
Source: https://github.com/rust-lang/cargo
Files:
benches/*
crates/*
src/*
tests/*
.*
build.rs
Cargo.*
LICENSE-*
README.*
CHANGELOG.*
CONTRIBUTING.*
CODE_OF_CONDUCT.*
ci/*
publish.py
triagebot.toml
Copyright: 2014 The Rust Project Developers
License: MIT or Apache-2.0
Comment: please do not add * to the above paragraph, so we can use lintian to
help us update this file properly
Files: vendor/bitflags/*
vendor/bitflags-1.*/*
vendor/env_logger/*
vendor/env_logger-0*/*
vendor/flate2/*
vendor/glob/*
vendor/libc/*
vendor/log/*
vendor/regex/*
vendor/regex-syntax/*
vendor/semver/*
vendor/shell-escape/*
vendor/unicode-width/*
Copyright: 2010-2019 The Rust Project Developers
License: MIT or Apache-2.0
Comment:
This is a collection of external crates embedded here to bootstrap cargo.
Most of them come from the original upstream Rust project, thus share the
same MIT/Apache-2.0 dual-license. See https://github.com/rust-lang.
Exceptions are noted below.
Files:
vendor/cc/*
vendor/cfg-if/*
vendor/filetime/*
vendor/fnv/*
vendor/git2/*
vendor/git2-curl/*
vendor/jobserver/*
vendor/libz-sys/*
vendor/libgit2-sys/*
vendor/libssh2-sys/*
vendor/miow/*
vendor/openssl-probe/*
vendor/pkg-config/*
vendor/proc-macro2/*
vendor/rustc-workspace-hack/*
vendor/tar/*
vendor/socket2/*
vendor/libnghttp2-sys/*
Copyright: 2014-2018 Alex Crichton <alex@alexcrichton.com>
2014-2018 The Rust Project Developers
License: MIT or Apache-2.0
Comment:
see https://github.com/alexcrichton/
see https://github.com/servo/rust-fnv
Files:
vendor/rand_core/*
vendor/rand_xoshiro/*
Copyright:
2019-2020 The Rand Project Developers
2010-2020 The Rust Project Developers
License: MIT or Apache-2.0
Comment: see https://github.com/rust-random/rand
Files:
vendor/aho-corasick/*
vendor/bytesize/*
vendor/globset/*
vendor/ignore/*
vendor/memchr/*
vendor/same-file/*
vendor/termcolor/*
vendor/walkdir/*
vendor/winapi-util/*
Copyright: 2015-2018 Andrew Gallant <jamslam@gmail.com>
License: MIT or Unlicense
Comment: see upstream projects,
* https://github.com/BurntSushi/aho-corasick
* https://github.com/BurntSushi/ripgrep/tree/master/globset
* https://github.com/BurntSushi/ripgrep/tree/master/ignore
* https://github.com/BurntSushi/rust-memchr
* https://github.com/BurntSushi/same-file
* https://github.com/BurntSushi/ripgrep/tree/master/termcolor
* https://github.com/BurntSushi/walkdir
* https://github.com/BurntSushi/winapi-util
Files: vendor/anyhow/*
Copyright: 2019-2020 David Tolnay <dtolnay@gmail.com>
License: MIT OR Apache-2.0
Comment: see https://github.com/dtolnay/anyhow
Files: vendor/adler/*
Copyright: 2020-2020 Jonas Schievink <jonasschievink@gmail.com>
License: 0BSD OR MIT OR Apache-2.0
Comment: see https://github.com/jonas-schievink/adler.git
Files:
vendor/anstream/*
vendor/anstyle/*
vendor/anstyle-parse/*
vendor/anstyle-query/*
vendor/colorchoice/*
Copyright: 2023 Ed Page <eopage@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/rust-cli/anstyle.git
Files:
vendor/arrayvec/*
vendor/either/*
vendor/itertools/*
Copyright: 2014-2021 bluss
License: MIT or Apache-2.0
Comment:
see https://github.com/bluss/arrayvec
see https://github.com/bluss/either
see https://github.com/rust-itertools/itertools
Files: vendor/base64/*
Copyright: 2015-2023 Alice Maz <alice@alicemaz.com>
2015-2023 Marshall Pierce <marshall@mpierce.org>
License: MIT or Apache-2.0
Comment: see https://github.com/marshallpierce/rust-base64
Files: vendor/bitmaps/*
Copyright: 2019-2020 Bodil Stokke <bodil@bodil.org>
License: MPL-2.0+
Comment: see https://github.com/bodil/bitmaps
Files:
vendor/base16ct/*
vendor/base64ct/*
vendor/const-oid/*
vendor/der/*
vendor/pem-rfc7468/*
vendor/pkcs8/*
vendor/sec1/*
Copyright: 2016-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/formats
Files:
vendor/block-buffer/*
vendor/cpufeatures/*
vendor/zeroize/*
Copyright: 2016-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/utils
Files: vendor/bstr/*
Copyright: 2015-2019 Andrew Gallant <jamslam@gmail.com>
License: MIT or Apache-2.0
Comment:
see https://github.com/BurntSushi/bstr
Files: vendor/atty/*
Copyright: 2015-2016, Doug Tangren
License: MIT
Comment: see https://github.com/softprops/atty
Files: vendor/autocfg/*
Copyright: 2018-2019 Josh Stone <cuviper@gmail.com>
License: Apache-2.0 or MIT
Comment: see https://github.com/cuviper/autocfg
Files:
vendor/clap/*
vendor/clap_builder/*
vendor/clap_lex/*
Copyright: 2015-2023, Kevin B. Knapp <kbknapp@gmail.com>
2015-2023, Clap Contributors
License: MIT or Apache-2.0
Comment: see https://github.com/clap-rs/clap
Files: vendor/content_inspector/*
Copyright: 2018-2018 David Peter <mail@david-peter.de>
License: MIT or Apache-2.0
Comment: see https://github.com/sharkdp/content_inspector
Files: vendor/core-foundation/*
vendor/core-foundation-sys/*
Copyright: 2012-2013, The Servo Project Developers,
2012-2013, Mozilla Foundation
License: MIT or Apache-2.0
Comment: see https://github.com/servo/core-foundation-rs
Files: vendor/crc32fast/*
Copyright: 2018, Sam Rijs <srijs@airpost.net>
2018, Alex Crichton <alex@alexcrichton.com>
License: MIT or Apache-2.0
Files: vendor/crypto-bigint/*
Copyright: 2021-2023 RustCrypto Developers
License: Apache-2.0 OR MIT
Comment: see https://github.com/RustCrypto/crypto-bigint
Files:
vendor/crypto-common/*
vendor/digest/*
vendor/elliptic-curve/*
vendor/signature/*
vendor/spki/*
Copyright: 2017-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/traits
Files: vendor/commoncrypto/*
vendor/commoncrypto-sys/*
vendor/crypto-hash/*
Copyright: 2016, Mark Lee
2015-2016, Mark Lee
License: MIT
Comment:
* see https://github.com/malept/rust-commoncrypto
* see https://github.com/malept/crypto-hash
Files: vendor/ct-codecs/*
Copyright: 2020-2022 Frank Denis <github@pureftpd.org>
License: MIT
Comment: see https://github.com/jedisct1/rust-ct-codecs
Files: vendor/curl/*
vendor/curl-sys/*
Copyright: 2014-2019 Alex Crichton <alex@alexcrichton.com>
License: MIT
Comment: see https://github.com/alexcrichton/curl-rust
Files: vendor/deranged/*
Copyright: 2020-2023 Jacob Pratt <jacob@jhpratt.dev>
License: MIT OR Apache-2.0
Comment: see https://github.com/jhpratt/deranged
Files: vendor/dunce/*
Copyright: 2017-2021 Kornel <kornel@geekhood.net>
License: CC0-1.0
Comment: see https://gitlab.com/kornelski/dunce
Files:
vendor/ecdsa/*
vendor/rfc6979/*
Copyright: 2016-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/signatures
Files: vendor/ed25519-compact/*
Copyright: 2020-2023 Frank Denis <github@pureftpd.org>
License: MIT
Comment: see https://github.com/jedisct1/rust-ed25519-compact
Files: vendor/equivalent/*
Copyright: 2016-2023 Josh Stone <cuviper@gmail.com>
License: Apache-2.0 OR MIT
Comment: see https://github.com/cuviper/equivalent
Files: vendor/errno/*
Copyright: 2015-2023 Chris Wong <lambda.fairy@gmail.com>
License: MIT OR Apache-2.0
Comment: see https://github.com/lambda-fairy/rust-errno
Files: vendor/fastrand/*
Copyright: 2020-2022 Stjepan Glavina <stjepang@gmail.com>
License: Apache-2.0 OR MIT
Comment: see https://github.com/smol-rs/fastrand
Files: vendor/ff/*
Copyright: 2017-2022 Sean Bowe <ewillbefull@gmail.com>
2017-2022 Jack Grigg <thestr4d@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/zkcrypto/ff
Files: vendor/fiat-crypto/*
Copyright: 2015-2023 Fiat Crypto library authors <jgross@mit.edu>
License: MIT OR Apache-2.0 OR BSD-1-Clause-fiat-crypto
Comment: see https://github.com/mit-plv/fiat-crypto
Files: vendor/foreign-types/*
vendor/foreign-types-shared/*
Copyright: 2017-2017 Steven Fackler <sfackler@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/sfackler/foreign-types
Files: vendor/fwdansi/*
Copyright: 2018-2018 kennytm <kennytm@gmail.com>
License: MIT
Comment: see https://github.com/kennytm/fwdansi
Files: vendor/generic-array/*
Copyright: 2015-2022 Bartłomiej Kamiński <fizyk20@gmail.com>
2015-2022 Aaron Trent <novacrazy@gmail.com>
License: MIT
Comment: see https://github.com/fizyk20/generic-array.git
Files: vendor/getrandom/*
Copyright: 2019-2023 The Rand Project Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/rust-random/getrandom
Files: vendor/group/*
Copyright: 2018-2022 Sean Bowe <ewillbefull@gmail.com>
2018-2022 Jack Grigg <jack@z.cash>
License: MIT or Apache-2.0
Comment: see https://github.com/zkcrypto/group
Files:
vendor/hashbrown/*
vendor/hashbrown-0.*/*
Copyright: 2018-2023 Amanieu d'Antras <amanieu@gmail.com>
License: MIT OR Apache-2.0
Comment: see https://github.com/rust-lang/hashbrown
Files: vendor/hex/*
Copyright:
2015-2019 KokaKiwi <kokakiwi@kokakiwi.net>
2015-2019 rust-hex Developers
License: MIT or Apache-2.0
Comment: see https://github.com/KokaKiwi/rust-hex
Files: vendor/hkdf/*
Copyright: 2015-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/KDFs/
Files: vendor/hmac/*
Copyright: 2017-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/MACs
Files: vendor/home/*
Copyright: Brian Anderson <andersb@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/brson/home
Files: vendor/http-auth/*
Copyright: 2021 Scott Lamb <slamb@slamb.org>
License: MIT or Apache-2.0
Comment: see https://github.com/scottlamb/http-auth
Files:
vendor/humantime/*
vendor/humantime-1*/*
Copyright: 2016, The humantime Developers
License: MIT or Apache-2.0
Comment:
Includes parts of http date with copyright: 2016, Pyfisch and portions of musl
libc with copyright 2005-2013 Rich Felker.
.
See https://github.com/tailhook/humantime
Files:
vendor/im-rc/*
vendor/sized-chunks/*
Copyright: 2017-2019 Bodil Stokke <bodil@bodil.org>
License: MPL-2.0+
Comment:
see https://github.com/bodil/im-rs
see https://github.com/bodil/sized-chunks
Files:
vendor/indexmap/*
vendor/indexmap-1.*/*
Copyright:
2016-2021 bluss
2017-2022 Josh Stone <cuviper@gmail.com>
License: Apache-2.0 OR MIT
Comment: see https://github.com/bluss/indexmap
Files: vendor/is-terminal/*
Copyright: 2022-2023 softprops <d.tangren@gmail.com>
2022-2023 Dan Gohman <dev@sunfishcode.online>
License: MIT
Comment: see https://github.com/sunfishcode/is-terminal
Files: vendor/itoa/*
vendor/quote/*
Copyright: 2016-2017 David Tolnay <dtolnay@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/dtolnay
Files: vendor/idna/*
Copyright: 2013 Simon Sapin <simon.sapin@exyr.org>
2013-2014 Valentin Gosu
1991-2015 Unicode, Inc
License: MIT or Apache-2.0
Files: vendor/lazycell/*
Copyright: 20014, The Rust Project Developers
2016-2017, Nikita Pekin and lazycell contributors
License: MIT or Apache-2.0
Files: vendor/lazy_static/*
Copyright: 2014-2016 Marvin Löbel <loebel.marvin@gmail.com>
License: MIT or Apache-2.0
Files: vendor/linux-raw-sys/*
Copyright: 2021-2023 Dan Gohman <dev@sunfishcode.online>
License: Apache-2.0 with LLVM exception OR Apache-2.0 OR MIT
Comment: see https://github.com/sunfishcode/linux-raw-sys
Files: vendor/miniz_oxide/*
Copyright:
2017-2019 Frommi <daniil.liferenko@gmail.com>
2017-2019 oyvindln <oyvindln@users.noreply.github.com>
License: MIT
Comment: see https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
Files: vendor/normalize-line-endings/*
Copyright: 2016-2018 Richard Dodd <richdodj@gmail.com>
License: Apache-2.0
Comment: see https://github.com/derekdreery/normalize-line-endings
Files: vendor/num-traits/*
Copyright: 2014-2023 The Rust Project Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/rust-num/num-traits
Files: vendor/once_cell/*
Copyright: 2018-2021 Aleksey Kladov <aleksey.kladov@gmail.com>
License: MIT OR Apache-2.0
Comment: see https://github.com/matklad/once_cell
Files: vendor/opener/*
Copyright: 2018 Brian Bowman <seeker14491@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/Seeker14491/opener
Files: vendor/openssl/*
Copyright: 2013-2022 Steven Fackler <sfackler@gmail.com>
2013 Jack Lloyd
2011 Google Inc.
License: Apache-2.0
Files: vendor/openssl-macros/*
Copyright: 2022 Steven Fackler <sfackler@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/sfackler/rust-openssl
Files: vendor/openssl-sys/*
Copyright: 2015 Steven Fackler <sfackler@gmail.com>
2015 Alex Crichton <alex@alexcrichton.com>
License: MIT
Comment: see https://github.com/sfackler/rust-openssl
Files: vendor/ordered-float/*
Copyright: 2014-2023 Jonathan Reem <jonathan.reem@gmail.com>
2014-2023 Matt Brubeck <mbrubeck@limpet.net>
License: MIT
Comment: see https://github.com/reem/rust-ordered-float
Files: vendor/orion/*
Copyright: 2018-2023 brycx <brycx@protonmail.com>
License: MIT
Comment: see https://github.com/orion-rs/orion
Files: vendor/os_info/*
Copyright: 2015-2022 Jan Schulte <hello@unexpected-co.de>
2015-2022 Stanislav Tkach <stanislav.tkach@gmail.com>
License: MIT
Comment: see https://github.com/stanislav-tkach/os_info
Files: vendor/pasetors/*
Copyright: 2020-2023 brycx <brycx@protonmail.com>
License: MIT
Comment: see https://github.com/brycx/pasetors
Files: vendor/pathdiff/*
Copyright: 2017-2021 Manish Goregaokar <manishsmail@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/Manishearth/pathdiff
Files:
vendor/p384/*
vendor/primeorder/*
Copyright: 2016-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/elliptic-curves
Files: vendor/powerfmt/*
Copyright: 2023-2023 Jacob Pratt <jacob@jhpratt.dev>
License: MIT OR Apache-2.0
Comment: see https://github.com/jhpratt/powerfmt
Files: vendor/pretty_env_logger/*
Copyright: 2016-2019 Sean McArthur <sean@seanmonstar>
License: MIT or Apache-2.0
Comment: see https://github.com/seanmonstar/pretty-env-logger
Files: vendor/quick-error/*
Copyright: 2015, The quick-error developers
License: MIT or Apache-2.0
Files: vendor/redox_syscall/*
Copyright: 2017, Redox OS Developers
License: MIT
Files: vendor/regex-automata/*
Copyright: 2018-2021 Andrew Gallant <jamslam@gmail.com>
License: Unlicense or MIT
Comment: see https://github.com/BurntSushi/regex-automata
Files: vendor/rustfix/*
Copyright: 2016, Pascal Hertleif
2016, Oliver Schneider
License: MIT or Apache-2.0
Files: vendor/rustix/*
Copyright: 2020-2023 Dan Gohman <dev@sunfishcode.online>
2020-2023 Jakub Konka <kubkon@jakubkonka.com>
License: Apache-2.0 with LLVM exception OR Apache-2.0 OR MIT
Comment: see https://github.com/bytecodealliance/rustix
Files: vendor/ryu/*
Copyright: David Tolnay <dtolnay@gmail.com>
License: BSL-1.0 or Apache-2.0
Files: vendor/schannel/*
Copyright: 2015, Steffen Butzer <steffen.butzer@outlook.com>
License: MIT
Comment: see https://github.com/steffengy/schannel-rs/
Files: vendor/serde/*
vendor/serde_derive/*
vendor/serde_ignored/*
vendor/serde_json/*
Copyright: 2014-2017 Erick Tryzelaar <erick.tryzelaar@gmail.com>
2014-2017 David Tolnay <dtolnay@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/serde-rs
see https://github.com/dtolnay/serde-ignored
Files:
vendor/serde_spanned/*
vendor/toml/*
vendor/toml_datetime/*
Copyright:
2014-2023 Alex Crichton <alex@alexcrichton.com>
2023 Ed Page <eopage@gmail.com>
License: MIT OR Apache-2.0
Comment: see https://github.com/toml-rs/toml
Files: vendor/serde-value/*
Copyright: 2016-2020 arcnmx
License: MIT
Comment: see https://github.com/arcnmx/serde-value
Files:
vendor/sha1/*
vendor/sha2/*
Copyright: 2016-2023 RustCrypto Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/RustCrypto/hashes
Files: vendor/similar/*
Copyright: 2021-2022 Armin Ronacher <armin.ronacher@active-4.com>
2021-2022 Pierre-Étienne Meunier <pe@pijul.org>
2021-2022 Brandon Williams <bwilliams.eng@gmail.com>
License: Apache-2.0
Comment: see https://github.com/mitsuhiko/similar
Files: vendor/snapbox/*
vendor/snapbox-macros/*
Copyright: 2015-2022 The assert_cli Developers
License: MIT OR Apache-2.0
Comment: see https://github.com/assert-rs/trycmd/
Files: vendor/strip-ansi-escapes/*
Copyright: 2017-2018 Ted Mielczarek <ted@mielczarek.org>
License: Apache-2.0 or MIT
Comment: see https://github.com/luser/strip-ansi-escapes
Files: vendor/strsim/*
Copyright: 2015 Danny Guo <dannyguo91@gmail.com>
License: MIT
Comment: see https://github.com/dguo/strsim-rs
Files: vendor/subtle/*
Copyright: 2017-2021 Isis Lovecruft <isis@patternsinthevoid.net>
2017-2021 Henry de Valence <hdevalence@hdevalence.ca>
License: BSD-3-Clause
Comment: see https://github.com/dalek-cryptography/subtle
Files: vendor/syn/*
Copyright: 2016-2017 David Tolnay <dtolnay@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/dtolnay/syn
Files: vendor/tempfile/*
Copyright: 2015, Steven Allen
License: MIT or Apache-2.0
Files: vendor/thread_local/*
Copyright: 2016 Amanieu d'Antras <amanieu@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/Amanieu/thread_local-rs
Files:
vendor/time/*
vendor/time-core/*
vendor/time-macros/*
Copyright: 2019-2023 Jacob Pratt <open-source@jhpratt.dev>
2019-2023 Time contributors
License: MIT OR Apache-2.0
Comment: see https://github.com/time-rs/time
Files: vendor/tinyvec/*
Copyright: 2020-2020 Lokathor <zefria@gmail.com>
License: Zlib OR Apache-2.0 OR MIT
Comment: see https://github.com/Lokathor/tinyvec
Files: vendor/tinyvec_macros/*
Copyright: 2020-2020 Soveu <marx.tomasz@gmail.com>
License: MIT OR Apache-2.0 OR Zlib
Comment: see https://github.com/Soveu/tinyvec_macros
Files: vendor/toml_edit/*
Copyright: 2017-2022 Andronik Ordian <write@reusable.software>
2017-2022 Ed Page <eopage@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/ordian/toml_edit
Files: vendor/typenum/*
Copyright: 2015-2018 Paho Lurie-Gregg <paho@paholg.com>
2015-2018 Andre Bogus <bogusandre@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/paholg/typenum
Files: vendor/unicode-bidi/*
Copyright: 2015 The Servo Project Developers
License: MIT or Apache-2.0
Comment: see https://github.com/servo/unicode-bidi
Files: vendor/unicode-ident/*
Copyright: 2022-2022 David Tolnay <dtolnay@gmail.com>
License: (MIT OR Apache-2.0) AND Unicode-DFS-2016
Comment: see https://github.com/dtolnay/unicode-ident
Files: vendor/unicode-normalization/*
Copyright: 2016 kwantam <kwantam@gmail.com>
License: MIT or Apache-2.0
Files: vendor/unicode-xid/*
Copyright: 2015-2017 erick.tryzelaar <erick.tryzelaar@gmail.com>
2015-2017 kwantam <kwantam@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/unicode-rs/unicode-xid
Files:
vendor/form_urlencoded/*
vendor/url/*
vendor/percent-encoding/*
Copyright:
2015-2016 Simon Sapin <simon.sapin@exyr.org>
2013-2021 The rust-url developers
License: MIT or Apache-2.0
Comment:
see https://github.com/servo/rust-url
see https://github.com/servo/rust-url/tree/master/percent_encoding
Files: vendor/utf8parse/*
Copyright: 2016-2019 Joe Wilm <joe@jwilm.com>
License: Apache-2.0 or MIT
Comment: see https://github.com/jwilm/vte
Files: vendor/vcpkg/*
Copyright: 2017-2017 Jim McGrath <jimmc2@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/mcgoo/vcpkg-rs
Files: vendor/version_check/*
Copyright: 2017-2019 Sergio Benitez <sb@sergio.bz>
License: MIT or Apache-2.0
Comment: see https://github.com/SergioBenitez/version_check
Files: vendor/vte/*
Copyright: 2016-2019 Joe Wilm <joe@jwilm.com>
License: Apache-2.0 or MIT
Comment: see https://github.com/jwilm/vte
Files: vendor/vte_generate_state_changes/*
Copyright: 2016-2021 Christian Duerr <contact@christianduerr.com>
License: Apache-2.0 OR MIT
Comment: see https://github.com/jwilm/vte
Files: vendor/winapi/*
Copyright:
2014-2017 Peter Atashian <retep998@gmail.com>
2014-2017 winapi-rs developers
License: MIT
Comment: see https://github.com/retep998/winapi-rs
Files: vendor/winapi-*-pc-windows-gnu/*
Copyright: 2014-2018 Peter Atashian <retep998@gmail.com>
License: MIT or Apache-2.0
Comment: see https://github.com/retep998/winapi-rs
Files:
vendor/windows_*_gnu/*
vendor/windows_*_gnullvm/*
vendor/windows_*_msvc/*
vendor/windows_*_gnu-0.*/*
vendor/windows_*_gnullvm-0.*/*
vendor/windows_*_msvc-0.*/*
vendor/windows-sys/*
vendor/windows-sys-0.*/*
vendor/windows-targets/*
vendor/windows-targets-0.*/*
Copyright: 2019-2023 Microsoft
License: MIT OR Apache-2.0
Comment: see https://github.com/microsoft/windows-rs
Files: vendor/winnow/*
Copyright:
2023 winnow contributors
2014-2023 nom contributors
2014-2023 Geoffroy Couprie <contact@geoffroycouprie.com>
License: MIT
Comment: see https://github.com/winnow-rs/winnow - fork of nom, hence the original copyright of Geoffroy Couprie applies
Files: debian/*
Copyright:
2016-2019 Ximin Luo <infinity0@debian.org>
2017-2019 Vasudeva Kamath <vasudev@copyninja.info>
2015-2016 Luca Bruno <lucab@debian.org>
License: MIT or Apache-2.0
License: 0BSD
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, 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 THIS SOFTWARE.
License: Apache-2.0
On Debian systems, see /usr/share/common-licenses/Apache-2.0 for
the full text of the Apache License version 2.
License: Apache-2.0 with LLVM exception
On Debian systems, the full text of the Apache License Version 2.0
can be found in the file `/usr/share/common-licenses/Apache-2.0'.
Additionally, the LLVM exception is as follows:
.
As an exception, if, as a result of your compiling your source code, portions
of this Software are embedded into an Object form of such source code, you
may redistribute such embedded portions in such Object form without complying
with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
.
In addition, if you combine or link compiled forms of this Software with
software that is licensed under the GPLv2 ("Combined Software") and if a
court of competent jurisdiction determines that the patent provision (Section
3), the indemnity provision (Section 9) or other Section of the License
conflicts with the conditions of the GPLv2, you may retroactively and
prospectively choose to deem waived or otherwise exclude such Section(s) of
the License, but only in their entirety and only with respect to the Combined
Software.
License: BSD-1-Clause-fiat-crypto
Copyright (c) 2015-2020 the fiat-crypto authors (see the AUTHORS file)
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.
.
THIS SOFTWARE IS PROVIDED BY the fiat-crypto authors "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 Berkeley Software Design,
Inc. 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.
License: BSD-2-clause
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 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.
License: BSD-3-clause
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.
3. Neither the name of the Creytiv.com 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 AUTHOR ``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 AUTHOR 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.
License: CC0-1.0
On Debian systems, see /usr/share/common-licenses/CC0-1.0 for
the full text of the CC0 1.0 Universal license.
License: ISC
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, 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 THIS SOFTWARE.
License: MIT
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.
License: MPL-2.0
Debian systems provide the MPL 2.0 in /usr/share/common-licenses/MPL-2.0
License: Unlicense
This is free and unencumbered software released into the public domain.
.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
.
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 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.
License: BSL-1.0
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by this
license (the "Software") to use, reproduce, display, distribute, execute, and
transmit the Software, and to prepare derivative works of the Software, and to
permit third-parties to whom the Software is furnished to do so, all subject to
the following:
.
The copyright notices in the Software and this entire statement, including the
above license grant, this restriction and the following disclaimer, must be
included in all copies of the Software, in whole or in part, and all derivative
works of the Software, unless such copies or derivative works are solely in the
form of machine-executable object code generated by a source language
processor.
.
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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY
DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
License: Zlib
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
License: Unicode-DFS-2016
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
.
See Terms of Use <https://www.unicode.org/copyright.html>
for definitions of Unicode Inc.’s Data Files and Software.
.
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-2022 Unicode, Inc. All rights reserved.
Distributed under the Terms of Use in https://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.
|