-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNOTICE
3698 lines (3019 loc) · 182 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
Copyright 2023 Volvo Car Corporation
[LPA-Tools : Default Detect Version]
Components:
abonander/mime_guess 2.0.4 : MIT License
alexcrichton/cfg-if 1.0.0 : (MIT License AND Apache License 2.0)
alexcrichton/openssl-probe 0.1.5 : (MIT License OR Apache License 2.0)
alexcrichton/socket2-rs 0.4.9 : (MIT License OR Apache License 2.0)
android-tzdata 0.1.1 : (MIT License OR Apache License 2.0)
android_system_properties 0.1.5 : (MIT License OR Apache License 2.0)
anstream 0.3.2 : (MIT License OR Apache License 2.0)
anstyle 1.0.0 : (MIT License OR Apache License 2.0)
anstyle-parse 0.2.0 : (MIT License OR Apache License 2.0)
anstyle-query 1.0.0 : (MIT License OR Apache License 2.0)
anstyle-wincon 1.0.1 : (MIT License OR Apache License 2.0)
anyhow 1.0.71 : (MIT License OR Apache License 2.0)
async-graphql 2.11.3 : (MIT License OR Apache License 2.0)
async-recursion 1.0.4 : (MIT License OR Apache License 2.0)
async-trait 0.1.68 : (MIT License OR Apache License 2.0)
autocfg 1.1.0 : (MIT License OR Apache License 2.0)
bitflags 1.3.2 : (MIT License OR Apache License 2.0)
bluss/arrayvec 0.7.3 : (MIT License OR Apache License 2.0)
bluss/either 1.8.1 : Apache License 2.0
bluss/indexmap 1.9.3 : (MIT License AND Apache License 2.0)
bluss/maplit 1.0.2 : (MIT License OR Apache License 2.0)
bluss/scopeguard 1.1.0 : (MIT License OR Apache License 2.0)
briansmith/ring 0.16.20 : (SSLeay License AND ISC License AND The Open SSL License)
briansmith/untrusted 0.7.1 : ISC License
briansmith/webpki 0.22.0 : ISC License
BurntSushi/bstr 1.5.0 : (MIT License OR Apache License 2.0)
BurntSushi/rust-memchr 2.5.0 : (MIT License OR The Unlicense)
BurntSushi/same-file 1.0.6 : (MIT License AND The Unlicense)
BurntSushi/ucd-generate 0.1.5 : Apache License 2.0
bytecount 0.6.3 : (MIT License OR Apache License 2.0)
cargo-lock 8.0.3 : (MIT License OR Apache License 2.0)
cargo_toml 0.15.3 : (MIT License OR Apache License 2.0)
chrono-tz 0.6.3 : (MIT License OR Apache License 2.0)
chrono-tz-build 0.0.3 : (MIT License OR Apache License 2.0)
chronotope/chrono 0.4.26 : (MIT License AND Apache License 2.0)
clap-rs/clap 0.5.0 : MIT License
clap-rs/clap 2.34.0 : MIT License
clap-rs/clap 4.3.2 : Apache License 2.0
clap-rs/clap 4.3.3 : (MIT License OR Apache License 2.0)
colorchoice 1.0.0 : (MIT License OR Apache License 2.0)
contain-rs/vec-map 0.8.2 : (MIT License OR Apache License 2.0)
content_inspector 0.2.4 : (MIT License OR Apache License 2.0)
crates-index 0.19.10 : Apache License 2.0
crossbeam-channel 0.5.8 : (MIT License OR Apache License 2.0)
crossbeam-deque 0.8.3 : (MIT License OR Apache License 2.0)
crossbeam-epoch 0.9.15 : (MIT License OR Apache License 2.0)
crossbeam-utils 0.8.16 : (MIT License OR Apache License 2.0)
ctz/sct.rs 0.7.0 : (MIT License OR ISC License OR Apache License 2.0)
cvss 2.0.0 : (MIT License OR Apache License 2.0)
dashmap 4.0.2 : MIT License
dguo/strsim-rs 0.10.0 : MIT License
dguo/strsim-rs 0.8.0 : MIT License
digest 0.10.7 : (MIT License OR Apache License 2.0)
dirs 3.0.2 : (MIT License OR Apache License 2.0)
dirs-sys 0.3.7 : (MIT License OR Apache License 2.0)
dtolnay/itoa 1.0.6 : Apache License 2.0
dtolnay/quote 1.0.28 : Apache License 2.0
dtolnay/ryu 1.0.13 : (Apache License 2.0 OR Boost Software License 1.0)
dunce 1.0.4 : (MIT License OR Creative Commons Zero v1.0 Universal OR Apache License 2.0)
dyn-clone 1.0.11 : (MIT License OR Apache License 2.0)
encoding_rs_io 0.1.7 : (MIT License OR Apache License 2.0)
env_logger 0.8.4 : (MIT License OR Apache License 2.0)
errno 0.3.1 : (MIT License OR Apache License 2.0)
errno-dragonfly 0.1.2 : MIT License
fastrand 1.9.0 : (MIT License OR Apache License 2.0)
foreign-types 0.1.1 : (MIT License OR Apache License 2.0)
foreign-types 0.3.2 : (MIT License OR Apache License 2.0)
fs-err 2.9.0 : (MIT License OR Apache License 2.0)
futures-task 0.3.28 : (MIT License OR Apache License 2.0)
generic-array 0.14.7 : MIT License
glob 0.3.1 : (MIT License OR Apache License 2.0)
global_counter 0.2.2 : (MIT License OR Apache License 2.0)
globwalk 0.8.1 : MIT License
heck 0.4.1 : (MIT License OR Apache License 2.0)
hermitcore/libhermit-rs 0.1.19 : (MIT License OR Apache License 2.0)
hermitcore/libhermit-rs 0.2.6 : (MIT License OR Apache License 2.0)
hex 0.4.3 : (MIT License OR Apache License 2.0)
httpdate 1.0.2 : (MIT License OR Apache License 2.0)
humansize 1.1.1 : (MIT License OR Apache License 2.0)
humantime-serde 1.1.1 : (MIT License OR Apache License 2.0)
hyper-rustls 0.24.0 : (MIT License OR ISC License OR Apache License 2.0)
hyper-tls 0.5.0 : (MIT License OR Apache License 2.0)
hyperium/h2 0.3.19 : MIT License
hyperium/http 0.2.9 : Apache License 2.0
hyperium/http-body 0.4.5 : MIT License
iana-time-zone-haiku 0.1.2 : (MIT License OR Apache License 2.0)
instant 0.1.12 : BSD 3-clause "New" or "Revised" License
io-lifetimes 1.0.11 : (MIT License OR Apache License 2.0 with Exceptions OR Apache License 2.0)
is-terminal 0.4.7 : MIT License
jedisct1/rust-siphash 0.3.10 : Apache License 2.0
js-sys 0.3.64 : (MIT License OR Apache License 2.0)
Keats/jsonwebtoken 8.3.0 : MIT License
Keats/tera 1.17.1 : MIT License
kornelski/deunicode 0.4.3 : BSD 3-clause "New" or "Revised" License
lazy_static 1.4.0 : (MIT License AND Apache License 2.0)
libssh2-sys 0.2.23 : (MIT License OR Apache License 2.0)
linux-raw-sys 0.3.8 : (MIT License OR Apache License 2.0 with Exceptions OR Apache License 2.0)
memmap2 0.5.10 : (MIT License OR Apache License 2.0)
mgeisler/textwrap 0.11.0 : MIT License
mvdnes/spin-rs 0.5.2 : MIT License
native-tls 0.2.11 : (MIT License OR Apache License 2.0)
normalize-line-endings 0.3.0 : Apache License 2.0
nox/serde_urlencoded 0.7.1 : (MIT License OR Apache License 2.0)
num-bigint 0.4.3 : (MIT License OR Apache License 2.0)
num-format 0.4.4 : (MIT License OR Apache License 2.0)
num-integer 0.1.45 : (MIT License OR Apache License 2.0)
num-traits 0.2.15 : (MIT License AND Apache License 2.0)
octorust 0.3.2 : MIT License
oli-obk/cargo_metadata 0.15.4 : MIT License
open-telemetry/opentelemetry-rust 0.17.0 : Apache License 2.0
openssl-macros 0.1.1 : (MIT License OR Apache License 2.0)
ordian/toml_edit 0.19.10 : Apache License 2.0
paholg/typenum 1.16.0 : (MIT License OR Apache License 2.0)
parking_lot 0.11.2 : (MIT License AND Apache License 2.0)
parking_lot 0.12.1 : (MIT License AND Apache License 2.0)
parking_lot_core 0.8.6 : (MIT License OR Apache License 2.0)
parse-zoneinfo 0.3.0 : MIT License
parse_link_header 0.3.3 : MIT License
pem 1.1.1 : MIT License
pest-parser 2.6.0 : (MIT License OR Apache License 2.0)
pin-project 1.1.0 : (MIT License OR Apache License 2.0)
pin-project-internal 1.1.0 : (MIT License OR Apache License 2.0)
pin-project-lite 0.2.9 : (MIT License OR Apache License 2.0)
pin-utils 0.1.0 : (MIT License OR Apache License 2.0)
platforms 3.0.2 : (MIT License OR Apache License 2.0)
ppv-lite86 0.2.17 : (MIT License OR Apache License 2.0)
proc-macro-error 1.0.4 : (MIT License OR Apache License 2.0)
proc-macro-error-attr 1.0.4 : (MIT License OR Apache License 2.0)
rand_chacha 0.3.1 : MIT License
rand_core 0.6.4 : (MIT License OR Apache License 2.0)
rayon 1.11.0 : (MIT License OR Apache License 2.0)
rayon 1.7.0 : (MIT License OR Apache License 2.0)
redox-os 0.2.16 : MIT License
redox-os 0.3.5 : MIT License
redox_users 0.4.3 : MIT License
regex-syntax 0.7.2 : (MIT License OR Apache License 2.0)
reqwest-conditional-middleware 0.1.0 : MIT License
reqwest-middleware 0.1.6 : (MIT License OR Apache License 2.0)
reqwest-retry 0.1.5 : (MIT License OR Apache License 2.0)
reqwest-tracing 0.3.1 : (MIT License OR Apache License 2.0)
retry-policies 0.1.2 : (MIT License OR Apache License 2.0)
ripgrep 0.1.11 : MIT License
ripgrep 0.1.6 : MIT License
rust-aho-corasick 0.7.20 : The Unlicense
rust-ansi-term v0.12.1 : MIT License
rust-base64 0.13.1 : (MIT License OR Apache License 2.0)
rust-base64 0.21.2 : (MIT License OR Apache License 2.0)
rust-itertools/itertools 0.10.5 : (MIT License OR Apache License 2.0)
rust-lang-nursery/futures-rs 0.3.28 : (MIT License OR Apache License 2.0)
rust-lang/cargo 0.1.2 : (MIT License OR Apache License 2.0)
rust-lang/git2-rs 0.14.2+1.5.1 : (MIT License OR Apache License 2.0)
rust-lang/git2-rs 0.16.1 : Apache License 2.0
rust-lang/hashbrown v0.12.3 : Apache License 2.0
rust-libc 0.2.146 : (MIT License OR Apache License 2.0)
rust-phf 0.11.1 : MIT License
rust-random/rand 0.8.5 : (MIT License OR Apache License 2.0)
rust-regex 1.8.4 : Apache License 2.0
rust-url 0.4.0 : (MIT License OR Apache License 2.0)
rust-url 1.2.0 : (MIT License OR Apache License 2.0)
rust-url 2.3.0 : Apache License 2.0
rust-url 2.4.0 : Apache License 2.0
rustc-hash 1.1.0 : (MIT License OR Apache License 2.0)
RustCrypto/hashes 0.10.6 : (MIT License OR Apache License 2.0)
RustCrypto/traits 0.1.6 : (MIT License OR Apache License 2.0)
rustix 0.37.20 : (MIT License OR Apache License 2.0 with Exceptions OR Apache License 2.0)
rustls 0.21.1 : (MIT License OR ISC License OR Apache License 2.0)
rustls-pemfile 1.0.2 : (MIT License OR ISC License OR Apache License 2.0)
rustls-webpki 0.100.1 :
rustsec 0.26.5 : (MIT License OR Apache License 2.0)
Rusty Object Notation 0.6.6 : (MIT License OR Apache License 2.0)
Rusty Object Notation 0.8.0 : Apache License 2.0
schemars_derive 0.8.12 : MIT License
seanmonstar/httparse 1.8.0 : Apache License 2.0
seanmonstar/reqwest 0.11.18 : Apache License 2.0
seanmonstar/try-lock 0.2.4 : MIT License
seanmonstar/unicase 2.6.0 : (MIT License OR Apache License 2.0)
seanmonstar/want 0.3.0 : MIT License
security-framework 2.9.1 : Apache License 2.0
semver 1.0.17 : (MIT License OR Apache License 2.0)
serde 0.26.0 : (MIT License OR Apache License 2.0)
serde_json 1.0.96 : Apache License 2.0
serde_path_to_error 0.1.11 : (MIT License OR Apache License 2.0)
serde_spanned 0.6.2 : (MIT License OR Apache License 2.0)
SergioBenitez/version_check 0.9.4 : (MIT License OR Apache License 2.0)
servo/core-foundation-rs 0.9.3 : (MIT License AND Apache License 2.0)
servo/rust-fnv 1.0.7 : (MIT License OR Apache License 2.0)
servo/rust-smallvec 1.10.0 : Apache License 2.0
sharded-slab 0.1.4 : MIT License
shlex 1.1.0 : (MIT License OR Apache License 2.0)
signal-hook-registry 1.4.1 : (MIT License OR Apache License 2.0)
similar 2.2.1 : Apache License 2.0
simple_asn1 0.6.2 : ISC License
slab 0.4.8 : MIT License
slug 0.1.4 : (MIT License OR Apache License 2.0)
snapbox 0.4.11 : (MIT License OR Apache License 2.0)
snapbox-macros 0.3.4 : (MIT License OR Apache License 2.0)
softprops/atty 0.2.14 : MIT License
syn 1.0.109 : Apache License 2.0
syn 2.0.18 : Apache License 2.0
tailhook/humantime 2.1.0 : (MIT License OR Apache License 2.0)
task-local-extensions 0.1.4 : (MIT License OR Apache License 2.0)
term_size 0.3.2 : (MIT License OR Apache License 2.0)
test-case 3.1.0 : MIT License
test-case-core 3.1.0 : MIT License
test-case-macros 3.1.0 : MIT License
theduke/crates_io_api 0.8.1 : (MIT License AND Apache License 2.0)
thiserror 1.0.40 : (MIT License OR Apache License 2.0)
thiserror-impl 1.0.40 : (MIT License OR Apache License 2.0)
time 0.1.45 : (MIT License OR Apache License 2.0)
time-core 0.1.1 : (MIT License OR Apache License 2.0)
time-macros 0.2.9 : (MIT License OR Apache License 2.0)
tinyvec 1.6.0 : (zlib License OR MIT License OR Apache License 2.0)
tinyvec_macros 0.1.1 : (zlib License OR MIT License OR Apache License 2.0)
tokio 1.28.2 : MIT License
tokio-macros 2.1.0 : MIT License
tokio-native-tls 0.3.1 : MIT License
tokio-rustls 0.24.1 : (MIT License OR Apache License 2.0)
tokio-util 0.7.8 : MIT License
toml-rs 0.5.11 : (MIT License OR Apache License 2.0)
toml-rs 0.7.4 : (MIT License OR Apache License 2.0)
toml_datetime 0.6.2 : (MIT License OR Apache License 2.0)
tower-rs/tower 0.3.2 : MIT License
tracing 0.1.37 : MIT License
tracing-attributes 0.1.24 : MIT License
tracing-core 0.1.31 : MIT License
tracing-log 0.1.3 : MIT License
tracing-opentelemetry 0.17.4 : MIT License
tracing-subscriber 0.3.17 : MIT License
trustfall 0.4.0 : Apache License 2.0
trustfall_core 0.4.0 : Apache License 2.0
trustfall_derive 0.3.0 : Apache License 2.0
trycmd 0.14.16 : (MIT License OR Apache License 2.0)
uncased 0.9.9 : (MIT License OR Apache License 2.0)
unic-char-property 0.9.0 : (MIT License OR Apache License 2.0)
unic-char-range 0.9.0 : (MIT License OR Apache License 2.0)
unic-common 0.9.0 : (MIT License OR Apache License 2.0)
unic-segment 0.9.0 : (MIT License OR Apache License 2.0)
unic-ucd-segment 0.9.0 : (MIT License OR Apache License 2.0)
unic-ucd-version 0.9.0 : (MIT License OR Apache License 2.0)
unicode-ident 1.0.9 : (Unicode License Agreement - Data Files and Software (2016) AND (MIT License OR Apache License 2.0))
unicode-rs/unicode-normalization 0.1.22 : (MIT License AND Apache License 2.0)
unicode-rs/unicode-width 0.1.10 : (MIT License OR Apache License 2.0)
utf8parse 0.2.1 : (MIT License OR Apache License 2.0)
valuable 0.1.0 : MIT License
vcpkg-rs 0.2.15 : (MIT License OR Apache License 2.0)
wait-timeout 0.2.0 : (MIT License OR Apache License 2.0)
wasi 0.10.0+wasi-snapshot-preview1 : (MIT License OR Apache License 2.0 with Exceptions OR Apache License 2.0)
wasi 0.11.0+wasi-snapshot-preview1 : (MIT License OR Apache License 2.0 with Exceptions OR Apache License 2.0)
wasm-bindgen 0.2.87 : (MIT License OR Apache License 2.0)
wasm-bindgen 0.3.64 : (MIT License OR Apache License 2.0)
wasm-bindgen 0.4.37 : (MIT License OR Apache License 2.0)
wasm-bindgen-macro 0.2.87 : (MIT License OR Apache License 2.0)
wasm-bindgen-macro-support 0.2.87 : (MIT License OR Apache License 2.0)
wasm-bindgen-shared 0.2.87 : (MIT License OR Apache License 2.0)
webpki-roots 0.22.6 (https://github.com/rustls/webpki-roots): Mozilla Public License 2.0
winapi-i686-pc-windows-gnu 0.4.0 : (MIT License OR Apache License 2.0)
winapi-rs 0.3.9 : (MIT License AND Apache License 2.0)
winapi-util 0.1.5 : (MIT License OR The Unlicense)
winapi-x86_64-pc-windows-gnu 0.4.0 : (MIT License OR Apache License 2.0)
windows 0.48.0 : (MIT License OR Apache License 2.0)
windows-sys 0.42.0 : (MIT License OR Apache License 2.0)
windows-sys 0.45.0 : (MIT License OR Apache License 2.0)
windows-sys 0.48.0 : (MIT License OR Apache License 2.0)
windows-targets 0.42.2 : (MIT License OR Apache License 2.0)
windows-targets 0.48.0 : (MIT License OR Apache License 2.0)
windows_aarch64_gnullvm 0.42.2 : (MIT License OR Apache License 2.0)
windows_aarch64_gnullvm 0.48.0 : (MIT License OR Apache License 2.0)
windows_aarch64_msvc 0.42.2 : (MIT License OR Apache License 2.0)
windows_i686_gnu 0.42.2 : (MIT License OR Apache License 2.0)
windows_i686_gnu 0.48.0 : (MIT License OR Apache License 2.0)
windows_i686_msvc 0.42.2 : (MIT License OR Apache License 2.0)
windows_x86_64_gnu 0.42.2 : (MIT License OR Apache License 2.0)
windows_x86_64_gnu 0.48.0 : (MIT License OR Apache License 2.0)
windows_x86_64_gnullvm 0.42.2 : (MIT License OR Apache License 2.0)
windows_x86_64_gnullvm 0.48.0 : (MIT License OR Apache License 2.0)
windows_x86_64_msvc 0.42.2 : (MIT License OR Apache License 2.0)
winnow 0.4.6 : MIT License
winreg 0.10.1 : MIT License
XAMPPRocky/tokei 12.1.2 : (MIT License OR Apache License 2.0)
Copyright Text:
BurntSushi/rust-memchr 2.5.0 crates:memchr/2.5.0
Copyright (c) 2015 Andrew Gallant
BurntSushi/same-file 1.0.6 crates:same-file/1.0.6
Copyright (c) 2017 Andrew Gallant
BurntSushi/ucd-generate 0.1.5 crates:ucd-trie/0.1.5
Copyright (c) 2015 Andrew Gallant
Keats/jsonwebtoken 8.3.0 crates:jsonwebtoken/8.3.0
Copyright (c) 2015 Vincent Prouillet
Keats/tera 1.17.1 crates:tera/1.17.1
Copyright (c) 2015 Vincent Prouillet
RustCrypto/hashes 0.10.6 crates:sha2/0.10.6
Copyright (c) 2016 Artyom Pavlov
Copyright (c) 2009-2013 Mozilla Foundation
Copyright (c) 2006-2009 Graydon Hoare
RustCrypto/traits 0.1.6 crates:crypto-common/0.1.6
Copyright (c) 2021 RustCrypto Developers
Rusty Object Notation 0.8.0 crates:ron/0.8.0
Copyright (c) 2017 RON developers
SergioBenitez/version_check 0.9.4 crates:version_check/0.9.4
Copyright (c) 2017-2018 Sergio Benitez
XAMPPRocky/tokei 12.1.2 crates:tokei/12.1.2
Copyright 2016 Erin Power
Copyright (c) 2016 Erin Power
abonander/mime_guess 2.0.4 crates:mime_guess/2.0.4
Copyright (c) 2015 Austin Bonander
alexcrichton/cfg-if 1.0.0 crates:cfg-if/1.0.0
Copyright (c) 2014 Alex Crichton
alexcrichton/openssl-probe 0.1.5 crates:openssl-probe/0.1.5
Copyright (c) 2014 Alex Crichton
alexcrichton/socket2-rs 0.4.9 crates:socket2/0.4.9
Copyright (c) 2014 Alex Crichton
Copyright 2015 The Rust Project Developers.
android_system_properties 0.1.5 crates:android_system_properties/0.1.5
Copyright 2016 Nicolas Silva
Copyright (c) 2013 Nicolas Silva
anstyle-parse 0.2.0 crates:anstyle-parse/0.2.0
Copyright (c) 2016 Joe Wilm and individual contributors
Copyright {yyyy
anstyle-query 1.0.0 crates:anstyle-query/1.0.0
Copyright {yyyy
Copyright (c) Individual contributors
autocfg 1.1.0 crates:autocfg/1.1.0
Copyright (c) 2018 Josh Stone
bitflags 1.3.2 crates:bitflags/1.3.2
Copyright (c) 2014 The Rust Project Developers
bluss/maplit 1.0.2 crates:maplit/1.0.2
Copyright (c) 2015
bluss/scopeguard 1.1.0 crates:scopeguard/1.1.0
Copyright (c) 2016-2019 Ulrik Sverdrup "bluss" and scopeguard developers
briansmith/ring 0.16.20 crates:ring/0.16.20
Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved
Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved
Copyright remains Eric Young * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * Th
Copyright (c) 2014, Intel Corporation. All Rights Reserved
Copyright 2009-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright (C) 1995-1998 Eric Young ([email protected]) * All rights reserved
Copyright (c) 2014 The OpenSSL Project. All rights reserved
Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright (c) 2015, CloudFlare Ltd.
Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved
Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright 2016 Brian Smith. * * 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
Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved
Copyright (c) 2020, Google Inc. * * 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 no
Copyright 2010-2018 The OpenSSL Project Authors. All Rights Reserved
Copyright (c) 2019, Google Inc. * * 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 no
Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved
Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright (c) 2016, Google Inc. * * 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 no
Copyright (c) 2014, Google Inc. * * 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 no
Copyright (c) 2015-2016 the fiat-crypto authors (see
Copyright (c) 2015, Google Inc. * * 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 no
Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED
Copyright 2016 The OpenSSL Project Authors. All Rights Reserved
Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved
Copyright 2010-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright 2015-2016 Brian Smith.
Copyright (c) 2014, Intel Corporation. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyr
Copyright 2020 Brian Smith.
Copyright 2016 Dirkjan Ochtman.
Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved
Copyright (C) 1995-1997 Eric Young ([email protected]) * All rights reserved
Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved
Copyright (c) 2015 CloudFlare, Inc.
Copyright 2016-2017 Brian Smith. * * 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 n
briansmith/untrusted 0.7.1 crates:untrusted/0.7.1
Copyright 2015-2016 Brian Smith.
briansmith/webpki 0.22.0 crates:webpki/0.22.0
Copyright 2015 Brian Smith.
Copyright 2016 Joseph Birr-Pixton.
bytecount 0.6.3 crates:bytecount/0.6.3
Copyright {yyyy
cargo-lock 8.0.3 crates:cargo-lock/8.0.3
Copyright (c) 2019-2022 The RustSec Project Developers
Copyright (c) 2015-2016 Steven Fackler
Copyright (c) 2014 The Rust Project Developers
chrono-tz 0.6.3 crates:chrono-tz/0.6.3
Copyright (c) 2016 Djzin
Copyright 1989 The Regents of the University of California. All rights reserved
Copyright 2016 Djzin
Copyright 1985, 1987, 1988 The Regents of the University of California. All rights reserved
colorchoice 1.0.0 crates:colorchoice/1.0.0
Copyright {yyyy
Copyright (c) Individual contributors
contain-rs/vec-map 0.8.2 crates:vec_map/0.8.2
Copyright (c) 2015 The Rust Project Developers
crossbeam-channel 0.5.8 crates:crossbeam-channel/0.5.8
COPYRIGHT//! - https://www.rust-lang.org/en-US/legal.html
Copyright (c) 2009 The Go Authors
Copyright (c) 2019 The Crossbeam Project Developers
Copyright 2013-2014 The Rust Project Developers
copyright or rights arising fromlimitations or exceptions that are provided for in connection with the
Copyright (c) 2009 The Go Authors. All rights reserved
copyright protection under copyright law or other applicable laws.
Copyright Convention (as revised on July 24, 1971).
copyright in the Work).
ctz/sct.rs 0.7.0 crates:sct/0.7.0
Copyright (c) 2016, Joseph Birr-Pixton <[email protected]>
Copyright (c) 2016 Joseph Birr-Pixton <[email protected]>
dashmap 4.0.2 crates:dashmap/4.0.2
Copyright (c) 2019 Acrimon
dguo/strsim-rs 0.10.0 crates:strsim/0.10.0
Copyright (c) 2016 Titus Wormer <[email protected]>
Copyright (c) 2015 Danny Guo
Copyright (c) 2018 Akash Kurdekar
dguo/strsim-rs 0.8.0 crates:strsim/0.8.0
Copyright (c) 2016 Titus Wormer <[email protected]>
Copyright (c) 2015 Danny Guo
dirs 3.0.2 crates:dirs/3.0.2
Copyright (c) 2018-2019 dirs-rs contributors
dirs-sys 0.3.7 crates:dirs-sys/0.3.7
Copyright (c) 2018-2019 dirs-rs contributors
encoding_rs_io 0.1.7 crates:encoding_rs_io/0.1.7
Copyright (c) 2015 Andrew Gallant
env_logger 0.8.4 crates:env_logger/0.8.4
Copyright (c) 2014 The Rust Project Developers
errno-dragonfly 0.1.2 crates:errno-dragonfly/0.1.2
Copyright (c) 2017 Michael Neumann
foreign-types 0.1.1 crates:foreign-types-shared/0.1.1
Copyright {yyyy
Copyright (c) 2017 The foreign-types Developers
foreign-types 0.3.2 crates:foreign-types/0.3.2
Copyright {yyyy
Copyright (c) 2017 The foreign-types Developers
futures-task 0.3.28 crates:futures-task/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
generic-array 0.14.7 crates:generic-array/0.14.7
Copyright (c) 2015 Bart
glob 0.3.1 crates:glob/0.3.1
Copyright (c) 2014 The Rust Project Developers
Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
Copyright 2014 The Rust Project Developers. See the COPYRIGHT
globwalk 0.8.1 crates:globwalk/0.8.1
Copyright (c) 2017 Gilad Naaman
heck 0.4.1 crates:heck/0.4.1
Copyright (c) 2015 The Rust Project Developers
hex 0.4.3 crates:hex/0.4.3
Copyright (c) 2015-2020 The rust-hex Developers
Copyright {yyyy
Copyright (c) 2013-2014 The Rust Project Developers.
humansize 1.1.1 crates:humansize/1.1.1
Copyright (c) 2014 Alex Crichton
humantime-serde 1.1.1 crates:humantime-serde/1.1.1
Copyright (c) 2017 The serde-humantime Developers
hyper-tls 0.5.0 crates:hyper-tls/0.5.0
Copyright (c) 2017 Sean McArthur
hyperium/http-body 0.4.5 crates:http-body/0.4.5
Copyright (c) 2019 Hyper Contributors
instant 0.1.12 crates:instant/0.1.12
Copyright (c) 2019, SAll rights reserved
jedisct1/rust-siphash 0.3.10 crates:siphasher/0.3.10
Copyright 2016-2021 Frank Denis.
Copyright 2012-2016 The Rust Project Developers.
Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
Copyright 2014 The Rust Project Developers. See the COPYRIGHT
libssh2-sys 0.2.23 crates:libssh2-sys/0.2.23
Copyright (c) 2010 Simon Josefsson <[email protected]> * All rights reserved
Copyright (c) 2004-2007, 2019, Sara Golemon <[email protected]>
copyright year checks against the year # the file was last committed (and thus edited to some degree). my $commityear = undef;
Copyright (C) 2010-2019 Daniel Stenberg * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: * *
copyright-free. * Extended for CLIB support by Guenter Knauf. * *********************************************************************/
Copyright (c) 2016, Art <https://github.com/wildart> * All rights reserved
Copyright (C) 1996-2003 Free Software Foundation, Inc.dnl This file is free software; the Free Software Foundationdnl gives unlimited permission to copy and/or distribute it,dnl with or without mod
Copyright 1997 Niels Provos <[email protected]> * All rights reserved
Copyright (c) 2004-2007, Sara Golemon <[email protected]>
Copyright (c) 2006-2007 The Written Word, Inc.
Copyright (c) 2010-2019, Daniel Stenberg <[email protected]> * All rights reserved
copyright year checking on all # files would cause hundreds of errors. Instead we only look at files # which are tracked in the Git repo and edited in the workdir, or # committ
Copyright (C) 2009-2010 by Daniel Stenberg * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following conditions are met: *
Copyright (c) 2009-2019 by Daniel Stenberg * All rights reserved
Copyright year out of date, should be "is $copyright[0]{year}", 1); }
copyright Robert de Bath, Joris van Rantwijk, Delian * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas * Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, * Markus Kuh
Copyright (c) 2008-2019 by Daniel Stenberg * * All rights reserved
Copyright (c) 2009-2010 by Daniel Stenberg * All rights reserved
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 FreeSoftware Foundation, Inc.
Copyright (C) 2009-2010 by Daniel Stenberg * Author: Daniel Stenberg <[email protected]> * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided
Copyright (c) 2008-2010 by Daniel Stenberg * * All rights reserved
Copyright (C) 2006, 2007 The Written Word, Inc. All rights reserved
Copyright (C) 2006, 2007, The Written Word, Inc. * All rights reserved
Copyright (c) 2009-2014 by Daniel Stenberg * All rights reserved
Copyright (C) 2010 Simon Josefsson <[email protected]> * All rights reserved
COPYRIGHT -AFOPENMODE
Copyright (c) 2015 Microsoft Corp. * All rights reserved
Copyright (c) 2009 by Daiki Ueno
Copyright (C) 2007 The Written Word, Inc. All rights reserved
Copyright (C) 2010 Simon Josefsson * Author: Simon Josefsson * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the following co
Copyright (c) 2004-2008, Sara Golemon <[email protected]> * All rights reserved
Copyright (c) 2004-2006, Sara Golemon <[email protected]>
Copyright (c) 2010 Simon Josefsson * All rights reserved
copyright)) { checkwarn("COPYRIGHT", 1, 0, }
Copyright (C) 2008, 2010 Simon Josefsson * All rights reserved
Copyright (c) 2010-2014, Daniel Stenberg <[email protected]> * All rights reserved
Copyright (c) 2004-2006, Sara Golemon <[email protected]> * * Author: Simon Josefsson
Copyright (C) 2008, 2009 Simon Josefsson
COPYRIGHT \ -AFOPENMODE -Wsrc/libssh2_config.h src/
Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland * All rights reserved
Copyright (c) 2010-2014 by Daniel Stenberg * All rights reserved
Copyright (C) 2004, 2006 Simon Josefsson
Copyright (C) 2020 Patrick Monnerat <[email protected]>. * All rights reserved
Copyright (c) 2009-2015 by Daniel Stenberg
Copyright (c) 2004-2008, 2010, Sara Golemon <[email protected]>
Copyright (c) 2009-2010 by Daniel Stenberg
Copyright (c) 2004-2007, Sara Golemon <[email protected]> * All rights reserved
copyright = sort
Copyright (c) 2005 Mikhail Gusarov <[email protected]>
Copyright (C) 2016 Alexander Lamaison * All rights reserved
Copyright (c) 2005,2006 Mikhail Gusarov <[email protected]>
Copyright (C) 2010-2014 by Daniel Stenberg * All rights reserved
Copyright (c) 2009-2019 by Daniel Stenberg
Copyright (c) 2005,2006 Mikhail Gusarov
Copyright (c) 2007 Eli Fant <[email protected]>
Copyright (c) 2009-2021 Daniel Stenberg
COPYRIGHT' => 'file missing a copyright statement 'BADCOMMAND' => 'bad !checksrc! instruction', 'UNUSEDIGNORE' => 'a warning ignore was not used', 'OPENCOMMENT' => 'f
Copyright (C) 2008, 2009, 2010 Simon Josefsson
Copyright (C) 2011 - 2018, Daniel Stenberg, <[email protected]>, et al.
Copyright (c) 2004-2006, Sara Golemon <[email protected]> * All rights reserved
Copyright (c) 2013 Ted Unangst <[email protected]> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above
Copyright (C) 2001-2005 Free Software Foundation, Inc.dnl This file is free software; the Free Software Foundationdnl gives unlimited permission to copy and/or distribute it,dnl with or without mod
Copyright (c) 2004-2009, Sara Golemon <[email protected]>
copyright) && $copyright checkwarn("COPYRIGHTYEAR", $copyright[0]{line}, $copyright[0]{col}, $file, $copyright[0]{code},
Copyright (c) 2010 Lars Nordin <[email protected]>
Copyright (c) 2000 Markus Friedl. All rights reserved
Copyright (C) 2015 Patrick Monnerat, D * All rights reserved
Copyright (c) 2009-2014 by Daniel Stenberg
Copyright (C) 2001-2007 Free Software Foundation, Inc.dnl This file is free software; the Free Software Foundationdnl gives unlimited permission to copy and/or distribute it,dnl with or without mod
Copyright (c) 2009, 2010 Simon Josefsson <[email protected]>
Copyright (c) 2009-2019 by Daniel Stenberg * * All rights reserved
Copyright (c) 2004-2007 Sara Golemon <[email protected]>
Copyright (C) 2009, 2010 Simon Josefsson
Copyright (C) 2010 by Daniel Stenberg * Author: Daniel Stenberg <[email protected]> * * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * th
Copyright (c) 2014 Alexander Lamaison <[email protected]>
Copyright (c) 2004-2008, Sara Golemon <[email protected]>
copyright year incorrect );
copyright=(); checksrc_clear(); accept_violations();
Copyright (c) 2009-2015 Daniel Stenberg
Copyright (C) 2008, Simon Josefsson * All rights reserved
Copyright (C) 2013-2020 Marc Hoersken <[email protected]> * All rights reserved
Copyright (C) 2008, 2009, Simon Josefsson
copyright years are
Copyright (c) 2000 Markus Friedl
Copyright (C) 2007 The Written Word, Inc.
Copyright (C) 2009 Daniel Stenberg. All rights reserved
Copyright (C) 2010 - 2012 by Daniel Stenberg * Author: Daniel Stenberg <[email protected]> * * Redistribution and use in source and binary forms, * with or without modification, are permitted provide
Copyright (c) 2010 Simon Josefsson * All rights reserved
Copyright (C) 2015-2016 Patrick Monnerat, D
mgeisler/textwrap 0.11.0 crates:textwrap/0.11.0
Copyright (c) 2016 Martin Geisler
mvdnes/spin-rs 0.5.2 crates:spin/0.5.2
Copyright (c) 2014 Mathijs van de Nes
native-tls 0.2.11 crates:native-tls/0.2.11
Copyright {yyyy
Copyright (c) 2016 The rust-native-tls Developers
normalize-line-endings 0.3.0 crates:normalize-line-endings/0.3.0
Copyright {yyyy
nox/serde_urlencoded 0.7.1 crates:serde_urlencoded/0.7.1
Copyright (c) 2016 Anthony Ramine
num-bigint 0.4.3 crates:num-bigint/0.4.3
Copyright (c) 2014 The Rust Project Developers
num-format 0.4.4 crates:num-format/0.4.4
Copyright 2018 Brian Myers
Copyright (c) 2018 Brian Myers
num-integer 0.1.45 crates:num-integer/0.1.45
Copyright (c) 2014 The Rust Project Developers
Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
num-traits 0.2.15 crates:num-traits/0.2.15
Copyright (c) 2014 The Rust Project Developers
Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
openssl-macros 0.1.1 crates:openssl-macros/0.1.1
Copyright (c) 2022 Steven Fackler
Copyright {yyyy
paholg/typenum 1.16.0 crates:typenum/1.16.0
Copyright (c) 2014 Paho Lurie-Gregg
Copyright 2014 Paho Lurie-Gregg
parking_lot 0.11.2 crates:parking_lot/0.11.2
Copyright (c) 2016 The Rust Project Developers
parking_lot 0.12.1 crates:parking_lot/0.12.1
Copyright 2016 Amanieu d
Copyright (c) 2016 The Rust Project Developers
parking_lot_core 0.8.6 crates:parking_lot_core/0.8.6
Copyright 2016 Amanieu d
Copyright (c) 2016 The Rust Project Developers
parse-zoneinfo 0.3.0 crates:parse-zoneinfo/0.3.0
Copyright (c) 2017 Djzin
pem 1.1.1 crates:pem/1.1.1
Copyright 2017 Jonathan Creekmore
Copyright 2016-2017 Jonathan Creekmore
pin-utils 0.1.0 crates:pin-utils/0.1.0
Copyright 2018 The pin-utils authors
Copyright (c) 2018 The pin-utils authors
platforms 3.0.2 crates:platforms/3.0.2
Copyright (c) 2018-2020 The Rust Secure Code Working Group
ppv-lite86 0.2.17 crates:ppv-lite86/0.2.17
Copyright (c) 2019 The CryptoCorrosion Contributors
Copyright 2019 The CryptoCorrosion Contributors
proc-macro-error 1.0.4 crates:proc-macro-error/1.0.4
Copyright 2019-2020 CreepySkeleton <[email protected]>
Copyright (c) 2019-2020 CreepySkeleton
proc-macro-error-attr 1.0.4 crates:proc-macro-error-attr/1.0.4
Copyright 2019-2020 CreepySkeleton <[email protected]>
Copyright (c) 2019-2020 CreepySkeleton
rand_chacha 0.3.1 crates:rand_chacha/0.3.1
Copyright 2018 Developers of the Rand project
copyright assignment is required to contribute to the Rand project.
Copyright (c) 2014 The Rust Project Developers
rand_core 0.6.4 crates:rand_core/0.6.4
Copyright 2018 Developers of the Rand project.
Copyright 2018 Developers of the Rand project
Copyright 2019 Developers of the Rand project.
copyright assignment is required to contribute to the Rand project.
Copyright 2017-2018 The Rust Project Developers.
Copyright (c) 2014 The Rust Project Developers
redox-os 0.2.16 crates:redox_syscall/0.2.16
Copyright (c) 2017 Redox OS Developers
redox-os 0.3.5 crates:redox_syscall/0.3.5
Copyright (c) 2017 Redox OS Developers
redox_users 0.4.3 crates:redox_users/0.4.3
Copyright (c) 2017 Jose Narvaez
retry-policies 0.1.2 crates:retry-policies/0.1.2
Copyright (c) 2021 TrueLayer
ripgrep 0.1.11 crates:grep-searcher/0.1.11
Copyright (c) 2015 Andrew Gallant
ripgrep 0.1.6 crates:grep-matcher/0.1.6
Copyright (c) 2015 Andrew Gallant
rust-aho-corasick 0.7.20 crates:aho-corasick/0.7.20
Copyright (c) 2015 Andrew Gallant
rust-ansi-term v0.12.1 crates:ansi_term/0.12.1
Copyright (c) 2014 Benjamin Sago
rust-base64 0.13.1 crates:base64/0.13.1
Copyright (c) 2015 Alice Maz
rust-itertools/itertools 0.10.5 crates:itertools/0.10.5
Copyright (c) 2015
rust-lang-nursery/futures-rs 0.3.28 crates:futures-channel/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2010-2011 Dmitry Vyukov. All rights reserved
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures-core/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures-executor/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures-io/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures-macro/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures-sink/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures-util/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang-nursery/futures-rs 0.3.28 crates:futures/0.3.28
Copyright (c) 2016 Alex Crichton
Copyright (c) 2017 The Tokio Authors
rust-lang/git2-rs 0.16.1 crates:git2/0.16.1
Copyright (c) 2014 Alex Crichton
rust-lang/hashbrown v0.12.3 crates:hashbrown/0.12.3
Copyright (c) 2016 Amanieu d
rust-random/rand 0.8.5 crates:rand/0.8.5
Copyright 2018 Developers of the Rand project.
Copyright 2018 Developers of the Rand project
Copyright 2013 The Rust Project Developers.
copyright assignment is required to contribute to the Rand project.
Copyright 2018-2020 Developers of the Rand project.
Copyright (c) 2014 The Rust Project Developers
Copyright 2017 The Rust Project Developers.
Copyright 2013-2017 The Rust Project Developers.
Copyright 2021 Developers of the Rand project.
rustls-pemfile 1.0.2 crates:rustls-pemfile/1.0.2
Copyright (c) 2016, Joseph Birr-Pixton <[email protected]>
Copyright (c) 2016 Joseph Birr-Pixton <[email protected]>
rustls-webpki 0.100.1 crates:rustls-webpki/0.100.1
Copyright 2015 Brian Smith.
Copyright 2014-2017 Brian Smith.
Copyright 2015-2020 Brian Smith.
Copyright 2015-2021 Brian Smith.
Copyright 2016 Joseph Birr-Pixton.
Copyright 2022 Rafael Fern
Copyright 2015-2016 Brian Smith.
schemars_derive 0.8.12 crates:schemars_derive/0.8.12
Copyright (c) 2014 The Rust Project Developers
Copyright (c) 2019 Graham Esau
seanmonstar/httparse 1.8.0 crates:httparse/1.8.0
Copyright (c) 2015-2021 Sean McArthur
seanmonstar/try-lock 0.2.4 crates:try-lock/0.2.4
Copyright (c) 2016 Alex Crichton
Copyright (c) 2018 Sean McArthur
seanmonstar/unicase 2.6.0 crates:unicase/2.6.0
Copyright (c) 2014-2017 Sean McArthur
seanmonstar/want 0.3.0 crates:want/0.3.0
Copyright (c) 2018-2019 Sean McArthur
servo/core-foundation-rs 0.9.3 crates:core-foundation/0.9.3
Copyright (c) 2012-2013 Mozilla Foundation
servo/rust-fnv 1.0.7 crates:fnv/1.0.7
Copyright (c) 2017 Contributors
servo/rust-smallvec 1.10.0 crates:smallvec/1.10.0
Copyright (c) 2018 The Servo Project Developers
shlex 1.1.0 crates:shlex/1.1.0
Copyright (c) 2015 Nicholas Allegra (comex).
Copyright 2015 Nicholas Allegra (comex).
signal-hook-registry 1.4.1 crates:signal-hook-registry/1.4.1
Copyright (c) 2017 tokio-jsonrpc developers
simple_asn1 0.6.2 crates:simple_asn1/0.6.2
Copyright (c) 2017 Adam Wick
slug 0.1.4 crates:slug/0.1.4
Copyright (c) 2015 Steven Allen
softprops/atty 0.2.14 crates:atty/0.2.14
Copyright (c) 2015-2019 Doug Tangren
tailhook/humantime 2.1.0 crates:humantime/2.1.0
copyright:Copyright (c) 2016 Pyfisch
copyright:Copyright
Copyright (c) 2016 The humantime Developers
Copyright {yyyy
task-local-extensions 0.1.4 crates:task-local-extensions/0.1.4
Copyright (c) 2021 TrueLayer
term_size 0.3.2 crates:term_size/0.3.2
Copyright (c) 2015-2016 Kevin B. Knapp
test-case 3.1.0 crates:test-case/3.1.0
Copyright (c) 2017 Marcin Sas-Szyma
test-case-core 3.1.0 crates:test-case-core/3.1.0
Copyright (c) 2017 Marcin Sas-Szyma
test-case-macros 3.1.0 crates:test-case-macros/3.1.0
Copyright (c) 2017 Marcin Sas-Szyma
time 0.1.45 crates:time/0.1.45
Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
Copyright (c) 2014 The Rust Project Developers
tinyvec_macros 0.1.1 crates:tinyvec_macros/0.1.1
Copyright (c) 2020 Soveu
tokio-native-tls 0.3.1 crates:tokio-native-tls/0.3.1
Copyright (c) 2019 Tokio Contributors
toml-rs 0.5.11 crates:toml/0.5.11
Copyright 2017 Serde Developers
Copyright (c) 2014 Alex Crichton
tower-rs/tower 0.3.2 crates:tower-service/0.3.2
Copyright (c) 2019 Tower Contributors
tracing 0.1.37 crates:tracing/0.1.37
Copyright (c) 2019 Tokio Contributors
tracing-log 0.1.3 crates:tracing-log/0.1.3
Copyright (c) 2019 Tokio Contributors
tracing-opentelemetry 0.17.4 crates:tracing-opentelemetry/0.17.4
Copyright (c) 2019 Tokio Contributors
unicode-rs/unicode-normalization 0.1.22 crates:unicode-normalization/0.1.22
Copyright 2012-2018 The Rust Project Developers. See the COPYRIGHT
Copyright 2011-2018 The Rust Project Developers. See the COPYRIGHT
Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
Copyright 2019 The Rust Project Developers. See the COPYRIGHT
Copyright (c) 2015 The Rust Project Developers
utf8parse 0.2.1 crates:utf8parse/0.2.1
Copyright (c) 2016 Joe Wilm
vcpkg-rs 0.2.15 crates:vcpkg/0.2.15
Copyright (c) 2017 Jim McGrath
wait-timeout 0.2.0 crates:wait-timeout/0.2.0
Copyright (c) 2014 Alex Crichton
winapi-rs 0.3.9 crates:winapi/0.3.9
Copyright (c) 2015-2018 The winapi-rs Developers
Copyright {yyyy
winapi-util 0.1.5 crates:winapi-util/0.1.5
Copyright (c) 2017 Andrew Gallant
windows 0.48.0 crates:windows/0.48.0
Copyright)(::windows::core::Interface::as_raw(self), } pub unsafe fn MaxItemCount(&self) -> ::windows::core::Result<i32> { let mut result__ = ::windows::core::zeroed::<i32>();
Copyright(&self) -> ::windows::core::Result<::windows::core::BSTR> let mut result__ = ::windows::core::zeroed::<::windows::core::BSTR>();
copyright: *mut ::windows::core::PWSTR) -> ::windows::core::HRESULT, #[cfg(feature = "Win32_Foundation")] pub IsList: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbislist: *mut s
Copyright: u32 = 16411u32;
COPYRIGHT { fn eq(
COPYRIGHT {}impl ::core::clone::Clone for DMUS_COPYRIGHT fn clone(&self) -> Self { *self }
Copyright: ::windows::core::PCWSTR = ::windows::core::w#[doc = "*Required features: `\"Win32_Media_DeviceManager\"`*"]pub const g_wszWMDMQualitySetting: ::windows::core::PCWSTR = ::windows::core::w!
Copyright<Identity: ::windows::core::IUnknownImpl<Impl = Impl>, Impl: IXFeed_Impl, const OFFSET: isize>(this:
Copyright: Copyright::<Identity, Impl, OFFSET>, IsList: IsList::<Identity, Impl, OFFSET>, GetWatcher: GetWatcher::<Identity, Impl, OFFSET>, UnreadItemCount: UnreadI
Copyright<Identity: ::windows::core::IUnknownImpl<Impl = Impl>, Impl: IFeed_Impl, const OFFSET: isize>(this:
Copyright Info");#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*"]pub const WIA_DPC_DIGITAL_ZOOM: u32 = 2078u32;#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*
Copyright() { ::core::result::Result::Ok(ok__) => ::core::ptr::write(copyright, ::core::mem::transmute(ok__)); ::windows::core::HRESULT(0)
Copyright: ::windows::core::PCWSTR = ::windows::core::w#[doc = "*Required features: `\"Win32_Media_WindowsMediaFormat\"`*"]pub const g_wszWMProviderRating: ::windows::core::PCWSTR = ::windows::core:
Copyright == other.byCopyright }
Copyright: unsafe extern "system" fn(this:
COPYRIGHT { fn fmt( f.debug_struct("DMUS_COPYRIGHT").field("cbSize", &self.cbSize).field("byCopyright", &self.byCopyright).finish() }
Copyright (c) Microsoft Corporation.
Copyright(&self) -> ::windows::core::Result<::windows::core::PWSTR>; fn IsList(&self) -> ::windows::core::Result<super::super::Foundation::BOOL>; fn GetWatcher(&self, scope: FEEDS_EVENTS_SCOPE
Copyright)(::windows::core::Interface::as_raw(self), } #[doc = "*Required features: `\"Win32_Foundation\"`*"] #[cfg(feature = "Win32_Foundation")] pub unsafe fn IsList(&self) -> ::wind
COPYRIGHT: i32 = 11i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"]pub const PIDMSI_EDITOR: i32 = 2i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage
copyright: *mut ::std::mem::MaybeUninit<::windows::core::BSTR>) -> ::windows::core::HRESULT let this = (this as *const *const ()).offset(OFFSET) as *const Identity; let this =
Copyright() { ::core::result::Result::Ok(ok__) => ::core::ptr::write(ppszcopyright, ::core::mem::transmute(ok__)); ::windows::core::HRESULT(0)
COPYRIGHT: u32 = 2u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const ACM_MPEG_DUALCHANNEL: u32 = 4u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const A
Copyright: Copyright::<Identity, Impl, OFFSET>, MaxItemCount: MaxItemCount::<Identity, Impl, OFFSET>, SetMaxItemCount: SetMaxItemCount::<Identity, Impl, OFFSET>, Do
COPYRIGHT: i32 = 8192i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI_INFO_FILE: i32 = 512i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI
copyright: *mut ::windows::core::PWSTR) -> ::windows::core::HRESULT let this = (this as *const *const ()).offset(OFFSET) as *const Identity; let this = (*this).get_impl();
Copyright(&self) -> ::windows::core::Result<::windows::core::PWSTR> let mut result__ = ::windows::core::zeroed::<::windows::core::PWSTR>();
COPYRIGHT: i32 = 16396i32;
COPYRIGHT { pub cbSize: u32, pub byCopyright: [u8; 4],}
COPYRIGHT {}impl ::core::default::Default for DMUS_COPYRIGHT fn default() -> Self { unsafe { ::core::mem::zeroed() } }
Copyright: ::windows::core::PCWSTR = ::windows::core::w#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`*"]pub const NAME_GenericObj_Corrupt: ::windows::core::PCWSTR = ::windows::core
COPYRIGHT { type TypeKind = ::windows::core::CopyType;}
COPYRIGHT: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`, `\"Win32_UI
Copyright: ::windows::core::PCWSTR = ::windows::core::w
Copyright: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Storage_EnhancedStorage\"`, `\"Win32_UI
copyright: *mut ::std::mem::MaybeUninit<::windows::core::BSTR>) -> ::windows::core::HRESULT, pub MaxItemCount: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, count: *mut i32) -> ::windo
Copyright(&self) -> ::windows::core::Result<::windows::core::BSTR>; fn MaxItemCount(&self) -> ::windows::core::Result<i32>; fn SetMaxItemCount(&self, count: i32) -> ::windows::core::Result<()>
windows-sys 0.42.0 crates:windows-sys/0.42.0
Copyright (c) Microsoft Corporation.
Copyright: &str = "WMDM/ProviderCopyright";#[doc = "*Required features: `\"Win32_Media_DeviceManager\"`*"]pub const g_wszWMDMQualitySetting: &str = "WMDM/QualitySetting";#[doc = "*Required features
COPYRIGHT: i32 = 11i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"]pub const PIDMSI_EDITOR: i32 = 2i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage
Copyright: u32 = 16411u32;
COPYRIGHT {}impl ::core::clone::Clone for DMUS_COPYRIGHT fn clone(&self) -> Self { *self }
COPYRIGHT: &str = "Copyright";
COPYRIGHT: u32 = 2u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const ACM_MPEG_DUALCHANNEL: u32 = 4u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const A
COPYRIGHT: i32 = 8192i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI_INFO_FILE: i32 = 512i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI
Copyright Info";#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*"]pub const WIA_DPC_DIGITAL_ZOOM: u32 = 2078u32;#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*"
COPYRIGHT: i32 = 16396i32;
Copyright: &str = "WM/ProviderCopyright";
COPYRIGHT: u32 = 4u32;
COPYRIGHT { pub cbSize: u32, pub byCopyright: [u8; 4],}
COPYRIGHT: THEME_PROPERTY_SYMBOL_ID = 605u32;#[doc = "*Required features: `\"Win32_UI_Controls\"`*"]pub const TMT_URL: THEME_PROPERTY_SYMBOL_ID = 606u32;#[doc = "*Required features: `\"Win32_UI_Con
Copyright: &str = "Copyright";
COPYRIGHT: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`, `\"Win32_UI
Copyright: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Storage_EnhancedStorage\"`, `\"Win32_UI
Copyright: &str = "Copyright";#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`*"]pub const NAME_GenericObj_Corrupt: &str = "Corrupt";#[doc = "*Required features: `\"Win32_Devices_Po
Copyright: ::windows_sys::core::PWSTR, pub wMajorVersion: u16, pub wMinorVersion: u16, pub wBuildVersion: u16, pub wStepVersion: u16, pub dwInputContentTypesCount: u32, pub prg
windows-sys 0.45.0 crates:windows-sys/0.45.0
Copyright (c) Microsoft Corporation.
COPYRIGHT: i32 = 11i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"]pub const PIDMSI_EDITOR: i32 = 2i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage
Copyright: ::windows_sys::core::PCWSTR = ::windows_sys::w
Copyright: u32 = 16411u32;
COPYRIGHT {}impl ::core::clone::Clone for DMUS_COPYRIGHT fn clone(&self) -> Self { *self }
COPYRIGHT: u32 = 2u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const ACM_MPEG_DUALCHANNEL: u32 = 4u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const A
COPYRIGHT: i32 = 8192i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI_INFO_FILE: i32 = 512i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI
COPYRIGHT: i32 = 16396i32;
Copyright Info");#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*"]pub const WIA_DPC_DIGITAL_ZOOM: u32 = 2078u32;#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*
COPYRIGHT { pub cbSize: u32, pub byCopyright: [u8; 4],}
Copyright: ::windows_sys::core::PCWSTR = ::windows_sys::w#[doc = "*Required features: `\"Win32_Media_DeviceManager\"`*"]pub const g_wszWMDMQualitySetting: ::windows_sys::core::PCWSTR = ::windows_sys
COPYRIGHT: THEME_PROPERTY_SYMBOL_ID = 605u32;#[doc = "*Required features: `\"Win32_UI_Controls\"`*"]pub const TMT_URL: THEME_PROPERTY_SYMBOL_ID = 606u32;#[doc = "*Required features: `\"Win32_UI_Con
COPYRIGHT: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`, `\"Win32_UI
Copyright: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Storage_EnhancedStorage\"`, `\"Win32_UI
Copyright: ::windows_sys::core::PCWSTR = ::windows_sys::w#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`*"]pub const NAME_GenericObj_Corrupt: ::windows_sys::core::PCWSTR = ::windows
Copyright: ::windows_sys::core::PWSTR, pub wMajorVersion: u16, pub wMinorVersion: u16, pub wBuildVersion: u16, pub wStepVersion: u16, pub dwInputContentTypesCount: u32, pub prg
COPYRIGHT: ::windows_sys::core::PCWSTR = ::windows_sys::w
windows-sys 0.48.0 crates:windows-sys/0.48.0
Copyright (c) Microsoft Corporation.
Copyright: ::windows_sys::core::PCWSTR = ::windows_sys::core::w#[doc = "*Required features: `\"Win32_Media_DeviceManager\"`*"]pub const g_wszWMDMQualitySetting: ::windows_sys::core::PCWSTR = ::windo
COPYRIGHT: i32 = 11i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"]pub const PIDMSI_EDITOR: i32 = 2i32;#[doc = "*Required features: `\"Win32_System_Com_StructuredStorage
Copyright: u32 = 16411u32;
COPYRIGHT {}impl ::core::clone::Clone for DMUS_COPYRIGHT fn clone(&self) -> Self { *self }
COPYRIGHT: u32 = 2u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const ACM_MPEG_DUALCHANNEL: u32 = 4u32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const A
COPYRIGHT: i32 = 8192i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI_INFO_FILE: i32 = 512i32;#[doc = "*Required features: `\"Win32_Media_Multimedia\"`*"]pub const MCI
Copyright: ::windows_sys::core::PCWSTR = ::windows_sys::core::w
COPYRIGHT: i32 = 16396i32;
Copyright Info");#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*"]pub const WIA_DPC_DIGITAL_ZOOM: u32 = 2078u32;#[doc = "*Required features: `\"Win32_Devices_ImageAcquisition\"`*
COPYRIGHT { pub cbSize: u32, pub byCopyright: [u8; 4],}
COPYRIGHT: THEME_PROPERTY_SYMBOL_ID = 605u32;#[doc = "*Required features: `\"Win32_UI_Controls\"`*"]pub const TMT_URL: THEME_PROPERTY_SYMBOL_ID = 606u32;#[doc = "*Required features: `\"Win32_UI_Con
COPYRIGHT: ::windows_sys::core::PCWSTR = ::windows_sys::core::w
COPYRIGHT: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`, `\"Win32_UI
Copyright: super::super::UI::Shell::PropertiesSystem::PROPERTYKEY = super::super::UI::Shell::PropertiesSystem::PROPERTYKEY#[doc = "*Required features: `\"Win32_Storage_EnhancedStorage\"`, `\"Win32_UI
Copyright: ::windows_sys::core::PCWSTR = ::windows_sys::core::w#[doc = "*Required features: `\"Win32_Devices_PortableDevices\"`*"]pub const NAME_GenericObj_Corrupt: ::windows_sys::core::PCWSTR = ::w
Copyright: ::windows_sys::core::PWSTR, pub wMajorVersion: u16, pub wMinorVersion: u16, pub wBuildVersion: u16, pub wStepVersion: u16, pub dwInputContentTypesCount: u32, pub prg
windows-targets 0.42.2 crates:windows-targets/0.42.2
Copyright (c) Microsoft Corporation.
windows-targets 0.48.0 crates:windows-targets/0.48.0
Copyright (c) Microsoft Corporation.
windows_aarch64_gnullvm 0.42.2 crates:windows_aarch64_gnullvm/0.42.2
Copyright (c) Microsoft Corporation.
windows_aarch64_gnullvm 0.48.0 crates:windows_aarch64_gnullvm/0.48.0
Copyright (c) Microsoft Corporation.
windows_aarch64_msvc 0.42.2 crates:windows_aarch64_msvc/0.42.2
Copyright (c) Microsoft Corporation.
windows_i686_gnu 0.42.2 crates:windows_i686_gnu/0.42.2
Copyright (c) Microsoft Corporation.
windows_i686_gnu 0.48.0 crates:windows_i686_gnu/0.48.0
Copyright (c) Microsoft Corporation.
windows_i686_msvc 0.42.2 crates:windows_i686_msvc/0.42.2
Copyright (c) Microsoft Corporation.
windows_x86_64_gnu 0.42.2 crates:windows_x86_64_gnu/0.42.2
Copyright (c) Microsoft Corporation.
windows_x86_64_gnu 0.48.0 crates:windows_x86_64_gnu/0.48.0
Copyright (c) Microsoft Corporation.
windows_x86_64_gnullvm 0.42.2 crates:windows_x86_64_gnullvm/0.42.2
Copyright (c) Microsoft Corporation.
windows_x86_64_gnullvm 0.48.0 crates:windows_x86_64_gnullvm/0.48.0
Copyright (c) Microsoft Corporation.
windows_x86_64_msvc 0.42.2 crates:windows_x86_64_msvc/0.42.2
Copyright (c) Microsoft Corporation.
winreg 0.10.1 crates:winreg/0.10.1
Copyright (c) 2015 Igor Shaula
Licenses:
Apache License 2.0
(alexcrichton/cfg-if 1.0.0, alexcrichton/openssl-probe 0.1.5, alexcrichton/socket2-rs 0.4.9, android-tzdata 0.1.1, android_system_properties 0.1.5, anstream 0.3.2, anstyle 1.0.0, anstyle-parse 0.2.0, anstyle-query 1.0.0, anstyle-wincon 1.0.1, anyhow 1.0.71, async-graphql 2.11.3, async-recursion 1.0.4, async-trait 0.1.68, autocfg 1.1.0, bitflags 1.3.2, bluss/arrayvec 0.7.3, bluss/either 1.8.1, bluss/indexmap 1.9.3, bluss/maplit 1.0.2, bluss/scopeguard 1.1.0, BurntSushi/bstr 1.5.0, BurntSushi/ucd-generate 0.1.5, bytecount 0.6.3, cargo-lock 8.0.3, cargo_toml 0.15.3, chrono-tz 0.6.3, chrono-tz-build 0.0.3, chronotope/chrono 0.4.26, clap-rs/clap 4.3.2, clap-rs/clap 4.3.3, colorchoice 1.0.0, contain-rs/vec-map 0.8.2, content_inspector 0.2.4, crates-index 0.19.10, crossbeam-channel 0.5.8, crossbeam-deque 0.8.3, crossbeam-epoch 0.9.15, crossbeam-utils 0.8.16, ctz/sct.rs 0.7.0, cvss 2.0.0, digest 0.10.7, dirs 3.0.2, dirs-sys 0.3.7, dtolnay/itoa 1.0.6, dtolnay/quote 1.0.28, dtolnay/ryu 1.0.13, dunce 1.0.4, dyn-clone 1.0.11, encoding_rs_io 0.1.7, env_logger 0.8.4, errno 0.3.1, fastrand 1.9.0, foreign-types 0.1.1, foreign-types 0.3.2, fs-err 2.9.0, futures-task 0.3.28, glob 0.3.1, global_counter 0.2.2, heck 0.4.1, hermitcore/libhermit-rs 0.1.19, hermitcore/libhermit-rs 0.2.6, hex 0.4.3, httpdate 1.0.2, humansize 1.1.1, humantime-serde 1.1.1, hyper-rustls 0.24.0, hyper-tls 0.5.0, hyperium/http 0.2.9, iana-time-zone-haiku 0.1.2, io-lifetimes 1.0.11, jedisct1/rust-siphash 0.3.10, js-sys 0.3.64, lazy_static 1.4.0, libssh2-sys 0.2.23, linux-raw-sys 0.3.8, memmap2 0.5.10, native-tls 0.2.11, normalize-line-endings 0.3.0, nox/serde_urlencoded 0.7.1, num-bigint 0.4.3, num-format 0.4.4, num-integer 0.1.45, num-traits 0.2.15, open-telemetry/opentelemetry-rust 0.17.0, openssl-macros 0.1.1, ordian/toml_edit 0.19.10, paholg/typenum 1.16.0, parking_lot 0.11.2, parking_lot 0.12.1, parking_lot_core 0.8.6, pest-parser 2.6.0, pin-project 1.1.0, pin-project-internal 1.1.0, pin-project-lite 0.2.9, pin-utils 0.1.0, platforms 3.0.2, ppv-lite86 0.2.17, proc-macro-error 1.0.4, proc-macro-error-attr 1.0.4, rand_core 0.6.4, rayon 1.11.0, rayon 1.7.0, regex-syntax 0.7.2, reqwest-middleware 0.1.6, reqwest-retry 0.1.5, reqwest-tracing 0.3.1, retry-policies 0.1.2, rust-base64 0.13.1, rust-base64 0.21.2, rust-itertools/itertools 0.10.5, rust-lang-nursery/futures-rs 0.3.28, rust-lang/cargo 0.1.2, rust-lang/git2-rs 0.14.2+1.5.1, rust-lang/git2-rs 0.16.1, rust-lang/hashbrown v0.12.3, rust-libc 0.2.146, rust-random/rand 0.8.5, rust-regex 1.8.4, rust-url 0.4.0, rust-url 1.2.0, rust-url 2.3.0, rust-url 2.4.0, rustc-hash 1.1.0, RustCrypto/hashes 0.10.6, RustCrypto/traits 0.1.6, rustix 0.37.20, rustls 0.21.1, rustls-pemfile 1.0.2, rustsec 0.26.5, Rusty Object Notation 0.6.6, Rusty Object Notation 0.8.0, seanmonstar/httparse 1.8.0, seanmonstar/reqwest 0.11.18, seanmonstar/unicase 2.6.0, security-framework 2.9.1, semver 1.0.17, serde 0.26.0, serde_json 1.0.96, serde_path_to_error 0.1.11, serde_spanned 0.6.2, SergioBenitez/version_check 0.9.4, servo/core-foundation-rs 0.9.3, servo/rust-fnv 1.0.7, servo/rust-smallvec 1.10.0, shlex 1.1.0, signal-hook-registry 1.4.1, similar 2.2.1, slug 0.1.4, snapbox 0.4.11, snapbox-macros 0.3.4, syn 1.0.109, syn 2.0.18, tailhook/humantime 2.1.0, task-local-extensions 0.1.4, term_size 0.3.2, theduke/crates_io_api 0.8.1, thiserror 1.0.40, thiserror-impl 1.0.40, time 0.1.45, time-core 0.1.1, time-macros 0.2.9, tinyvec 1.6.0, tinyvec_macros 0.1.1, tokio-rustls 0.24.1, toml-rs 0.5.11, toml-rs 0.7.4, toml_datetime 0.6.2, trustfall 0.4.0, trustfall_core 0.4.0, trustfall_derive 0.3.0, trycmd 0.14.16, uncased 0.9.9, unic-char-property 0.9.0, unic-char-range 0.9.0, unic-common 0.9.0, unic-segment 0.9.0, unic-ucd-segment 0.9.0, unic-ucd-version 0.9.0, unicode-ident 1.0.9, unicode-rs/unicode-normalization 0.1.22, unicode-rs/unicode-width 0.1.10, utf8parse 0.2.1, vcpkg-rs 0.2.15, wait-timeout 0.2.0, wasi 0.10.0+wasi-snapshot-preview1, wasi 0.11.0+wasi-snapshot-preview1, wasm-bindgen 0.2.87, wasm-bindgen 0.3.64, wasm-bindgen 0.4.37, wasm-bindgen-macro 0.2.87, wasm-bindgen-macro-support 0.2.87, wasm-bindgen-shared 0.2.87, winapi-i686-pc-windows-gnu 0.4.0, winapi-rs 0.3.9, winapi-x86_64-pc-windows-gnu 0.4.0, windows 0.48.0, windows-sys 0.42.0, windows-sys 0.45.0, windows-sys 0.48.0, windows-targets 0.42.2, windows-targets 0.48.0, windows_aarch64_gnullvm 0.42.2, windows_aarch64_gnullvm 0.48.0, windows_aarch64_msvc 0.42.2, windows_i686_gnu 0.42.2, windows_i686_gnu 0.48.0, windows_i686_msvc 0.42.2, windows_x86_64_gnu 0.42.2, windows_x86_64_gnu 0.48.0, windows_x86_64_gnullvm 0.42.2, windows_x86_64_gnullvm 0.48.0, windows_x86_64_msvc 0.42.2, XAMPPRocky/tokei 12.1.2)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to