-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTHIRD_PARTY_LICENSES.txt
More file actions
3813 lines (3268 loc) · 149 KB
/
Copy pathTHIRD_PARTY_LICENSES.txt
File metadata and controls
3813 lines (3268 loc) · 149 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
####################################################################################################
Rust crates (276)
####################################################################################################
Package:adler2
Version:2.0.1
project URL:https://github.com/oyvindln/adler2
Description:A simple clean-room implementation of the Adler-32 checksum
license Type:0BSD OR Apache-2.0 OR MIT
####################################################################################################
Package:aho-corasick
Version:1.1.4
project URL:https://github.com/BurntSushi/aho-corasick
Description:Fast multiple substring searching.
license Type:MIT OR Unlicense
####################################################################################################
Package:alloc-no-stdlib
Version:2.0.4
project URL:https://github.com/dropbox/rust-alloc-no-stdlib
Description:A dynamic allocator that may be used with or without the stdlib. This allows a package with nostd to allocate memory dynamically and be used either with a custom allocator, items on the stack, or by a package that wishes to simply use Box<>. It also provides options to use calloc or a mutable global variable for pre-zeroed memory
license Type:BSD-3-Clause
####################################################################################################
Package:alloc-stdlib
Version:0.2.4
project URL:https://github.com/dropbox/rust-alloc-no-stdlib
Description:A dynamic allocator example that may be used with the stdlib
license Type:BSD-3-Clause
####################################################################################################
Package:anyhow
Version:1.0.104
project URL:https://github.com/dtolnay/anyhow
Description:Flexible concrete Error type built on std::error::Error
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:atomic-waker
Version:1.1.2
project URL:https://github.com/smol-rs/atomic-waker
Description:A synchronization primitive for task wakeup
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:base64
Version:0.22.1
project URL:https://github.com/marshallpierce/rust-base64
Description:encodes and decodes base64 as bytes or utf8
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:bit-set
Version:0.8.0
project URL:https://github.com/contain-rs/bit-set
Description:A set of bits
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:bit-vec
Version:0.8.0
project URL:https://github.com/contain-rs/bit-vec
Description:A vector of bits
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:bitflags
Version:1.3.2
project URL:https://github.com/bitflags/bitflags
Description:A macro to generate structures which behave like bitflags.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:bitflags
Version:2.13.1
project URL:https://github.com/bitflags/bitflags
Description:A macro to generate structures which behave like bitflags.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:block-buffer
Version:0.10.4
project URL:https://github.com/RustCrypto/utils
Description:Buffer type for block processing of data
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:brotli
Version:8.0.4
project URL:https://github.com/dropbox/rust-brotli
Description:A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe.
license Type:BSD-3-Clause AND MIT
####################################################################################################
Package:brotli-decompressor
Version:5.0.3
project URL:https://github.com/dropbox/rust-brotli-decompressor
Description:A brotli decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. Alternatively, --features=unsafe turns off array bounds checks and memory initialization but provides a safe interface for the caller. Without adding the --features=unsafe argument, all included code is safe. For compression in addition to this library, download https://github.com/dropbox/rust-brotli
license Type:BSD-3-Clause OR MIT
####################################################################################################
Package:bs58
Version:0.5.1
project URL:https://github.com/Nullus157/bs58-rs
Description:Another Base58 codec implementation.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:byteorder
Version:1.5.0
project URL:https://github.com/BurntSushi/byteorder
Description:Library for reading/writing numbers in big-endian and little-endian.
license Type:MIT OR Unlicense
####################################################################################################
Package:bytes
Version:1.12.1
project URL:https://github.com/tokio-rs/bytes
Description:Types and traits for working with bytes
license Type:MIT
####################################################################################################
Package:camino
Version:1.2.5
project URL:https://github.com/camino-rs/camino
Description:UTF-8 paths
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:cargo_metadata
Version:0.19.2
project URL:https://github.com/oli-obk/cargo_metadata
Description:structured access to the output of `cargo metadata`
license Type:MIT
####################################################################################################
Package:cargo-platform
Version:0.1.9
project URL:https://github.com/rust-lang/cargo
Description:Cargo's representation of a target platform.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:cfb
Version:0.7.3
project URL:https://github.com/mdsteele/rust-cfb
Description:Read/write Compound File Binary (structured storage) files
license Type:MIT
####################################################################################################
Package:cfg-if
Version:1.0.4
project URL:https://github.com/rust-lang/cfg-if
Description:A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:chrono
Version:0.4.45
project URL:https://github.com/chronotope/chrono
Description:Date and time library for Rust
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:cookie
Version:0.18.1
project URL:https://github.com/SergioBenitez/cookie-rs
Description:HTTP cookie parsing and cookie jar management. Supports signed and private (encrypted, authenticated) jars.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:cpufeatures
Version:0.2.17
project URL:https://github.com/RustCrypto/utils
Description:Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:crc32fast
Version:1.5.0
project URL:https://github.com/srijs/rust-crc32fast
Description:Fast, SIMD-accelerated CRC32 (IEEE) checksum computation
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:crossbeam-channel
Version:0.5.16
project URL:https://github.com/crossbeam-rs/crossbeam
Description:Multi-producer multi-consumer channels for message passing
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:crossbeam-utils
Version:0.8.22
project URL:https://github.com/crossbeam-rs/crossbeam
Description:Utilities for concurrent programming
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:crypto-common
Version:0.1.7
project URL:https://github.com/RustCrypto/traits
Description:Common cryptographic traits
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:cssparser
Version:0.36.0
project URL:https://github.com/servo/rust-cssparser
Description:Rust implementation of CSS Syntax Level 3
license Type:MPL-2.0
####################################################################################################
Package:cssparser-macros
Version:0.6.1
project URL:https://github.com/servo/rust-cssparser
Description:Procedural macros for cssparser
license Type:MPL-2.0
####################################################################################################
Package:ctor
Version:0.8.0
project URL:https://github.com/mmastrac/rust-ctor
Description:__attribute__((constructor)) for Rust
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:ctor-proc-macro
Version:0.0.7
project URL:https://github.com/mmastrac/rust-ctor
Description:proc-macro support for the ctor crate
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:darling
Version:0.23.0
project URL:https://github.com/TedDriggs/darling
Description:A proc-macro library for reading attributes into structs when implementing custom derives.
license Type:MIT
####################################################################################################
Package:darling_core
Version:0.23.0
project URL:https://github.com/TedDriggs/darling
Description:Helper crate for proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code.
license Type:MIT
####################################################################################################
Package:darling_macro
Version:0.23.0
project URL:https://github.com/TedDriggs/darling
Description:Internal support for a proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code.
license Type:MIT
####################################################################################################
Package:deranged
Version:0.5.8
project URL:https://github.com/jhpratt/deranged
Description:Ranged integers
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:derive_more
Version:2.1.1
project URL:https://github.com/JelteF/derive_more
Description:Adds #[derive(x)] macros for more traits
license Type:MIT
####################################################################################################
Package:derive_more-impl
Version:2.1.1
project URL:https://github.com/JelteF/derive_more
Description:Internal implementation of `derive_more` crate
license Type:MIT
####################################################################################################
Package:digest
Version:0.10.7
project URL:https://github.com/RustCrypto/traits
Description:Traits for cryptographic hash functions and message authentication codes
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:dirs
Version:6.0.0
project URL:https://github.com/soc/dirs-rs
Description:A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:dirs-sys
Version:0.5.0
project URL:https://github.com/dirs-dev/dirs-sys-rs
Description:System-level helper functions for the dirs and directories crates.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:displaydoc
Version:0.2.7
project URL:https://github.com/yaahc/displaydoc
Description:A derive macro for implementing the display Trait via a doc comment and string interpolation
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:dom_query
Version:0.27.0
project URL:https://github.com/niklak/dom_query
Description:HTML querying and manipulation with CSS selectors
license Type:MIT
####################################################################################################
Package:dpi
Version:0.1.2
project URL:https://github.com/rust-windowing/winit
Description:Types for handling UI scaling
license Type:Apache-2.0 AND MIT
####################################################################################################
Package:dtoa
Version:1.0.11
project URL:https://github.com/dtolnay/dtoa
Description:Fast floating point primitive to string conversion
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:dtoa-short
Version:0.3.5
project URL:https://github.com/upsuper/dtoa-short
Description:Serialize float number and truncate to certain precision
license Type:MPL-2.0
####################################################################################################
Package:dtor
Version:0.3.0
project URL:https://github.com/mmastrac/rust-ctor
Description:__attribute__((destructor)) for Rust
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:dtor-proc-macro
Version:0.0.6
project URL:https://github.com/mmastrac/rust-ctor
Description:proc-macro support for the dtor crate
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:dunce
Version:1.0.5
project URL:https://gitlab.com/kornelski/dunce
Description:Normalize Windows paths to the most compatible format, avoiding UNC where possible
license Type:Apache-2.0 OR CC0-1.0 OR MIT-0
####################################################################################################
Package:dyn-clone
Version:1.0.20
project URL:https://github.com/dtolnay/dyn-clone
Description:Clone trait that is dyn-compatible
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:equivalent
Version:1.0.2
project URL:https://github.com/indexmap-rs/equivalent
Description:Traits for key comparison in maps.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:erased-serde
Version:0.4.10
project URL:https://github.com/dtolnay/erased-serde
Description:Type-erased Serialize and Serializer traits
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:fastrand
Version:2.5.0
project URL:https://github.com/smol-rs/fastrand
Description:A simple and fast random number generator
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:fdeflate
Version:0.3.7
project URL:https://github.com/image-rs/fdeflate
Description:Fast specialized deflate implementation
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:flate2
Version:1.1.9
project URL:https://github.com/rust-lang/flate2-rs
Description:DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:fnv
Version:1.0.7
project URL:https://github.com/servo/rust-fnv
Description:Fowler–Noll–Vo hash function
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:foldhash
Version:0.2.0
project URL:https://github.com/orlp/foldhash
Description:A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.
license Type:Zlib
####################################################################################################
Package:form_urlencoded
Version:1.2.2
project URL:https://github.com/servo/rust-url
Description:Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-channel
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:Channels for asynchronous communication using futures-rs.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-core
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:The core traits and types in for the `futures` library.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-io
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-macro
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:The futures-rs procedural macro implementations.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-sink
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:The asynchronous `Sink` trait for the futures-rs library.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-task
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:Tools for working with tasks.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:futures-util
Version:0.3.33
project URL:https://github.com/rust-lang/futures-rs
Description:Common utilities and extension traits for the futures-rs library.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:generic-array
Version:0.14.7
project URL:https://github.com/fizyk20/generic-array.git
Description:Generic types implementing functionality of arrays
license Type:MIT
####################################################################################################
Package:getrandom
Version:0.2.17
project URL:https://github.com/rust-random/getrandom
Description:A small cross-platform library for retrieving random data from system source
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:getrandom
Version:0.3.4
project URL:https://github.com/rust-random/getrandom
Description:A small cross-platform library for retrieving random data from system source
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:getrandom
Version:0.4.3
project URL:https://github.com/rust-random/getrandom
Description:A small cross-platform library for retrieving random data from system source
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:glob
Version:0.3.4
project URL:https://github.com/rust-lang/glob
Description:Support for matching file paths against Unix shell style patterns.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:hashbrown
Version:0.12.3
project URL:https://github.com/rust-lang/hashbrown
Description:A Rust port of Google's SwissTable hash map
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:hashbrown
Version:0.17.1
project URL:https://github.com/rust-lang/hashbrown
Description:A Rust port of Google's SwissTable hash map
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:heck
Version:0.5.0
project URL:https://github.com/withoutboats/heck
Description:heck is a case conversion library.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:hex
Version:0.4.3
project URL:https://github.com/KokaKiwi/rust-hex
Description:Encoding and decoding data into/from hexadecimal representation.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:html5ever
Version:0.38.0
project URL:https://github.com/servo/html5ever
Description:High-performance browser-grade HTML5 parser
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:http
Version:1.5.0
project URL:https://github.com/hyperium/http
Description:A set of types for representing HTTP requests and responses.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:http-body
Version:1.1.0
project URL:https://github.com/hyperium/http-body
Description:Trait representing an asynchronous, streaming, HTTP request or response body.
license Type:MIT
####################################################################################################
Package:http-body-util
Version:0.1.4
project URL:https://github.com/hyperium/http-body
Description:Combinators and adapters for HTTP request or response bodies.
license Type:MIT
####################################################################################################
Package:httparse
Version:1.10.1
project URL:https://github.com/seanmonstar/httparse
Description:A tiny, safe, speedy, zero-copy HTTP/1.x parser.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:hyper
Version:1.11.0
project URL:https://github.com/hyperium/hyper
Description:A protective and efficient HTTP library for all.
license Type:MIT
####################################################################################################
Package:hyper-rustls
Version:0.27.9
project URL:https://github.com/rustls/hyper-rustls
Description:Rustls+hyper integration for pure rust HTTPS
license Type:Apache-2.0 OR ISC OR MIT
####################################################################################################
Package:hyper-util
Version:0.1.20
project URL:https://github.com/hyperium/hyper-util
Description:hyper utilities
license Type:MIT
####################################################################################################
Package:ico
Version:0.5.0
project URL:https://github.com/mdsteele/rust-ico
Description:A library for encoding/decoding ICO image files
license Type:MIT
####################################################################################################
Package:icu_collections
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:Collection of API for use in ICU libraries.
license Type:Unicode-3.0
####################################################################################################
Package:icu_locale_core
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:API for managing Unicode Language and Locale Identifiers
license Type:Unicode-3.0
####################################################################################################
Package:icu_normalizer
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:API for normalizing text into Unicode Normalization Forms
license Type:Unicode-3.0
####################################################################################################
Package:icu_normalizer_data
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:Data for the icu_normalizer crate
license Type:Unicode-3.0
####################################################################################################
Package:icu_properties
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:Definitions for Unicode properties
license Type:Unicode-3.0
####################################################################################################
Package:icu_properties_data
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:Data for the icu_properties crate
license Type:Unicode-3.0
####################################################################################################
Package:icu_provider
Version:2.2.0
project URL:https://github.com/unicode-org/icu4x
Description:Trait and struct definitions for the ICU data provider
license Type:Unicode-3.0
####################################################################################################
Package:ident_case
Version:1.0.1
project URL:https://github.com/TedDriggs/ident_case
Description:Utility for applying case rules to Rust identifiers.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:idna
Version:1.1.0
project URL:https://github.com/servo/rust-url/
Description:IDNA (Internationalizing Domain Names in Applications) and Punycode.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:idna_adapter
Version:1.2.2
project URL:https://github.com/hsivonen/idna_adapter
Description:Back end adapter for idna
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:indexmap
Version:1.9.3
project URL:https://github.com/bluss/indexmap
Description:A hash table with consistent order and fast iteration.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:indexmap
Version:2.14.0
project URL:https://github.com/indexmap-rs/indexmap
Description:A hash table with consistent order and fast iteration.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:infer
Version:0.19.0
project URL:https://github.com/bojand/infer
Description:Small crate to infer file type based on magic number signatures
license Type:MIT
####################################################################################################
Package:ipnet
Version:2.12.0
project URL:https://github.com/krisprice/ipnet
Description:Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:itoa
Version:1.0.18
project URL:https://github.com/dtolnay/itoa
Description:Fast integer primitive to string conversion
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:json-patch
Version:3.0.1
project URL:https://github.com/idubrov/json-patch
Description:RFC 6902, JavaScript Object Notation (JSON) Patch
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:jsonptr
Version:0.6.3
project URL:https://github.com/chanced/jsonptr
Description:Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:keyboard-types
Version:0.7.0
project URL:https://github.com/pyfisch/keyboard-types
Description:Contains types to define keyboard related events.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:libc
Version:0.2.189
project URL:https://github.com/rust-lang/libc
Description:Raw FFI bindings to platform libraries like libc.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:litemap
Version:0.8.2
project URL:https://github.com/unicode-org/icu4x
Description:A key-value Map implementation based on a flat, sorted Vec.
license Type:Unicode-3.0
####################################################################################################
Package:lock_api
Version:0.4.14
project URL:https://github.com/Amanieu/parking_lot
Description:Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:log
Version:0.4.33
project URL:https://github.com/rust-lang/log
Description:A lightweight logging facade for Rust
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:markup5ever
Version:0.38.0
project URL:https://github.com/servo/html5ever
Description:Common code for xml5ever and html5ever
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:memchr
Version:2.8.3
project URL:https://github.com/BurntSushi/memchr
Description:Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search.
license Type:MIT OR Unlicense
####################################################################################################
Package:mime
Version:0.3.17
project URL:https://github.com/hyperium/mime
Description:Strongly Typed Mimes
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:minisign-verify
Version:0.2.5
project URL:https://github.com/jedisct1/rust-minisign-verify
Description:A small, zero-dependencies crate to verify Minisign signatures.
license Type:MIT
####################################################################################################
Package:miniz_oxide
Version:0.8.9
project URL:https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
Description:DEFLATE compression and decompression library rewritten in Rust based on miniz
license Type:Apache-2.0 OR MIT OR Zlib
####################################################################################################
Package:mio
Version:1.2.2
project URL:https://github.com/tokio-rs/mio
Description:Lightweight non-blocking I/O.
license Type:MIT
####################################################################################################
Package:muda
Version:0.19.3
project URL:https://github.com/tauri-apps/muda
Description:Menu Utilities for Desktop Applications
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:new_debug_unreachable
Version:1.0.6
project URL:https://github.com/mbrubeck/rust-debug-unreachable
Description:panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)
license Type:MIT
####################################################################################################
Package:num-conv
Version:0.2.2
project URL:https://github.com/jhpratt/num-conv
Description:`num_conv` is a crate to convert between integer types without using `as` casts. This provides better certainty when refactoring, makes the exact behavior of code more explicit, and allows using turbofish syntax.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:num-traits
Version:0.2.19
project URL:https://github.com/rust-num/num-traits
Description:Numeric traits for generic mathematics
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:once_cell
Version:1.21.4
project URL:https://github.com/matklad/once_cell
Description:Single assignment cells and lazy values.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:open
Version:5.4.0
project URL:https://github.com/Byron/open-rs
Description:Open a path or URL using the program configured on the system
license Type:MIT
####################################################################################################
Package:option-ext
Version:0.2.0
project URL:https://github.com/soc/option-ext.git
Description:Extends `Option` with additional operations
license Type:MPL-2.0
####################################################################################################
Package:parking_lot
Version:0.12.5
project URL:https://github.com/Amanieu/parking_lot
Description:More compact and efficient implementations of the standard synchronization primitives.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:parking_lot_core
Version:0.9.12
project URL:https://github.com/Amanieu/parking_lot
Description:An advanced API for creating custom synchronization primitives.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:percent-encoding
Version:2.3.2
project URL:https://github.com/servo/rust-url/
Description:Percent encoding and decoding
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:phf
Version:0.13.1
project URL:https://github.com/rust-phf/rust-phf
Description:Runtime support for perfect hash function data structures
license Type:MIT
####################################################################################################
Package:phf_generator
Version:0.13.1
project URL:https://github.com/rust-phf/rust-phf
Description:PHF generation logic
license Type:MIT
####################################################################################################
Package:phf_macros
Version:0.13.1
project URL:https://github.com/rust-phf/rust-phf
Description:Macros to generate types in the phf crate
license Type:MIT
####################################################################################################
Package:phf_shared
Version:0.13.1
project URL:https://github.com/rust-phf/rust-phf
Description:Support code shared by PHF libraries
license Type:MIT
####################################################################################################
Package:pin-project-lite
Version:0.2.17
project URL:https://github.com/taiki-e/pin-project-lite
Description:A lightweight version of pin-project written with declarative macros.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:plist
Version:1.10.0
project URL:https://github.com/ebarnard/rust-plist/
Description:A rusty plist parser. Supports Serde serialization.
license Type:MIT
####################################################################################################
Package:png
Version:0.17.16
project URL:https://github.com/image-rs/image-png
Description:PNG decoding and encoding library in pure Rust
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:potential_utf
Version:0.1.5
project URL:https://github.com/unicode-org/icu4x
Description:Unvalidated string and character types
license Type:Unicode-3.0
####################################################################################################
Package:powerfmt
Version:0.2.0
project URL:https://github.com/jhpratt/powerfmt
Description:`powerfmt` is a library that provides utilities for formatting values. This crate makes it significantly easier to support filling to a minimum width with alignment, avoid heap allocation, and avoid repetitive calculations.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:precomputed-hash
Version:0.1.1
project URL:https://github.com/emilio/precomputed-hash
Description:A library intending to be a base dependency to expose a precomputed hash
license Type:MIT
####################################################################################################
Package:proc-macro2
Version:1.0.107
project URL:https://github.com/dtolnay/proc-macro2
Description:A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:quick-xml
Version:0.41.0
project URL:https://github.com/tafia/quick-xml
Description:High performance xml reader and writer
license Type:MIT
####################################################################################################
Package:quote
Version:1.0.47
project URL:https://github.com/dtolnay/quote
Description:Quasi-quoting macro quote!(...)
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:raw-window-handle
Version:0.6.2
project URL:https://github.com/rust-windowing/raw-window-handle
Description:Interoperability library for Rust Windowing applications.
license Type:Apache-2.0 OR MIT OR Zlib
####################################################################################################
Package:ref-cast
Version:1.0.26
project URL:https://github.com/dtolnay/ref-cast
Description:Safely cast &T to &U where the struct U contains a single field of type T.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:ref-cast-impl
Version:1.0.26
project URL:https://github.com/dtolnay/ref-cast
Description:Derive implementation for ref_cast::RefCast.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:regex
Version:1.13.1
project URL:https://github.com/rust-lang/regex
Description:An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:regex-automata
Version:0.4.16
project URL:https://github.com/rust-lang/regex
Description:Automata construction and matching using regular expressions.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:regex-syntax
Version:0.8.11
project URL:https://github.com/rust-lang/regex
Description:A regular expression parser.
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:reqwest
Version:0.13.4
project URL:https://github.com/seanmonstar/reqwest
Description:higher level HTTP client library
license Type:Apache-2.0 OR MIT
####################################################################################################
Package:ring
Version:0.17.14
project URL:https://github.com/briansmith/ring