-
Notifications
You must be signed in to change notification settings - Fork 36
/
LICENSE.note
1838 lines (1312 loc) · 52.5 KB
/
LICENSE.note
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
The binary compiled from the source code of this package contains the following Rust crates:
-------------------------------------------------------------
Name: addr2line
Repository: https://github.com/gimli-rs/addr2line
Authors: addr2line authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: adler
Repository: https://github.com/jonas-schievink/adler.git
Authors: Jonas Schievink
License: 0BSD OR Apache-2.0 OR MIT
-------------------------------------------------------------
Name: adler32
Repository: https://github.com/remram44/adler32-rs
Authors: Remi Rampin
License: Zlib
-------------------------------------------------------------
Name: ahash
Repository: https://github.com/tkaitchuck/ahash
Authors: Tom Kaitchuck
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: aho-corasick
Repository: https://github.com/BurntSushi/aho-corasick
Authors: Andrew Gallant
License: MIT OR Unlicense
-------------------------------------------------------------
Name: alloc-no-stdlib
Repository: https://github.com/dropbox/rust-alloc-no-stdlib
Authors: Daniel Reiter Horn
License: BSD-3-Clause
-------------------------------------------------------------
Name: alloc-stdlib
Repository: https://github.com/dropbox/rust-alloc-no-stdlib
Authors: Daniel Reiter Horn
License: BSD-3-Clause
-------------------------------------------------------------
Name: allocator-api2
Repository: https://github.com/zakarumych/allocator-api2
Authors: Zakarum
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: android-tzdata
Repository: https://github.com/RumovZ/android-tzdata
Authors: RumovZ
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: android_system_properties
Repository: https://github.com/nical/android_system_properties
Authors: Nicolas Silva
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: argminmax
Repository: https://github.com/jvdd/argminmax
Authors: Jeroen Van Der Donckt
License: MIT
-------------------------------------------------------------
Name: array-init-cursor
Repository: https://github.com/planus-org/planus
Authors: array-init-cursor authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: arrow-format
Repository: https://github.com/DataEngineeringLabs/arrow-format
Authors: Jorge C. Leitao
License: Apache-2.0
-------------------------------------------------------------
Name: async-stream
Repository: https://github.com/tokio-rs/async-stream
Authors: Carl Lerche
License: MIT
-------------------------------------------------------------
Name: async-stream-impl
Repository: https://github.com/tokio-rs/async-stream
Authors: Carl Lerche
License: MIT
-------------------------------------------------------------
Name: async-trait
Repository: https://github.com/dtolnay/async-trait
Authors: David Tolnay
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: atoi
Repository: https://github.com/pacman82/atoi-rs
Authors: Markus Klein
License: MIT
-------------------------------------------------------------
Name: atoi_simd
Repository: https://github.com/RoDmitry/atoi_simd
Authors: Dmitry Rodionov
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: avro-schema
Repository: https://github.com/DataEngineeringLabs/avro-schema
Authors: Jorge C. Leitao
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: backtrace
Repository: https://github.com/rust-lang/backtrace-rs
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: base64
Repository: https://github.com/marshallpierce/rust-base64
Authors: Alice Maz, Marshall Pierce
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: bincode
Repository: https://github.com/servo/bincode
Authors: Ty Overby, Francesco Mazzoli, David Tolnay, Zoey Riordan
License: MIT
-------------------------------------------------------------
Name: bitflags
Repository: https://github.com/bitflags/bitflags
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: bitflags
Repository: https://github.com/bitflags/bitflags
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: brotli
Repository: https://github.com/dropbox/rust-brotli
Authors: Daniel Reiter Horn, The Brotli Authors
License: BSD-3-Clause OR MIT
-------------------------------------------------------------
Name: brotli-decompressor
Repository: https://github.com/dropbox/rust-brotli-decompressor
Authors: Daniel Reiter Horn, The Brotli Authors
License: BSD-3-Clause OR MIT
-------------------------------------------------------------
Name: bumpalo
Repository: https://github.com/fitzgen/bumpalo
Authors: Nick Fitzgerald
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: bytemuck
Repository: https://github.com/Lokathor/bytemuck
Authors: Lokathor
License: Apache-2.0 OR MIT OR Zlib
-------------------------------------------------------------
Name: bytemuck_derive
Repository: https://github.com/Lokathor/bytemuck
Authors: Lokathor
License: Apache-2.0 OR MIT OR Zlib
-------------------------------------------------------------
Name: bytes
Repository: https://github.com/tokio-rs/bytes
Authors: Carl Lerche, Sean McArthur
License: MIT
-------------------------------------------------------------
Name: cfg-if
Repository: https://github.com/alexcrichton/cfg-if
Authors: Alex Crichton
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: cfg-if
Repository: https://github.com/alexcrichton/cfg-if
Authors: Alex Crichton
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: chrono
Repository: https://github.com/chronotope/chrono
Authors: chrono authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: chrono-tz
Repository: https://github.com/chronotope/chrono-tz
Authors: chrono-tz authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: comfy-table
Repository: https://github.com/nukesor/comfy-table
Authors: Arne Beer
License: MIT
-------------------------------------------------------------
Name: core-foundation-sys
Repository: https://github.com/servo/core-foundation-rs
Authors: The Servo Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crc
Repository: https://github.com/mrhooray/crc-rs.git
Authors: Rui Hu, Akhil Velagapudi
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crc-catalog
Repository: https://github.com/akhilles/crc-catalog.git
Authors: Akhil Velagapudi
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crc32fast
Repository: https://github.com/srijs/rust-crc32fast
Authors: Sam Rijs, Alex Crichton
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crossbeam-channel
Repository: https://github.com/crossbeam-rs/crossbeam
Authors: crossbeam-channel authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crossbeam-deque
Repository: https://github.com/crossbeam-rs/crossbeam
Authors: crossbeam-deque authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crossbeam-epoch
Repository: https://github.com/crossbeam-rs/crossbeam
Authors: crossbeam-epoch authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crossbeam-queue
Repository: https://github.com/crossbeam-rs/crossbeam
Authors: crossbeam-queue authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crossbeam-utils
Repository: https://github.com/crossbeam-rs/crossbeam
Authors: crossbeam-utils authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: crossterm
Repository: https://github.com/crossterm-rs/crossterm
Authors: T. Post
License: MIT
-------------------------------------------------------------
Name: crossterm_winapi
Repository: https://github.com/crossterm-rs/crossterm-winapi
Authors: T. Post
License: MIT
-------------------------------------------------------------
Name: dyn-clone
Repository: https://github.com/dtolnay/dyn-clone
Authors: David Tolnay
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: either
Repository: https://github.com/bluss/either
Authors: bluss
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: enum_dispatch
Repository: https://gitlab.com/antonok/enum_dispatch
Authors: Anton Lazarev
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: equivalent
Repository: https://github.com/cuviper/equivalent
Authors: equivalent authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: errno
Repository: https://github.com/lambda-fairy/rust-errno
Authors: Chris Wong
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: ethnum
Repository: https://github.com/nlordell/ethnum-rs
Authors: Nicholas Rodrigues Lordello
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: extendr-api
Repository: https://github.com/extendr/extendr
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Hiroaki Yutani, Ilia A. Kosenkov, Michael Milton
License: MIT
-------------------------------------------------------------
Name: extendr-macros
Repository: https://github.com/extendr/extendr
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Hiroaki Yutani, Ilia A. Kosenkov, Michael Milton
License: MIT
-------------------------------------------------------------
Name: fallible-streaming-iterator
Repository: https://github.com/sfackler/fallible-streaming-iterator
Authors: Steven Fackler
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: fast-float
Repository: https://github.com/aldanor/fast-float-rust
Authors: Ivan Smirnov
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: fastrand
Repository: https://github.com/smol-rs/fastrand
Authors: Stjepan Glavina
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: flate2
Repository: https://github.com/rust-lang/flate2-rs
Authors: Alex Crichton, Josh Triplett
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: float-cmp
Repository: https://github.com/mikedilger/float-cmp
Authors: Mike Dilger
License: MIT
-------------------------------------------------------------
Name: flume
Repository: https://github.com/zesterer/flume
Authors: Joshua Barretto
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: fnv
Repository: https://github.com/servo/rust-fnv
Authors: Alex Crichton
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: foreign_vec
Repository: https://github.com/DataEngineeringLabs/foreign_vec
Authors: Jorge C. Leitao
License: MIT
-------------------------------------------------------------
Name: fuchsia-zircon
Repository: https://fuchsia.googlesource.com/garnet/
Authors: Raph Levien
License: BSD-3-Clause
-------------------------------------------------------------
Name: fuchsia-zircon-sys
Repository: https://fuchsia.googlesource.com/garnet/
Authors: Raph Levien
License: BSD-3-Clause
-------------------------------------------------------------
Name: futures
Repository: https://github.com/rust-lang/futures-rs
Authors: futures authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-channel
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-channel authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-core
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-core authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-executor
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-executor authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-io
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-io authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-macro
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-macro authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-sink
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-sink authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-task
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-task authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: futures-util
Repository: https://github.com/rust-lang/futures-rs
Authors: futures-util authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: generator
Repository: https://github.com/Xudong-Huang/generator-rs.git
Authors: Xudong Huang
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: getrandom
Repository: https://github.com/rust-random/getrandom
Authors: The Rand Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: gimli
Repository: https://github.com/gimli-rs/gimli
Authors: gimli authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: glob
Repository: https://github.com/rust-lang/glob
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: halfbrown
Repository: https://github.com/Licenser/halfbrown
Authors: Heinz N. Gies
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: hashbrown
Repository: https://github.com/rust-lang/hashbrown
Authors: Amanieu d'Antras
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: hashbrown
Repository: https://github.com/rust-lang/hashbrown
Authors: Amanieu d'Antras
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: heck
Repository: https://github.com/withoutboats/heck
Authors: Without Boats
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: hermit-abi
Repository: https://github.com/hermitcore/hermit-rs
Authors: Stefan Lankes
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: hex
Repository: https://github.com/KokaKiwi/rust-hex
Authors: KokaKiwi
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: home
Repository: https://github.com/rust-lang/cargo
Authors: Brian Anderson
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: iana-time-zone
Repository: https://github.com/strawlab/iana-time-zone
Authors: Andrew Straw, René Kijewski, Ryan Lopopolo
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: iana-time-zone-haiku
Repository: https://github.com/strawlab/iana-time-zone
Authors: René Kijewski
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: indenter
Repository: https://github.com/yaahc/indenter
Authors: Jane Lusby
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: indexmap
Repository: https://github.com/bluss/indexmap
Authors: indexmap authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: iovec
Repository: https://github.com/carllerche/iovec
Authors: Carl Lerche
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: ipc-channel
Repository: https://github.com/servo/ipc-channel
Authors: The Servo Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: itoa
Repository: https://github.com/dtolnay/itoa
Authors: David Tolnay
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: itoap
Repository: https://github.com/Kogia-sima/itoap
Authors: Ryohei Machida
License: MIT
-------------------------------------------------------------
Name: jemalloc-sys
Repository: https://github.com/tikv/jemallocator
Authors: Alex Crichton, Gonzalo Brito Gadeschi, The TiKV Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: jemallocator
Repository: https://github.com/tikv/jemallocator
Authors: Alex Crichton, Gonzalo Brito Gadeschi, Simon Sapin, Steven Fackler, The TiKV Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: js-sys
Repository: https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys
Authors: The wasm-bindgen Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: jsonpath_lib
Repository: https://github.com/freestrings/jsonpath
Authors: Changseok Han
License: MIT
-------------------------------------------------------------
Name: kernel32-sys
Repository: https://github.com/retep998/winapi-rs
Authors: Peter Atashian
License: MIT
-------------------------------------------------------------
Name: lazy_static
Repository: https://github.com/rust-lang-nursery/lazy-static.rs
Authors: Marvin Löbel
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: lexical-core
Repository: https://github.com/Alexhuszagh/rust-lexical
Authors: Alex Huszagh
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: lexical-parse-float
Repository: https://github.com/Alexhuszagh/rust-lexical
Authors: Alex Huszagh
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: lexical-parse-integer
Repository: https://github.com/Alexhuszagh/rust-lexical
Authors: Alex Huszagh
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: lexical-util
Repository: https://github.com/Alexhuszagh/rust-lexical
Authors: Alex Huszagh
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: lexical-write-float
Repository: https://github.com/Alexhuszagh/rust-lexical
Authors: Alex Huszagh
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: lexical-write-integer
Repository: https://github.com/Alexhuszagh/rust-lexical
Authors: Alex Huszagh
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: libR-sys
Repository: https://github.com/extendr/libR-sys
Authors: andy-thomason, Thomas Down, Mossa Merhi Reimert, Claus O. Wilke, Ilia A. Kosenkov, Hiroaki Yutani
License: MIT
-------------------------------------------------------------
Name: libc
Repository: https://github.com/rust-lang/libc
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: libflate
Repository: https://github.com/sile/libflate
Authors: Takeru Ohta
License: MIT
-------------------------------------------------------------
Name: libflate_lz77
Repository: https://github.com/sile/libflate
Authors: Takeru Ohta
License: MIT
-------------------------------------------------------------
Name: libm
Repository: https://github.com/rust-lang/libm
Authors: Jorge Aparicio
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: libmimalloc-sys
Repository: https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys
Authors: Octavian Oncescu
License: MIT
-------------------------------------------------------------
Name: libz-ng-sys
Repository: https://github.com/rust-lang/libz-sys
Authors: Alex Crichton, Josh Triplett, Sebastian Thiel
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: linux-raw-sys
Repository: https://github.com/sunfishcode/linux-raw-sys
Authors: Dan Gohman
License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
-------------------------------------------------------------
Name: lock_api
Repository: https://github.com/Amanieu/parking_lot
Authors: Amanieu d'Antras
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: log
Repository: https://github.com/rust-lang/log
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: loom
Repository: https://github.com/tokio-rs/loom
Authors: Carl Lerche
License: MIT
-------------------------------------------------------------
Name: lz4
Repository: https://github.com/10xGenomics/lz4-rs
Authors: Jens Heyens, Artem V. Navrotskiy, Patrick Marks
License: MIT
-------------------------------------------------------------
Name: lz4-sys
Repository: https://github.com/10xGenomics/lz4-rs
Authors: Jens Heyens, Artem V. Navrotskiy, Patrick Marks
License: MIT
-------------------------------------------------------------
Name: matchers
Repository: https://github.com/hawkw/matchers
Authors: Eliza Weisman
License: MIT
-------------------------------------------------------------
Name: matrixmultiply
Repository: https://github.com/bluss/matrixmultiply/
Authors: bluss, R. Janis Goldschmidt
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: memchr
Repository: https://github.com/BurntSushi/memchr
Authors: Andrew Gallant, bluss
License: MIT OR Unlicense
-------------------------------------------------------------
Name: memmap2
Repository: https://github.com/RazrFalcon/memmap2-rs
Authors: Dan Burkert, Yevhenii Reizner
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: memoffset
Repository: https://github.com/Gilnaa/memoffset
Authors: Gilad Naaman
License: MIT
-------------------------------------------------------------
Name: mimalloc
Repository: https://github.com/purpleprotocol/mimalloc_rust
Authors: Octavian Oncescu, Vincent Rouillé, Thom Chiovoloni
License: MIT
-------------------------------------------------------------
Name: miniz_oxide
Repository: https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
Authors: Frommi, oyvindln
License: Apache-2.0 OR MIT OR Zlib
-------------------------------------------------------------
Name: mio
Repository: https://github.com/tokio-rs/mio
Authors: Carl Lerche
License: MIT
-------------------------------------------------------------
Name: mio
Repository: https://github.com/tokio-rs/mio
Authors: Carl Lerche, Thomas de Zeeuw, Tokio Contributors
License: MIT
-------------------------------------------------------------
Name: miow
Repository: https://github.com/alexcrichton/miow
Authors: Alex Crichton
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: multiversion
Repository: https://github.com/calebzulawski/multiversion
Authors: Caleb Zulawski
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: multiversion-macros
Repository: https://github.com/calebzulawski/multiversion
Authors: Caleb Zulawski
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: nanorand
Repository: https://github.com/Absolucy/nanorand-rs
Authors: Lucy
License: Zlib
-------------------------------------------------------------
Name: ndarray
Repository: https://github.com/rust-ndarray/ndarray
Authors: Ulrik Sverdrup "bluss", Jim Turner
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: net2
Repository: https://github.com/deprecrated/net2-rs
Authors: Alex Crichton
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: now
Repository: https://github.com/Kilerd/now
Authors: Kilerd
License: MIT
-------------------------------------------------------------
Name: ntapi
Repository: https://github.com/MSxDOS/ntapi
Authors: MSxDOS
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: nu-ansi-term
Repository: https://github.com/nushell/nu-ansi-term
Authors: [email protected], Ryan Scheel (Havvy), Josh Triplett, The Nushell Project Developers
License: MIT
-------------------------------------------------------------
Name: num-complex
Repository: https://github.com/rust-num/num-complex
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: num-integer
Repository: https://github.com/rust-num/num-integer
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: num-traits
Repository: https://github.com/rust-num/num-traits
Authors: The Rust Project Developers
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: num_cpus
Repository: https://github.com/seanmonstar/num_cpus
Authors: Sean McArthur
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: object
Repository: https://github.com/gimli-rs/object
Authors: object authors
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: once_cell
Repository: https://github.com/matklad/once_cell
Authors: Aleksey Kladov
License: Apache-2.0 OR MIT
-------------------------------------------------------------
Name: overload
Repository: https://github.com/danaugrs/overload
Authors: Daniel Salvadori
License: MIT
-------------------------------------------------------------
Name: parking_lot