drawbar 0.7.0

Your Nord's sounds, in a window: browse, edit and send programs, samples and pianos, in the browser or on the desktop
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
// Generated by scripts/licences.bash; do not edit by hand.

use super::{Group, Holder, Text};

// A copyright notice can outrun rustfmt, which then leaves the whole table as it
// finds it, so the table is written already laid out.
#[rustfmt::skip]
pub(super) const GROUPS: &[Group] = &[
    Group {
        licence: "Apache-2.0",
        text: include_str!("../../licences/Apache-2.0.txt"),
        holders: &[],
        unattributed: 27,
        variants: &[],
    },
    Group {
        licence: "BSD-2-Clause",
        text: include_str!("../../licences/BSD-2-Clause.txt"),
        holders: &[
            Holder {
                notice: "Copyright (c) 2015 David Roundy <roundyd@physics.oregonstate.edu>\nAll rights reserved.",
                crates: &[
                    "arrayref 0.3.9",
                ],
            },
        ],
        unattributed: 0,
        variants: &[],
    },
    Group {
        licence: "BSD-3-Clause",
        text: include_str!("../../licences/BSD-3-Clause.txt"),
        holders: &[
            Holder {
                notice: "Copyright (c) Radzivon Bartoshyk. All rights reserved.",
                crates: &[
                    "moxcms 0.8.1",
                    "pxfm 0.1.30",
                ],
            },
        ],
        unattributed: 0,
        variants: &[
            Text {
                crates: &[
                    "tiny-skia 0.11.4",
                    "tiny-skia-path 0.11.4",
                ],
                text: r#"Copyright (c) 2011 Google Inc. All rights reserved.
Copyright (c) 2020 Yevhenii Reizner All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

  * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

  * Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution.

  * Neither the name of the copyright holder nor the names of its
    contributors may be used to endorse or promote products derived
    from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"#,
            },
        ],
    },
    Group {
        licence: "ISC",
        text: include_str!("../../licences/ISC.txt"),
        holders: &[
            Holder {
                notice: "Copyright © 2015, Simonas Kazlauskas",
                crates: &[
                    "libloading 0.8.9",
                ],
            },
        ],
        unattributed: 0,
        variants: &[],
    },
    Group {
        licence: "MIT",
        text: include_str!("../../licences/MIT.txt"),
        holders: &[
            Holder {
                notice: "Copyright (c) 2012-2013 Mozilla Foundation",
                crates: &[
                    "cgl 0.3.2",
                    "core-foundation 0.9.4",
                    "core-foundation-sys 0.8.7",
                    "core-graphics 0.23.2",
                    "core-graphics-types 0.1.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2013-2014 The Rust Project Developers.\nCopyright (c) 2015-2020 The rust-hex Developers",
                crates: &[
                    "hex 0.4.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2013-2016 The rust-url developers",
                crates: &[
                    "form_urlencoded 1.2.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2013-2025 The rust-url developers",
                crates: &[
                    "data-url 0.3.2",
                    "idna 1.1.0",
                    "percent-encoding 2.3.2",
                    "url 2.5.8",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014 Alex Crichton",
                crates: &[
                    "cfg-if 1.0.4",
                    "js-sys 0.3.98",
                    "scoped-tls 1.0.1",
                    "wasm-bindgen 0.2.121",
                    "wasm-bindgen-futures 0.4.71",
                    "wasm-bindgen-macro 0.2.121",
                    "wasm-bindgen-macro-support 0.2.121",
                    "wasm-bindgen-shared 0.2.121",
                    "web-sys 0.3.98",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014 Chris Wong",
                crates: &[
                    "errno 0.3.14",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014 John Slegers",
                crates: &[
                    "epaint_default_fonts 0.32.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014 The Rust Project Developers",
                crates: &[
                    "bitflags 1.3.2",
                    "bitflags 2.13.1",
                    "log 0.4.33",
                    "num-bigint 0.4.8",
                    "num-integer 0.1.47",
                    "num-rational 0.4.2",
                    "num-traits 0.2.19",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014 The Rust Project Developers\nCopyright (c) 2018 Ashley Mannix, Christopher Armstrong, Dylan DPC, Hunar Roop Kahlon",
                crates: &[
                    "uuid 1.24.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014-2020 Optimal Computing (NZ) Ltd",
                crates: &[
                    "float-cmp 0.9.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2014-2026 Alex Crichton",
                crates: &[
                    "flate2 1.1.9",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015",
                crates: &[
                    "coreaudio-rs 0.14.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 Alice Maz",
                crates: &[
                    "base64 0.22.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 Elinor Berger",
                crates: &[
                    "wayland-backend 0.3.16",
                    "wayland-client 0.31.15",
                    "wayland-cursor 0.31.14",
                    "wayland-protocols 0.32.13",
                    "wayland-protocols-experimental 20250721.0.1",
                    "wayland-protocols-misc 0.3.12",
                    "wayland-protocols-plasma 0.3.12",
                    "wayland-protocols-wlr 0.3.12",
                    "wayland-scanner 0.31.11",
                    "wayland-sys 0.31.11",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 Steven Allen",
                crates: &[
                    "tempfile 3.27.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 The Rust Project Developers",
                crates: &[
                    "unicode-segmentation 1.13.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 The quick-error Developers",
                crates: &[
                    "quick-error 2.0.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 Victor Berger",
                crates: &[
                    "dlib 0.5.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015 nwin",
                crates: &[
                    "png 0.17.16",
                    "png 0.18.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015-2018 The winapi-rs Developers",
                crates: &[
                    "winapi 0.3.9",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015-2021 David Henningsson, and other contributors.",
                crates: &[
                    "alsa 0.11.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2015-2022 Amod Malviya",
                crates: &[
                    "webbrowser 1.2.4",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016 Alex Crichton\nCopyright (c) 2017 The Tokio Authors",
                crates: &[
                    "futures-channel 0.3.33",
                    "futures-core 0.3.33",
                    "futures-io 0.3.34",
                    "futures-macro 0.3.33",
                    "futures-task 0.3.33",
                    "futures-util 0.3.33",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016 Amanieu d'Antras",
                crates: &[
                    "hashbrown 0.17.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016 Johann Tuffe",
                crates: &[
                    "quick-xml 0.41.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016 The Rust Project Developers",
                crates: &[
                    "lock_api 0.4.14",
                    "parking_lot 0.12.5",
                    "parking_lot_core 0.9.12",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016--2017",
                crates: &[
                    "indexmap 2.14.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016--2023",
                crates: &[
                    "equivalent 1.0.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2016-2019 Ulrik Sverdrup \"bluss\" and scopeguard developers",
                crates: &[
                    "scopeguard 1.2.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 Gilad Naaman",
                crates: &[
                    "memoffset 0.9.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 Maiddog",
                crates: &[
                    "imagesize 0.13.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 Maik Klein",
                crates: &[
                    "enumflags2_derive 0.7.12",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 Nikolai Vazquez",
                crates: &[
                    "static_assertions 1.1.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 RON developers",
                crates: &[
                    "ron 0.10.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 Robert Grosse",
                crates: &[
                    "stable_deref_trait 1.2.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 The foreign-types Developers",
                crates: &[
                    "foreign-types 0.5.0",
                    "foreign-types-macros 0.2.4",
                    "foreign-types-shared 0.3.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017 tokio-jsonrpc developers",
                crates: &[
                    "signal-hook-registry 1.4.8",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017-2018 Junji Takakura",
                crates: &[
                    "io-kit-sys 0.4.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2017-2023 Maik Klein, Maja Kądziołka",
                crates: &[
                    "enumflags2 0.7.12",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Lucas Timmins & Victor Berger",
                crates: &[
                    "smithay-clipboard 0.7.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 PistonDevelopers",
                crates: &[
                    "tiff 0.11.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Raph Levien",
                crates: &[
                    "kurbo 0.11.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Reizner Evgeniy",
                crates: &[
                    "simplecss 0.2.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Sam Rijs, Alex Crichton and contributors",
                crates: &[
                    "crc32fast 1.5.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 The Servo Project Developers",
                crates: &[
                    "smallvec 1.15.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Tom Kaitchuck",
                crates: &[
                    "ahash 0.8.12",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Victor Berger",
                crates: &[
                    "calloop 0.13.0",
                    "calloop 0.14.4",
                    "smithay-client-toolkit 0.19.2",
                    "smithay-client-toolkit 0.20.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 Yevhenii Reizner",
                crates: &[
                    "roxmltree 0.20.0",
                    "svgtypes 0.15.3",
                    "ttf-parser 0.25.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018 diwic",
                crates: &[
                    "alsa-sys 0.4.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018-2025 The rust-random Project Developers\nCopyright (c) 2014 The Rust Project Developers",
                crates: &[
                    "getrandom 0.3.4",
                ],
            },
            Holder {
                notice: "Copyright (c) 2018-2026 The rust-random Project Developers\nCopyright (c) 2014 The Rust Project Developers",
                crates: &[
                    "getrandom 0.4.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Carl Lerche",
                crates: &[
                    "slab 0.4.12",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Kornel",
                crates: &[
                    "rgb 0.8.53",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Nick Fitzgerald",
                crates: &[
                    "bumpalo 3.20.3",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Nick Fitzgerald, 2021 Yuki Okushi",
                crates: &[
                    "mach2 0.4.3",
                    "mach2 0.5.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Reizner Evgeniy",
                crates: &[
                    "xmlwriter 0.1.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 The Crossbeam Project Developers",
                crates: &[
                    "crossbeam-utils 0.8.22",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 The CryptoCorrosion Contributors",
                crates: &[
                    "ppv-lite86 0.2.21",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Tokio Contributors",
                crates: &[
                    "tracing 0.1.44",
                    "tracing-attributes 0.1.31",
                    "tracing-core 0.1.36",
                ],
            },
            Holder {
                notice: "Copyright (c) 2019 Yevhenii Reizner",
                crates: &[
                    "pico-args 0.5.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Ashish Myles and contributors",
                crates: &[
                    "downcast-rs 1.2.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Bilal Elmoussaoui",
                crates: &[
                    "ashpd 0.11.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Olivier Goffart <ogoffart@sixtyfps.io>",
                crates: &[
                    "document-features 0.2.12",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Project Developers",
                crates: &[
                    "litrs 1.0.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Samuele Esposito",
                crates: &[
                    "xcursor 0.3.11",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Yevhenii Reizner\nCopyright (c) 2015 Dan Burkert",
                crates: &[
                    "memmap2 0.9.11",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020 Yoshua Wuyts",
                crates: &[
                    "async-broadcast 0.7.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2020-2021 Joshua Barretto",
                crates: &[
                    "pollster 0.4.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2022 Bartłomiej Maryńczak",
                crates: &[
                    "rfd 0.15.4",
                ],
            },
            Holder {
                notice: "Copyright (c) 2022 The Arboard contributors",
                crates: &[
                    "arboard 3.6.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2022 Yevhenii Reizner",
                crates: &[
                    "strict-num 0.1.1",
                ],
            },
            Holder {
                notice: "Copyright (c) 2023 Kirill Chibisov",
                crates: &[
                    "calloop-wayland-source 0.3.0",
                    "calloop-wayland-source 0.4.1",
                    "wayland-csd-frame 0.3.0",
                    "xkbcommon-dl 0.4.2",
                ],
            },
            Holder {
                notice: "Copyright (c) 2023 dAxpeDDa",
                crates: &[
                    "web-time 1.1.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2024 Zeeshan Ali Khan & zbus contributors",
                crates: &[
                    "zbus 5.19.0",
                    "zbus_macros 5.19.0",
                    "zbus_names 4.3.4",
                    "zvariant 5.14.0",
                    "zvariant_derive 5.14.0",
                ],
            },
            Holder {
                notice: "Copyright (c) 2026 Zeeshan Ali Khan & zcheapstr contributors",
                crates: &[
                    "zcheapstr 1.1.0",
                ],
            },
            Holder {
                notice: "Copyright (c) HeroicKatora 2020",
                crates: &[
                    "weezl 0.1.12",
                ],
            },
            Holder {
                notice: "Copyright (c) Individual contributors",
                crates: &[
                    "toml_datetime 1.1.1+spec-1.1.0",
                    "toml_edit 0.25.13+spec-1.1.0",
                    "toml_parser 1.1.3+spec-1.1.0",
                ],
            },
            Holder {
                notice: "Copyright (c) Microsoft Corporation.",
                crates: &[
                    "windows 0.62.2",
                    "windows-collections 0.3.2",
                    "windows-core 0.62.2",
                    "windows-future 0.3.2",
                    "windows-implement 0.60.2",
                    "windows-interface 0.59.3",
                    "windows-link 0.2.1",
                    "windows-numerics 0.3.1",
                    "windows-result 0.4.1",
                    "windows-strings 0.5.1",
                    "windows-sys 0.48.0",
                    "windows-sys 0.52.0",
                    "windows-sys 0.59.0",
                    "windows-sys 0.61.2",
                    "windows-targets 0.48.5",
                    "windows-targets 0.52.6",
                    "windows-threading 0.2.1",
                    "windows_x86_64_gnu 0.48.5",
                    "windows_x86_64_gnu 0.52.6",
                ],
            },
            Holder {
                notice: "Copyright (c) Microsoft Corporation. All rights reserved.",
                crates: &[
                    "uds_windows 1.2.1",
                ],
            },
            Holder {
                notice: "Copyright (c) Steven Sheldon",
                crates: &[
                    "block2 0.5.1",
                    "block2 0.6.2",
                    "dispatch 0.2.0",
                    "objc-sys 0.3.5",
                    "objc2 0.5.2",
                    "objc2 0.6.4",
                    "objc2-app-kit 0.2.2",
                    "objc2-encode 4.1.0",
                    "objc2-foundation 0.2.2",
                    "objc2-foundation 0.3.2",
                ],
            },
            Holder {
                notice: "Copyright (c) The Rodio Project Contributors",
                crates: &[
                    "rodio 0.22.2",
                ],
            },
            Holder {
                notice: "Copyright (c) The Rust Project Developers",
                crates: &[
                    "libc 0.2.189",
                ],
            },
            Holder {
                notice: "Copyright (c) The rust-url developers",
                crates: &[
                    "idna_adapter 1.2.2",
                ],
            },
            Holder {
                notice: "Copyright (c) Ulrik Sverdrup \"bluss\" 2015-2023",
                crates: &[
                    "arrayvec 0.7.8",
                ],
            },
            Holder {
                notice: "Copyright (c) [2021] [Marvin Countryman]",
                crates: &[
                    "simd-adler32 0.3.10",
                ],
            },
            Holder {
                notice: "Copyright 2016 Nika Layzell",
                crates: &[
                    "synstructure 0.13.2",
                ],
            },
            Holder {
                notice: "Copyright 2017 the Resvg Authors",
                crates: &[
                    "resvg 0.45.1",
                    "usvg 0.45.1",
                ],
            },
            Holder {
                notice: "Copyright 2018 Developers of the Rand project\nCopyright (c) 2014 The Rust Project Developers",
                crates: &[
                    "rand 0.9.5",
                    "rand_chacha 0.9.0",
                    "rand_core 0.9.5",
                ],
            },
            Holder {
                notice: "Copyright 2018 Parity Technologies (UK) Ltd.",
                crates: &[
                    "nohash-hasher 0.2.0",
                ],
            },
            Holder {
                notice: "Copyright 2019 as-raw-xcb-connection Contributers",
                crates: &[
                    "as-raw-xcb-connection 1.0.1",
                ],
            },
            Holder {
                notice: "Copyright 2019 x11rb Contributers",
                crates: &[
                    "x11rb 0.13.2",
                    "x11rb-protocol 0.13.2",
                ],
            },
            Holder {
                notice: "Copyright 2023 The Fuchsia Authors",
                crates: &[
                    "zerocopy 0.8.56",
                    "zerocopy-derive 0.8.56",
                ],
            },
            Holder {
                notice: "Copyright Mozilla Foundation",
                crates: &[
                    "utf8_iter 1.0.4",
                ],
            },
            Holder {
                notice: "Copyright © 2021 The pdf-rs contributers.",
                crates: &[
                    "fax 0.2.7",
                ],
            },
            Holder {
                notice: "Copyright © 2022 Kirill Chibisov",
                crates: &[
                    "glutin-winit 0.5.0",
                ],
            },
            Holder {
                notice: "© 2016 Bertram Truong\n© 2021 Kornel Lesiński",
                crates: &[
                    "urlencoding 2.1.3",
                ],
            },
        ],
        unattributed: 55,
        variants: &[
            Text {
                crates: &[
                    "dpi 0.1.2",
                ],
                text: r#"rust-lang/libm as a whole is available for use under the MIT license:

------------------------------------------------------------------------------
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------

This Rust library contains the following copyrights:

    Copyright (c) 2018 Jorge Aparicio

Portions of this software are derived from third-party works licensed under
terms compatible with the above MIT license:

* musl libc https://www.musl-libc.org/. This library contains the following
  copyright:

      Copyright © 2005-2020 Rich Felker, et al.

* The CORE-MATH project https://core-math.gitlabpages.inria.fr/. CORE-MATH
  routines are available under the MIT license on a per-file basis.

The musl libc COPYRIGHT file also includes the following notice relevant to
math portions of the library:

------------------------------------------------------------------------------
Much of the math library code (src/math/* and src/complex/*) is
Copyright © 1993,2004 Sun Microsystems or
Copyright © 2003-2011 David Schultz or
Copyright © 2003-2009 Steven G. Kargl or
Copyright © 2003-2009 Bruce D. Evans or
Copyright © 2008 Stephen L. Moshier or
Copyright © 2017-2018 Arm Limited
and labelled as such in comments in the individual source files. All
have been licensed under extremely permissive terms.
------------------------------------------------------------------------------
"#,
            },
            Text {
                crates: &[
                    "zip 2.4.2",
                ],
                text: r#"The MIT License (MIT)

Copyright (c) 2014 Mathijs van de Nes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Some files in the "tests/data" subdirectory of this repository are under other
licences; see files named LICENSE.*.txt for details."#,
            },
        ],
    },
    Group {
        licence: "Unicode-3.0",
        text: include_str!("../../licences/Unicode-3.0.txt"),
        holders: &[
            Holder {
                notice: "Copyright © 1991-2023 Unicode, Inc.",
                crates: &[
                    "unicode-ident 1.0.24",
                ],
            },
        ],
        unattributed: 0,
        variants: &[
            Text {
                crates: &[
                    "icu_collections 2.2.0",
                    "icu_locale_core 2.2.0",
                    "icu_normalizer 2.2.0",
                    "icu_normalizer_data 2.2.0",
                    "icu_properties 2.2.0",
                    "icu_properties_data 2.2.0",
                    "icu_provider 2.2.0",
                    "litemap 0.8.2",
                    "potential_utf 0.1.5",
                    "tinystr 0.8.3",
                    "writeable 0.6.3",
                    "yoke 0.8.3",
                    "yoke-derive 0.8.2",
                    "zerofrom 0.1.8",
                    "zerofrom-derive 0.1.7",
                    "zerotrie 0.2.4",
                    "zerovec 0.11.6",
                    "zerovec-derive 0.11.3",
                ],
                text: r#"UNICODE LICENSE V3

COPYRIGHT AND PERMISSION NOTICE

Copyright © 2020-2024 Unicode, Inc.

NOTICE TO USER: Carefully read the following legal agreement. BY
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.

Permission is hereby granted, free of charge, to any person obtaining a
copy of data files and any associated documentation (the "Data Files") or
software and any associated documentation (the "Software") to deal in the
Data Files or Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, and/or sell
copies of the Data Files or Software, and to permit persons to whom the
Data Files or Software are furnished to do so, provided that either (a)
this copyright and permission notice appear with all copies of the Data
Files or Software, or (b) this copyright and permission notice appear in
associated Documentation.

THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
THIRD PARTY RIGHTS.

IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
FILES OR SOFTWARE.

Except as contained in this notice, the name of a copyright holder shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in these Data Files or Software without prior written
authorization of the copyright holder.

SPDX-License-Identifier: Unicode-3.0

—

Portions of ICU4X may have been adapted from ICU4C and/or ICU4J.
ICU 1.8.1 to ICU 57.1 © 1995-2016 International Business Machines Corporation and others.
"#,
            },
        ],
    },
];

#[cfg(test)]
pub(super) const LOCKED: &[(&str, &str)] = &[
    ("ab_glyph", "0.2.32"),
    ("ab_glyph_rasterizer", "0.1.10"),
    ("accesskit", "0.19.0"),
    ("adler2", "2.0.1"),
    ("ahash", "0.8.12"),
    ("alsa", "0.11.0"),
    ("alsa-sys", "0.4.0"),
    ("android-activity", "0.6.1"),
    ("android-properties", "0.2.2"),
    ("anstream", "1.0.0"),
    ("anstyle", "1.0.14"),
    ("anstyle-parse", "1.0.0"),
    ("anstyle-query", "1.1.5"),
    ("anstyle-wincon", "3.0.11"),
    ("arbitrary", "1.4.2"),
    ("arboard", "3.6.1"),
    ("arrayref", "0.3.9"),
    ("arrayvec", "0.7.8"),
    ("as-raw-xcb-connection", "1.0.1"),
    ("ashpd", "0.11.1"),
    ("async-broadcast", "0.7.2"),
    ("async-channel", "2.5.0"),
    ("async-executor", "1.14.0"),
    ("async-fs", "2.2.0"),
    ("async-io", "2.6.0"),
    ("async-lock", "3.4.2"),
    ("async-net", "2.0.0"),
    ("async-process", "2.5.0"),
    ("async-recursion", "1.1.1"),
    ("async-signal", "0.2.14"),
    ("async-task", "4.7.1"),
    ("async-trait", "0.1.92"),
    ("atomic-waker", "1.1.2"),
    ("autocfg", "1.5.1"),
    ("base64", "0.22.1"),
    ("bit-set", "0.8.0"),
    ("bit-vec", "0.8.0"),
    ("bitflags", "1.3.2"),
    ("bitflags", "2.13.1"),
    ("block2", "0.5.1"),
    ("block2", "0.6.2"),
    ("blocking", "1.6.2"),
    ("bumpalo", "3.20.3"),
    ("bytemuck", "1.25.2"),
    ("bytemuck_derive", "1.12.0"),
    ("byteorder-lite", "0.1.0"),
    ("bytes", "1.12.1"),
    ("calloop", "0.13.0"),
    ("calloop", "0.14.4"),
    ("calloop-wayland-source", "0.3.0"),
    ("calloop-wayland-source", "0.4.1"),
    ("cc", "1.4.2"),
    ("cesu8", "1.1.0"),
    ("cfg-if", "1.0.4"),
    ("cfg_aliases", "0.2.2"),
    ("cgl", "0.3.2"),
    ("clap", "4.6.6"),
    ("clap_builder", "4.6.6"),
    ("clap_derive", "4.6.4"),
    ("clap_lex", "1.1.0"),
    ("clipboard-win", "5.4.1"),
    ("codespan-reporting", "0.12.0"),
    ("colorchoice", "1.0.5"),
    ("combine", "4.6.7"),
    ("concurrent-queue", "2.5.0"),
    ("console", "0.16.4"),
    ("core-foundation", "0.9.4"),
    ("core-foundation-sys", "0.8.7"),
    ("core-graphics", "0.23.2"),
    ("core-graphics-types", "0.1.3"),
    ("coreaudio-rs", "0.14.2"),
    ("cpal", "0.17.3"),
    ("crc32fast", "1.5.0"),
    ("crcxx", "0.3.1"),
    ("crossbeam-utils", "0.8.22"),
    ("crunchy", "0.2.4"),
    ("cursor-icon", "1.2.0"),
    ("dasp_sample", "0.11.0"),
    ("data-url", "0.3.2"),
    ("derive_arbitrary", "1.4.2"),
    ("dialoguer", "0.12.0"),
    ("dispatch", "0.2.0"),
    ("dispatch2", "0.3.1"),
    ("displaydoc", "0.2.7"),
    ("dlib", "0.5.3"),
    ("document-features", "0.2.12"),
    ("downcast-rs", "1.2.1"),
    ("dpi", "0.1.2"),
    ("ecolor", "0.32.3"),
    ("eframe", "0.32.3"),
    ("egui", "0.32.3"),
    ("egui-wgpu", "0.32.3"),
    ("egui-winit", "0.32.3"),
    ("egui_extras", "0.32.3"),
    ("egui_glow", "0.32.3"),
    ("emath", "0.32.3"),
    ("encode_unicode", "1.0.0"),
    ("endi", "1.1.1"),
    ("enum-map", "2.7.3"),
    ("enum-map-derive", "0.17.0"),
    ("enumflags2", "0.7.12"),
    ("enumflags2_derive", "0.7.12"),
    ("enumn", "0.1.14"),
    ("epaint", "0.32.3"),
    ("epaint_default_fonts", "0.32.3"),
    ("equivalent", "1.0.2"),
    ("errno", "0.3.14"),
    ("error-code", "3.3.2"),
    ("escape8259", "0.5.3"),
    ("euclid", "0.22.14"),
    ("event-listener", "5.4.2"),
    ("event-listener-strategy", "0.5.4"),
    ("fastrand", "2.5.0"),
    ("fax", "0.2.7"),
    ("fdeflate", "0.3.7"),
    ("find-msvc-tools", "0.1.10"),
    ("flate2", "1.1.9"),
    ("float-cmp", "0.9.0"),
    ("foldhash", "0.1.5"),
    ("foreign-types", "0.5.0"),
    ("foreign-types-macros", "0.2.4"),
    ("foreign-types-shared", "0.3.1"),
    ("form_urlencoded", "1.2.2"),
    ("futures-channel", "0.3.33"),
    ("futures-core", "0.3.33"),
    ("futures-io", "0.3.34"),
    ("futures-lite", "2.6.1"),
    ("futures-macro", "0.3.33"),
    ("futures-task", "0.3.33"),
    ("futures-util", "0.3.33"),
    ("gethostname", "1.1.0"),
    ("getrandom", "0.3.4"),
    ("getrandom", "0.4.3"),
    ("gl_generator", "0.14.0"),
    ("glow", "0.16.0"),
    ("glutin", "0.32.3"),
    ("glutin-winit", "0.5.0"),
    ("glutin_egl_sys", "0.7.1"),
    ("glutin_glx_sys", "0.6.1"),
    ("glutin_wgl_sys", "0.6.1"),
    ("half", "2.7.1"),
    ("hashbrown", "0.15.5"),
    ("hashbrown", "0.17.1"),
    ("heck", "0.5.0"),
    ("hermit-abi", "0.5.2"),
    ("hex", "0.4.3"),
    ("hexf-parse", "0.2.1"),
    ("home", "0.5.12"),
    ("icu_collections", "2.2.0"),
    ("icu_locale_core", "2.2.0"),
    ("icu_normalizer", "2.2.0"),
    ("icu_normalizer_data", "2.2.0"),
    ("icu_properties", "2.2.0"),
    ("icu_properties_data", "2.2.0"),
    ("icu_provider", "2.2.0"),
    ("idna", "1.1.0"),
    ("idna_adapter", "1.2.2"),
    ("image", "0.25.10"),
    ("imagesize", "0.13.0"),
    ("indexmap", "2.14.0"),
    ("io-kit-sys", "0.4.1"),
    ("is_terminal_polyfill", "1.70.2"),
    ("itoa", "1.0.18"),
    ("jni", "0.21.1"),
    ("jni", "0.22.4"),
    ("jni-macros", "0.22.4"),
    ("jni-sys", "0.3.1"),
    ("jni-sys", "0.4.1"),
    ("jni-sys-macros", "0.4.1"),
    ("jobserver", "0.1.35"),
    ("js-sys", "0.3.98"),
    ("khronos_api", "3.1.0"),
    ("kurbo", "0.11.3"),
    ("libc", "0.2.189"),
    ("libloading", "0.8.9"),
    ("libm", "0.2.16"),
    ("libredox", "0.1.19"),
    ("libtest-mimic", "0.8.2"),
    ("linux-raw-sys", "0.4.15"),
    ("linux-raw-sys", "0.12.1"),
    ("litemap", "0.8.2"),
    ("litrs", "1.0.0"),
    ("lock_api", "0.4.14"),
    ("log", "0.4.33"),
    ("mach2", "0.4.3"),
    ("mach2", "0.5.0"),
    ("memchr", "2.8.3"),
    ("memmap2", "0.9.11"),
    ("memoffset", "0.9.1"),
    ("miniz_oxide", "0.8.9"),
    ("moxcms", "0.8.1"),
    ("naga", "25.0.1"),
    ("ndk", "0.9.0"),
    ("ndk-context", "0.1.1"),
    ("ndk-sys", "0.6.0+11769913"),
    ("nohash-hasher", "0.2.0"),
    ("num-bigint", "0.4.8"),
    ("num-derive", "0.4.2"),
    ("num-integer", "0.1.47"),
    ("num-rational", "0.4.2"),
    ("num-traits", "0.2.19"),
    ("num_enum", "0.7.6"),
    ("num_enum_derive", "0.7.6"),
    ("nusb", "0.1.14"),
    ("objc-sys", "0.3.5"),
    ("objc2", "0.5.2"),
    ("objc2", "0.6.4"),
    ("objc2-app-kit", "0.2.2"),
    ("objc2-app-kit", "0.3.2"),
    ("objc2-audio-toolbox", "0.3.2"),
    ("objc2-avf-audio", "0.3.2"),
    ("objc2-cloud-kit", "0.2.2"),
    ("objc2-contacts", "0.2.2"),
    ("objc2-core-audio", "0.3.2"),
    ("objc2-core-audio-types", "0.3.2"),
    ("objc2-core-data", "0.2.2"),
    ("objc2-core-foundation", "0.3.2"),
    ("objc2-core-graphics", "0.3.2"),
    ("objc2-core-image", "0.2.2"),
    ("objc2-core-location", "0.2.2"),
    ("objc2-encode", "4.1.0"),
    ("objc2-foundation", "0.2.2"),
    ("objc2-foundation", "0.3.2"),
    ("objc2-io-surface", "0.3.2"),
    ("objc2-link-presentation", "0.2.2"),
    ("objc2-metal", "0.2.2"),
    ("objc2-quartz-core", "0.2.2"),
    ("objc2-symbols", "0.2.2"),
    ("objc2-ui-kit", "0.2.2"),
    ("objc2-uniform-type-identifiers", "0.2.2"),
    ("objc2-user-notifications", "0.2.2"),
    ("once_cell", "1.21.4"),
    ("once_cell_polyfill", "1.70.2"),
    ("orbclient", "0.3.55"),
    ("ordered-stream", "0.2.0"),
    ("owned_ttf_parser", "0.25.1"),
    ("parking", "2.2.1"),
    ("parking_lot", "0.12.5"),
    ("parking_lot_core", "0.9.12"),
    ("percent-encoding", "2.3.2"),
    ("pico-args", "0.5.0"),
    ("pin-project", "1.1.13"),
    ("pin-project-internal", "1.1.13"),
    ("pin-project-lite", "0.2.17"),
    ("piper", "0.2.5"),
    ("pkg-config", "0.3.33"),
    ("plain", "0.2.3"),
    ("png", "0.17.16"),
    ("png", "0.18.1"),
    ("polling", "3.11.0"),
    ("pollster", "0.4.0"),
    ("portable-atomic", "1.15.0"),
    ("potential_utf", "0.1.5"),
    ("ppv-lite86", "0.2.21"),
    ("proc-macro-crate", "3.5.0"),
    ("proc-macro2", "1.0.107"),
    ("profiling", "1.0.18"),
    ("pxfm", "0.1.30"),
    ("quick-error", "2.0.1"),
    ("quick-xml", "0.41.0"),
    ("quote", "1.0.47"),
    ("r-efi", "5.3.0"),
    ("r-efi", "6.0.0"),
    ("rand", "0.9.5"),
    ("rand_chacha", "0.9.0"),
    ("rand_core", "0.9.5"),
    ("raw-window-handle", "0.6.2"),
    ("redox_syscall", "0.4.1"),
    ("redox_syscall", "0.5.18"),
    ("redox_syscall", "0.9.2"),
    ("renderdoc-sys", "1.1.0"),
    ("resvg", "0.45.1"),
    ("rfd", "0.15.4"),
    ("rgb", "0.8.53"),
    ("rodio", "0.22.2"),
    ("ron", "0.10.1"),
    ("roxmltree", "0.20.0"),
    ("rustc-hash", "1.1.0"),
    ("rustc-hash", "2.1.3"),
    ("rustc_version", "0.4.1"),
    ("rustix", "0.38.44"),
    ("rustix", "1.1.4"),
    ("rustversion", "1.0.23"),
    ("same-file", "1.0.6"),
    ("scoped-tls", "1.0.1"),
    ("scopeguard", "1.2.0"),
    ("semver", "1.0.28"),
    ("serde", "1.0.229"),
    ("serde_core", "1.0.229"),
    ("serde_derive", "1.0.229"),
    ("serde_json", "1.0.151"),
    ("serde_repr", "0.1.21"),
    ("shell-words", "1.1.1"),
    ("shlex", "2.0.1"),
    ("signal-hook-registry", "1.4.8"),
    ("simd-adler32", "0.3.10"),
    ("simd_cesu8", "1.2.0"),
    ("simdutf8", "0.1.5"),
    ("simplecss", "0.2.2"),
    ("siphasher", "1.0.3"),
    ("slab", "0.4.12"),
    ("slotmap", "1.1.1"),
    ("smallvec", "1.15.2"),
    ("smithay-client-toolkit", "0.19.2"),
    ("smithay-client-toolkit", "0.20.0"),
    ("smithay-clipboard", "0.7.3"),
    ("smol_str", "0.2.2"),
    ("stable_deref_trait", "1.2.1"),
    ("static_assertions", "1.1.0"),
    ("strict-num", "0.1.1"),
    ("strsim", "0.11.1"),
    ("strum", "0.26.3"),
    ("strum_macros", "0.26.4"),
    ("svgtypes", "0.15.3"),
    ("syn", "2.0.119"),
    ("syn", "3.0.3"),
    ("synstructure", "0.13.2"),
    ("tempfile", "3.27.0"),
    ("termcolor", "1.4.1"),
    ("thiserror", "1.0.69"),
    ("thiserror", "2.0.20"),
    ("thiserror-impl", "1.0.69"),
    ("thiserror-impl", "2.0.20"),
    ("tiff", "0.11.3"),
    ("tiny-skia", "0.11.4"),
    ("tiny-skia-path", "0.11.4"),
    ("tinystr", "0.8.3"),
    ("toml_datetime", "1.1.1+spec-1.1.0"),
    ("toml_edit", "0.25.13+spec-1.1.0"),
    ("toml_parser", "1.1.3+spec-1.1.0"),
    ("tracing", "0.1.44"),
    ("tracing-attributes", "0.1.31"),
    ("tracing-core", "0.1.36"),
    ("ttf-parser", "0.25.1"),
    ("type-map", "0.5.1"),
    ("uds_windows", "1.2.1"),
    ("unicode-ident", "1.0.24"),
    ("unicode-segmentation", "1.13.3"),
    ("unicode-width", "0.2.2"),
    ("url", "2.5.8"),
    ("urlencoding", "2.1.3"),
    ("usvg", "0.45.1"),
    ("utf8_iter", "1.0.4"),
    ("utf8parse", "0.2.2"),
    ("uuid", "1.24.0"),
    ("version_check", "0.9.5"),
    ("walkdir", "2.5.0"),
    ("wasip2", "1.0.4+wasi-0.2.12"),
    ("wasm-bindgen", "0.2.121"),
    ("wasm-bindgen-futures", "0.4.71"),
    ("wasm-bindgen-macro", "0.2.121"),
    ("wasm-bindgen-macro-support", "0.2.121"),
    ("wasm-bindgen-shared", "0.2.121"),
    ("wayland-backend", "0.3.16"),
    ("wayland-client", "0.31.15"),
    ("wayland-csd-frame", "0.3.0"),
    ("wayland-cursor", "0.31.14"),
    ("wayland-protocols", "0.32.13"),
    ("wayland-protocols-experimental", "20250721.0.1"),
    ("wayland-protocols-misc", "0.3.12"),
    ("wayland-protocols-plasma", "0.3.12"),
    ("wayland-protocols-wlr", "0.3.12"),
    ("wayland-scanner", "0.31.11"),
    ("wayland-sys", "0.31.11"),
    ("web-sys", "0.3.98"),
    ("web-time", "1.1.0"),
    ("webbrowser", "1.2.4"),
    ("weezl", "0.1.12"),
    ("wgpu", "25.0.2"),
    ("wgpu-core", "25.0.2"),
    ("wgpu-core-deps-windows-linux-android", "25.0.0"),
    ("wgpu-hal", "25.0.2"),
    ("wgpu-types", "25.0.0"),
    ("winapi", "0.3.9"),
    ("winapi-i686-pc-windows-gnu", "0.4.0"),
    ("winapi-util", "0.1.11"),
    ("winapi-x86_64-pc-windows-gnu", "0.4.0"),
    ("windows", "0.62.2"),
    ("windows-collections", "0.3.2"),
    ("windows-core", "0.62.2"),
    ("windows-future", "0.3.2"),
    ("windows-implement", "0.60.2"),
    ("windows-interface", "0.59.3"),
    ("windows-link", "0.2.1"),
    ("windows-numerics", "0.3.1"),
    ("windows-result", "0.4.1"),
    ("windows-strings", "0.5.1"),
    ("windows-sys", "0.45.0"),
    ("windows-sys", "0.48.0"),
    ("windows-sys", "0.52.0"),
    ("windows-sys", "0.59.0"),
    ("windows-sys", "0.61.2"),
    ("windows-targets", "0.42.2"),
    ("windows-targets", "0.48.5"),
    ("windows-targets", "0.52.6"),
    ("windows-threading", "0.2.1"),
    ("windows_aarch64_gnullvm", "0.42.2"),
    ("windows_aarch64_gnullvm", "0.48.5"),
    ("windows_aarch64_gnullvm", "0.52.6"),
    ("windows_aarch64_msvc", "0.42.2"),
    ("windows_aarch64_msvc", "0.48.5"),
    ("windows_aarch64_msvc", "0.52.6"),
    ("windows_i686_gnu", "0.42.2"),
    ("windows_i686_gnu", "0.48.5"),
    ("windows_i686_gnu", "0.52.6"),
    ("windows_i686_gnullvm", "0.52.6"),
    ("windows_i686_msvc", "0.42.2"),
    ("windows_i686_msvc", "0.48.5"),
    ("windows_i686_msvc", "0.52.6"),
    ("windows_x86_64_gnu", "0.42.2"),
    ("windows_x86_64_gnu", "0.48.5"),
    ("windows_x86_64_gnu", "0.52.6"),
    ("windows_x86_64_gnullvm", "0.42.2"),
    ("windows_x86_64_gnullvm", "0.48.5"),
    ("windows_x86_64_gnullvm", "0.52.6"),
    ("windows_x86_64_msvc", "0.42.2"),
    ("windows_x86_64_msvc", "0.48.5"),
    ("windows_x86_64_msvc", "0.52.6"),
    ("winit", "0.30.13"),
    ("winnow", "1.0.4"),
    ("wit-bindgen", "0.57.1"),
    ("writeable", "0.6.3"),
    ("x11-dl", "2.21.0"),
    ("x11rb", "0.13.2"),
    ("x11rb-protocol", "0.13.2"),
    ("xcursor", "0.3.11"),
    ("xkbcommon-dl", "0.4.2"),
    ("xkeysym", "0.2.1"),
    ("xml-rs", "0.8.29"),
    ("xmlwriter", "0.1.0"),
    ("yoke", "0.8.3"),
    ("yoke-derive", "0.8.2"),
    ("zbus", "5.19.0"),
    ("zbus_macros", "5.19.0"),
    ("zbus_names", "4.3.4"),
    ("zcheapstr", "1.1.0"),
    ("zerocopy", "0.8.56"),
    ("zerocopy-derive", "0.8.56"),
    ("zerofrom", "0.1.8"),
    ("zerofrom-derive", "0.1.7"),
    ("zerotrie", "0.2.4"),
    ("zerovec", "0.11.6"),
    ("zerovec-derive", "0.11.3"),
    ("zip", "2.4.2"),
    ("zmij", "1.0.23"),
    ("zopfli", "0.8.3"),
    ("zune-core", "0.5.3"),
    ("zune-jpeg", "0.5.15"),
    ("zvariant", "5.14.0"),
    ("zvariant_derive", "5.14.0"),
    ("zvariant_utils", "4.0.0"),
];