forked from Bayselonarrend/OpenIntegrations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOTICE
More file actions
2150 lines (1720 loc) · 47.4 KB
/
NOTICE
File metadata and controls
2150 lines (1720 loc) · 47.4 KB
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
OpenIntegrations / Открытый пакет интеграций
Copyright (c) 2024-2026 Anton Tsitavets
Licensed under the MIT License
Dependencies and imports:
vbondarevsky/Connector
* Copyright 2017-2023 Vladimir Bondarevskiy
* Licensed under the Apache License, Version 2.0
* https://github.com/vbondarevsky/Connector/
БСП
* Copyright (c) 2019, ООО 1С-Софт
* Licensed under the Attribution 4.0 International (CC BY 4.0)
* https://v8.1c.ru/tekhnologii/standartnye-biblioteki/1s-biblioteka-standartnykh-podsistem/
Docusaurus
* Copyright (c) Facebook, Inc. and its affiliates.
* Licensed under the MIT License
* https://github.com/facebook/docusaurus
YaxUNIT
* Copyright © 2023 BIA-Technologies Limited Liability Company
* Licensed under the Apache License, Version 2.0
* https://github.com/bia-technologies/yaxunit
1testrunner
* by Artur Ayukhanov (artbear)
* -
* https://github.com/artbear/1testrunner
asserts
* by oscript-library
* -
* https://github.com/oscript-library/asserts
coloratos
* by Vladimir Nadulich (240596448)
* -
* https://github.com/240596448/coloratos
cmdline
* by oscript-library
* -
* https://github.com/oscript-library/cmdline
ryu
* David Tolnay <dtolnay@gmail.com>
* Apache-2.0 OR BSL-1.0
* https://github.com/dtolnay/ryu
common-binary
*
* MIT
*
itoa
* David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/dtolnay/itoa
serde_core
* Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/serde-rs/serde
serde_json
* Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/serde-rs/json
base64
* Marshall Pierce <marshall@mpierce.org>
* MIT OR Apache-2.0
* https://github.com/marshallpierce/rust-base64
memchr
* Andrew Gallant <jamslam@gmail.com>, bluss
* Unlicense OR MIT
* https://github.com/BurntSushi/memchr
smallvec
* The Servo Project Developers
* MIT OR Apache-2.0
* https://github.com/servo/rust-smallvec
common-core
*
* MIT
*
addin1c
*
* MIT
* https://github.com/medigor/addin1c
utf16_lit
* Lokathor <zefria@gmail.com>
* Zlib OR Apache-2.0 OR MIT
* https://github.com/Lokathor/utf16_lit
common-core-macros
*
* MIT
*
proc-macro2
* David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/dtolnay/proc-macro2
quote
* David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/dtolnay/quote
syn
* David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/dtolnay/syn
unicode-ident
* David Tolnay <dtolnay@gmail.com>
* (MIT OR Apache-2.0) AND Unicode-3.0
* https://github.com/dtolnay/unicode-ident
cfg-if
* Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/alexcrichton/cfg-if
bitflags
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/bitflags/bitflags
uuid
* Ashley Mannix<ashleymannix@live.com.au>, Dylan DPC<dylan.dpc@gmail.com>, Hunar Roop Kahlon<hunar.roop@gmail.com>
* Apache-2.0 OR MIT
* https://github.com/uuid-rs/uuid
libc
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-lang/libc
hashbrown
* Amanieu d'Antras <amanieu@gmail.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/hashbrown
lock_api
* Amanieu d'Antras <amanieu@gmail.com>
* MIT OR Apache-2.0
* https://github.com/Amanieu/parking_lot
parking_lot_core
* Amanieu d'Antras <amanieu@gmail.com>
* MIT OR Apache-2.0
* https://github.com/Amanieu/parking_lot
equivalent
*
* Apache-2.0 OR MIT
* https://github.com/indexmap-rs/equivalent
scopeguard
* bluss
* MIT OR Apache-2.0
* https://github.com/bluss/scopeguard
redox_syscall
* Jeremy Soller <jackpot51@gmail.com>
* MIT
* https://gitlab.redox-os.org/redox-os/syscall
getrandom
* The Rand Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-random/getrandom
dashmap
* Joel Wejdenst├еl <jwejdenstal@icloud.com>
* MIT
* https://github.com/xacrimon/dashmap
common-dataset
*
* MIT
*
r-efi
*
* MIT OR Apache-2.0 OR LGPL-2.1-or-later
* https://github.com/r-efi/r-efi
wasip2
*
* Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
* https://github.com/bytecodealliance/wasi-rs
windows-link
*
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
wit-bindgen
* Alex Crichton <alex@alexcrichton.com>
* Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
* https://github.com/bytecodealliance/wit-bindgen
crossbeam-utils
*
* MIT OR Apache-2.0
* https://github.com/crossbeam-rs/crossbeam
openssl
* Steven Fackler <sfackler@gmail.com>
* Apache-2.0
* https://github.com/sfackler/rust-openssl
core-foundation-sys
* The Servo Project Developers
* MIT OR Apache-2.0
* https://github.com/servo/core-foundation-rs
core-foundation
* The Servo Project Developers
* MIT OR Apache-2.0
* https://github.com/servo/core-foundation-rs
form_urlencoded
* The rust-url developers
* MIT OR Apache-2.0
* https://github.com/servo/rust-url
idna
* The rust-url developers
* MIT OR Apache-2.0
* https://github.com/servo/rust-url/
percent-encoding
* The rust-url developers
* MIT OR Apache-2.0
* https://github.com/servo/rust-url/
url
* The rust-url developers
* MIT OR Apache-2.0
* https://github.com/servo/rust-url
cc
* Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/cc-rs
find-msvc-tools
*
* MIT OR Apache-2.0
* https://github.com/rust-lang/cc-rs
openssl-probe
* Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/alexcrichton/openssl-probe
openssl-sys
* Alex Crichton <alex@alexcrichton.com>, Steven Fackler <sfackler@gmail.com>
* MIT
* https://github.com/sfackler/rust-openssl
pkg-config
* Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/pkg-config-rs
errno
* Chris Wong <lambda.fairy@gmail.com>
* MIT OR Apache-2.0
* https://github.com/lambda-fairy/rust-errno
log
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-lang/log
tempfile
* Steven Allen <steven@stebalien.com>, The Rust Project Developers, Ashley Mannix <ashleymannix@live.com.au>, Jason White <me@jasonwhite.io>
* MIT OR Apache-2.0
* https://github.com/Stebalien/tempfile
socks
* Steven Fackler <sfackler@gmail.com>
* MIT OR Apache-2.0
* https://github.com/sfackler/rust-socks
schannel
* Steven Fackler <sfackler@gmail.com>, Steffen Butzer <steffen.butzer@outlook.com>
* MIT
* https://github.com/steffengy/schannel-rs
winapi
* Peter Atashian <retep998@gmail.com>
* MIT OR Apache-2.0
* https://github.com/retep998/winapi-rs
httparse
* Sean McArthur <sean@seanmonstar.com>
* MIT OR Apache-2.0
* https://github.com/seanmonstar/httparse
native-tls
* Steven Fackler <sfackler@gmail.com>
* MIT OR Apache-2.0
* https://github.com/sfackler/rust-native-tls
vcpkg
* Jim McGrath <jimmc2@gmail.com>
* MIT OR Apache-2.0
* https://github.com/mcgoo/vcpkg-rs
stable_deref_trait
* Robert Grosse <n210241048576@gmail.com>
* MIT OR Apache-2.0
* https://github.com/storyyeller/stable_deref_trait
foreign-types-shared
* Steven Fackler <sfackler@gmail.com>
* MIT OR Apache-2.0
* https://github.com/sfackler/foreign-types
foreign-types
* Steven Fackler <sfackler@gmail.com>
* MIT OR Apache-2.0
* https://github.com/sfackler/foreign-types
openssl-macros
*
* MIT OR Apache-2.0
*
idna_adapter
* The rust-url developers
* Apache-2.0 OR MIT
* https://github.com/hsivonen/idna_adapter
synstructure
* Nika Layzell <nika@thelayzells.com>
* MIT
* https://github.com/mystor/synstructure
utf8_iter
* Henri Sivonen <hsivonen@hsivonen.fi>
* Apache-2.0 OR MIT
* https://github.com/hsivonen/utf8_iter
common-tcp
*
* MIT
*
winapi-i686-pc-windows-gnu
* Peter Atashian <retep998@gmail.com>
* MIT OR Apache-2.0
* https://github.com/retep998/winapi-rs
winapi-x86_64-pc-windows-gnu
* Peter Atashian <retep998@gmail.com>
* MIT OR Apache-2.0
* https://github.com/retep998/winapi-rs
windows-sys
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
displaydoc
* Jane Lusby <jlusby@yaah.dev>
* MIT OR Apache-2.0
* https://github.com/yaahc/displaydoc
fastrand
* Stjepan Glavina <stjepang@gmail.com>
* Apache-2.0 OR MIT
* https://github.com/smol-rs/fastrand
linux-raw-sys
* Dan Gohman <dev@sunfishcode.online>
* Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
* https://github.com/sunfishcode/linux-raw-sys
once_cell
* Aleksey Kladov <aleksey.kladov@gmail.com>
* MIT OR Apache-2.0
* https://github.com/matklad/once_cell
rustix
* Dan Gohman <dev@sunfishcode.online>, Jakub Konka <kubkon@jakubkonka.com>
* Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
* https://github.com/bytecodealliance/rustix
serde
* Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/serde-rs/serde
serde_derive
* Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
* MIT OR Apache-2.0
* https://github.com/serde-rs/serde
byteorder
* Andrew Gallant <jamslam@gmail.com>
* Unlicense OR MIT
* https://github.com/BurntSushi/byteorder
shlex
* comex <comexk@gmail.com>, Fenhl <fenhl@fenhl.net>, Adrian Taylor <adetaylor@chromium.org>, Alex Touchet <alextouchet@outlook.com>, Daniel Parks <dp+git@oxidized.org>, Garrett Berg <googberg@gmail.com>
* MIT OR Apache-2.0
* https://github.com/comex/rust-shlex
security-framework-sys
* Steven Fackler <sfackler@gmail.com>, Kornel <kornel@geekhood.net>
* MIT OR Apache-2.0
* https://github.com/kornelski/rust-security-framework
security-framework
* Steven Fackler <sfackler@gmail.com>, Kornel <kornel@geekhood.net>
* MIT OR Apache-2.0
* https://github.com/kornelski/rust-security-framework
icu_collections
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
icu_locale_core
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
icu_normalizer
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
icu_normalizer_data
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
icu_properties
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
icu_properties_data
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
icu_provider
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
litemap
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
potential_utf
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
tinystr
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
writeable
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
yoke-derive
* Manish Goregaokar <manishsmail@gmail.com>
* Unicode-3.0
* https://github.com/unicode-org/icu4x
yoke
* Manish Goregaokar <manishsmail@gmail.com>
* Unicode-3.0
* https://github.com/unicode-org/icu4x
zerofrom-derive
* Manish Goregaokar <manishsmail@gmail.com>
* Unicode-3.0
* https://github.com/unicode-org/icu4x
zerofrom
* Manish Goregaokar <manishsmail@gmail.com>
* Unicode-3.0
* https://github.com/unicode-org/icu4x
zerotrie
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
zerovec-derive
* Manish Goregaokar <manishsmail@gmail.com>
* Unicode-3.0
* https://github.com/unicode-org/icu4x
zerovec
* The ICU4X Project Developers
* Unicode-3.0
* https://github.com/unicode-org/icu4x
common-utils
*
* MIT
*
subtle
* Isis Lovecruft <isis@patternsinthevoid.net>, Henry de Valence <hdevalence@hdevalence.ca>
* BSD-3-Clause
* https://github.com/dalek-cryptography/subtle
sha1
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/hashes
sha2
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/hashes
lazy_static
* Marvin L├╢bel <loebel.marvin@gmail.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang-nursery/lazy-static.rs
base64ct
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats
num-bigint-dig
* dignifiedquire <dignifiedquire@gmail.com>, The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/dignifiedquire/num-bigint
num-integer
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-num/num-integer
num-iter
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-num/num-iter
num-traits
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-num/num-traits
digest
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/traits
hmac
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/MACs
autocfg
* Josh Stone <cuviper@gmail.com>
* Apache-2.0 OR MIT
* https://github.com/cuviper/autocfg
block-buffer
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/utils
signature
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/traits/tree/master/signature
ppv-lite86
* The CryptoCorrosion Contributors
* MIT OR Apache-2.0
* https://github.com/cryptocorrosion/cryptocorrosion
const-oid
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats/tree/master/const-oid
der
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats/tree/master/der
pkcs8
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats/tree/master/pkcs8
cpufeatures
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/utils
crypto-common
* RustCrypto Developers
* MIT OR Apache-2.0
* https://github.com/RustCrypto/traits
pem-rfc7468
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats/tree/master/pem-rfc7468
pkcs1
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats/tree/master/pkcs1
spki
* RustCrypto Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/formats/tree/master/spki
rand
* The Rand Project Developers, The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-random/rand
rand_chacha
* The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors
* MIT OR Apache-2.0
* https://github.com/rust-random/rand
rand_core
* The Rand Project Developers, The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-random/rand
zerocopy
* Joshua Liebow-Feeser <joshlf@google.com>
* BSD-2-Clause OR Apache-2.0 OR MIT
* https://github.com/google/zerocopy
zeroize
* The RustCrypto Project Developers
* Apache-2.0 OR MIT
* https://github.com/RustCrypto/utils
opi_crypto
*
* MIT
*
libm
* Jorge Aparicio <jorge@japaric.io>
* MIT
* https://github.com/rust-lang/compiler-builtins
rsa
* RustCrypto Developers, dignifiedquire <dignifiedquire@gmail.com>
* MIT OR Apache-2.0
* https://github.com/RustCrypto/RSA
wasi
* The Cranelift Project Developers
* Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
* https://github.com/bytecodealliance/wasi-rs
spin
* Mathijs van de Nes <git@mathijs.vd-nes.nl>, John Ericson <git@JohnEricson.me>, Joshua Barretto <joshua.s.barretto@gmail.com>
* MIT
* https://github.com/mvdnes/spin-rs.git
typenum
* Paho Lurie-Gregg <paho@paholg.com>, Andre Bogus <bogusandre@gmail.com>
* MIT OR Apache-2.0
* https://github.com/paholg/typenum
version_check
* Sergio Benitez <sb@sergio.bz>
* MIT OR Apache-2.0
* https://github.com/SergioBenitez/version_check
generic-array
* Bart┼Вomiej Kami┼Дski <fizyk20@gmail.com>, Aaron Trent <novacrazy@gmail.com>
* MIT
* https://github.com/fizyk20/generic-array.git
clang-sys
* Kyle Mayes <kyle@mayeses.com>
* Apache-2.0
* https://github.com/KyleMayes/clang-sys
ring
*
* Apache-2.0 AND ISC
* https://github.com/briansmith/ring
dunce
* Kornel <kornel@geekhood.net>
* CC0-1.0 OR MIT-0 OR Apache-2.0
* https://gitlab.com/kornelski/dunce
bindgen
* Jyun-Yan You <jyyou.tw@gmail.com>, Emilio Cobos ├Бlvarez <emilio@crisal.io>, Nick Fitzgerald <fitzgen@gmail.com>, The Servo project developers
* BSD-3-Clause
* https://github.com/rust-lang/rust-bindgen
webpki-roots
*
* CDLA-Permissive-2.0
* https://github.com/rustls/webpki-roots
aws-lc-sys
* AWS-LC
* ISC AND (Apache-2.0 OR ISC) AND OpenSSL
* https://github.com/aws/aws-lc-rs
untrusted
* Brian Smith <brian@briansmith.org>
* ISC
* https://github.com/briansmith/untrusted
libloading
* Simonas Kazlauskas <libloading@kazlauskas.me>
* ISC
* https://github.com/nagisa/rust_libloading/
rustls-webpki
*
* ISC
* https://github.com/rustls/webpki
aws-lc-rs
* AWS-LibCrypto
* ISC AND (Apache-2.0 OR ISC)
* https://github.com/aws/aws-lc-rs
cexpr
* Jethro Beekman <jethro@jbeekman.nl>
* Apache-2.0 OR MIT
* https://github.com/jethrogb/rust-cexpr
cmake
* Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/cmake-rs
jobserver
* Alex Crichton <alex@alexcrichton.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/jobserver-rs
js-sys
* The wasm-bindgen Developers
* MIT OR Apache-2.0
* https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys
wasm-bindgen-backend
* The wasm-bindgen Developers
* MIT OR Apache-2.0
* https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend
wasm-bindgen-macro-support
* The wasm-bindgen Developers
* MIT OR Apache-2.0
* https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support
wasm-bindgen-macro
* The wasm-bindgen Developers
* MIT OR Apache-2.0
* https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro
wasm-bindgen-shared
* The wasm-bindgen Developers
* MIT OR Apache-2.0
* https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared
wasm-bindgen
* The wasm-bindgen Developers
* MIT OR Apache-2.0
* https://github.com/rustwasm/wasm-bindgen
glob
* The Rust Project Developers
* MIT OR Apache-2.0
* https://github.com/rust-lang/glob
regex-automata
* The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/regex/tree/master/regex-automata
regex-syntax
* The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/regex/tree/master/regex-syntax
regex
* The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/regex
nom
* contact@geoffroycouprie.com
* MIT
* https://github.com/Geal/nom
either
* bluss
* MIT OR Apache-2.0
* https://github.com/rayon-rs/either
itertools
* bluss
* MIT OR Apache-2.0
* https://github.com/rust-itertools/itertools
which
* Harry Fei <tiziyuanfang@gmail.com>
* MIT
* https://github.com/harryfei/which-rs.git
futures-core
*
* MIT OR Apache-2.0
* https://github.com/rust-lang/futures-rs
futures-io
*
* MIT OR Apache-2.0
* https://github.com/rust-lang/futures-rs
rustls-native-certs
*
* Apache-2.0 OR ISC OR MIT
* https://github.com/rustls/rustls-native-certs
rustls-pemfile
*
* Apache-2.0 OR ISC OR MIT
* https://github.com/rustls/pemfile
rustls
*
* Apache-2.0 OR ISC OR MIT
* https://github.com/rustls/rustls
bumpalo
* Nick Fitzgerald <fitzgen@gmail.com>
* MIT OR Apache-2.0
* https://github.com/fitzgen/bumpalo
iana-time-zone-haiku
* Ren├й Kijewski <crates.io@k6i.de>
* MIT OR Apache-2.0
* https://github.com/strawlab/iana-time-zone
iana-time-zone
* Andrew Straw <strawman@astraw.com>, Ren├й Kijewski <rene.kijewski@fu-berlin.de>, Ryan Lopopolo <rjl@hyperbo.la>
* MIT OR Apache-2.0
* https://github.com/strawlab/iana-time-zone
rustls-pki-types
*
* MIT OR Apache-2.0
* https://github.com/rustls/pki-types
fs_extra
* Denis Kurilenko <webdesus@gmail.com>
* MIT
* https://github.com/webdesus/fs_extra
lazy-regex
* Canop <cano.petrole@gmail.com>
* MIT
* https://github.com/Canop/lazy-regex
opi_ftp
*
* MIT
*
chrono
*
* MIT OR Apache-2.0
* https://github.com/chronotope/chrono
lazy-regex-proc_macros
* Canop <cano.petrole@gmail.com>
* MIT
* https://github.com/Canop/lazy-regex/tree/main/src/proc_macros
suppaftp
* Christian Visintin <christian.visintin@veeso.dev>, Matt McCoy <mattnenterprise@yahoo.com>
* MIT OR Apache-2.0
* https://github.com/veeso/suppaftp
windows-core
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows-targets
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_aarch64_gnullvm
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_aarch64_msvc
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_i686_gnu
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_i686_gnullvm
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_i686_msvc
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_x86_64_gnu
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_x86_64_gnullvm
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
windows_x86_64_msvc
* Microsoft
* MIT OR Apache-2.0
* https://github.com/microsoft/windows-rs
wit-bindgen-rt
*
* Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
* https://github.com/bytecodealliance/wit-bindgen
android-tzdata
* RumovZ
* MIT OR Apache-2.0
* https://github.com/RumovZ/android-tzdata
lazycell
* Alex Crichton <alex@alexcrichton.com>, Nikita Pekin <contact@nikitapek.in>
* MIT OR Apache-2.0
* https://github.com/indiv0/lazycell
futures-lite
* Stjepan Glavina <stjepang@gmail.com>, Contributors to futures-rs
* Apache-2.0 OR MIT
* https://github.com/smol-rs/futures-lite
home
* Brian Anderson <andersrb@gmail.com>
* MIT OR Apache-2.0
* https://github.com/rust-lang/cargo
minimal-lexical
* Alex Huszagh <ahuszagh@gmail.com>
* MIT OR Apache-2.0
* https://github.com/Alexhuszagh/minimal-lexical
parking
* Stjepan Glavina <stjepang@gmail.com>, The Rust Project Developers
* Apache-2.0 OR MIT
* https://github.com/smol-rs/parking