audiowaveform 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/COPYING +674 -0
  3. data/Cargo.lock +1108 -0
  4. data/Cargo.toml +28 -0
  5. data/README.md +255 -0
  6. data/bindings/ruby/CHANGELOG.md +29 -0
  7. data/bindings/ruby/Cargo.lock +621 -0
  8. data/bindings/ruby/Cargo.toml +8 -0
  9. data/bindings/ruby/README.md +193 -0
  10. data/bindings/ruby/ext/audiowaveform/Cargo.toml +20 -0
  11. data/bindings/ruby/ext/audiowaveform/build.rs +4 -0
  12. data/bindings/ruby/ext/audiowaveform/extconf.rb +6 -0
  13. data/bindings/ruby/ext/audiowaveform/src/lib.rs +239 -0
  14. data/bindings/ruby/lib/audiowaveform/version.rb +5 -0
  15. data/bindings/ruby/lib/audiowaveform.rb +131 -0
  16. data/crates/audiowaveform/Cargo.toml +73 -0
  17. data/crates/audiowaveform/examples/generate_from_pcm.rs +25 -0
  18. data/crates/audiowaveform/examples/generate_waveform.rs +18 -0
  19. data/crates/audiowaveform/examples/render_waveform.rs +18 -0
  20. data/crates/audiowaveform/examples/resample_waveform.rs +19 -0
  21. data/crates/audiowaveform/src/audio.rs +938 -0
  22. data/crates/audiowaveform/src/color.rs +201 -0
  23. data/crates/audiowaveform/src/error.rs +89 -0
  24. data/crates/audiowaveform/src/format.rs +215 -0
  25. data/crates/audiowaveform/src/lib.rs +79 -0
  26. data/crates/audiowaveform/src/render.rs +802 -0
  27. data/crates/audiowaveform/src/wav.rs +95 -0
  28. data/crates/audiowaveform/src/waveform.rs +790 -0
  29. data/crates/audiowaveform/tests/formats.rs +223 -0
  30. data/crates/audiowaveform/tests/generate.rs +233 -0
  31. data/crates/audiowaveform/tests/render.rs +263 -0
  32. data/crates/audiowaveform/tests/support/mod.rs +125 -0
  33. data/crates/audiowaveform/tests/wav.rs +54 -0
  34. data/crates/audiowaveform/tests/waveform_io.rs +255 -0
  35. data/crates/audiowaveform-cli/Cargo.toml +43 -0
  36. data/crates/audiowaveform-cli/src/main.rs +803 -0
  37. data/crates/audiowaveform-cli/tests/cli.rs +483 -0
  38. data/crates/audiowaveform-cli/tests/support/mod.rs +111 -0
  39. data/sig/audiowaveform.rbs +33 -0
  40. metadata +100 -0
data/Cargo.lock ADDED
@@ -0,0 +1,1108 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "arrayvec"
78
+ version = "0.7.6"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
81
+
82
+ [[package]]
83
+ name = "assert_cmd"
84
+ version = "2.2.0"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
87
+ dependencies = [
88
+ "anstyle",
89
+ "bstr",
90
+ "libc",
91
+ "predicates",
92
+ "predicates-core",
93
+ "predicates-tree",
94
+ "wait-timeout",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "audiowaveform"
99
+ version = "1.10.3"
100
+ dependencies = [
101
+ "assert_cmd",
102
+ "byteorder",
103
+ "hound",
104
+ "image",
105
+ "png 0.17.16",
106
+ "predicates",
107
+ "serde",
108
+ "serde_json",
109
+ "symphonia",
110
+ "tempfile",
111
+ "thiserror",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "audiowaveform-cli"
116
+ version = "1.10.3"
117
+ dependencies = [
118
+ "assert_cmd",
119
+ "audiowaveform",
120
+ "clap",
121
+ "hound",
122
+ "image",
123
+ "predicates",
124
+ "tempfile",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "autocfg"
129
+ version = "1.5.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
132
+
133
+ [[package]]
134
+ name = "bitflags"
135
+ version = "1.3.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
138
+
139
+ [[package]]
140
+ name = "bitflags"
141
+ version = "2.11.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
144
+
145
+ [[package]]
146
+ name = "bstr"
147
+ version = "1.12.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
150
+ dependencies = [
151
+ "memchr",
152
+ "regex-automata",
153
+ "serde",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "bytemuck"
158
+ version = "1.25.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
161
+
162
+ [[package]]
163
+ name = "byteorder"
164
+ version = "1.5.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
167
+
168
+ [[package]]
169
+ name = "byteorder-lite"
170
+ version = "0.1.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
173
+
174
+ [[package]]
175
+ name = "cfg-if"
176
+ version = "1.0.4"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
179
+
180
+ [[package]]
181
+ name = "clap"
182
+ version = "4.6.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
185
+ dependencies = [
186
+ "clap_builder",
187
+ "clap_derive",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "clap_builder"
192
+ version = "4.6.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
195
+ dependencies = [
196
+ "anstream",
197
+ "anstyle",
198
+ "clap_lex",
199
+ "strsim",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "clap_derive"
204
+ version = "4.6.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
207
+ dependencies = [
208
+ "heck",
209
+ "proc-macro2",
210
+ "quote",
211
+ "syn",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "clap_lex"
216
+ version = "1.1.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
219
+
220
+ [[package]]
221
+ name = "colorchoice"
222
+ version = "1.0.5"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
225
+
226
+ [[package]]
227
+ name = "crc32fast"
228
+ version = "1.5.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
231
+ dependencies = [
232
+ "cfg-if",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "difflib"
237
+ version = "0.4.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
240
+
241
+ [[package]]
242
+ name = "encoding_rs"
243
+ version = "0.8.35"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
246
+ dependencies = [
247
+ "cfg-if",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "equivalent"
252
+ version = "1.0.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
255
+
256
+ [[package]]
257
+ name = "errno"
258
+ version = "0.3.14"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
261
+ dependencies = [
262
+ "libc",
263
+ "windows-sys",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "extended"
268
+ version = "0.1.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365"
271
+
272
+ [[package]]
273
+ name = "fastrand"
274
+ version = "2.3.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
277
+
278
+ [[package]]
279
+ name = "fdeflate"
280
+ version = "0.3.7"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
283
+ dependencies = [
284
+ "simd-adler32",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "flate2"
289
+ version = "1.1.9"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
292
+ dependencies = [
293
+ "crc32fast",
294
+ "miniz_oxide",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "float-cmp"
299
+ version = "0.10.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
302
+ dependencies = [
303
+ "num-traits",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "foldhash"
308
+ version = "0.1.5"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
311
+
312
+ [[package]]
313
+ name = "getrandom"
314
+ version = "0.4.2"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
317
+ dependencies = [
318
+ "cfg-if",
319
+ "libc",
320
+ "r-efi",
321
+ "wasip2",
322
+ "wasip3",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "hashbrown"
327
+ version = "0.15.5"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
330
+ dependencies = [
331
+ "foldhash",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "hashbrown"
336
+ version = "0.16.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
339
+
340
+ [[package]]
341
+ name = "heck"
342
+ version = "0.5.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
345
+
346
+ [[package]]
347
+ name = "hound"
348
+ version = "3.5.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f"
351
+
352
+ [[package]]
353
+ name = "id-arena"
354
+ version = "2.3.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
357
+
358
+ [[package]]
359
+ name = "image"
360
+ version = "0.25.10"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
363
+ dependencies = [
364
+ "bytemuck",
365
+ "byteorder-lite",
366
+ "moxcms",
367
+ "num-traits",
368
+ "png 0.18.1",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "indexmap"
373
+ version = "2.13.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
376
+ dependencies = [
377
+ "equivalent",
378
+ "hashbrown 0.16.1",
379
+ "serde",
380
+ "serde_core",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "is_terminal_polyfill"
385
+ version = "1.70.2"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
388
+
389
+ [[package]]
390
+ name = "itoa"
391
+ version = "1.0.18"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
394
+
395
+ [[package]]
396
+ name = "lazy_static"
397
+ version = "1.5.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
400
+
401
+ [[package]]
402
+ name = "leb128fmt"
403
+ version = "0.1.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
406
+
407
+ [[package]]
408
+ name = "libc"
409
+ version = "0.2.184"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
412
+
413
+ [[package]]
414
+ name = "linux-raw-sys"
415
+ version = "0.12.1"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
418
+
419
+ [[package]]
420
+ name = "log"
421
+ version = "0.4.29"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
424
+
425
+ [[package]]
426
+ name = "memchr"
427
+ version = "2.8.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
430
+
431
+ [[package]]
432
+ name = "miniz_oxide"
433
+ version = "0.8.9"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
436
+ dependencies = [
437
+ "adler2",
438
+ "simd-adler32",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "moxcms"
443
+ version = "0.8.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
446
+ dependencies = [
447
+ "num-traits",
448
+ "pxfm",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "normalize-line-endings"
453
+ version = "0.3.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
456
+
457
+ [[package]]
458
+ name = "num-traits"
459
+ version = "0.2.19"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
462
+ dependencies = [
463
+ "autocfg",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "once_cell"
468
+ version = "1.21.4"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
471
+
472
+ [[package]]
473
+ name = "once_cell_polyfill"
474
+ version = "1.70.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
477
+
478
+ [[package]]
479
+ name = "png"
480
+ version = "0.17.16"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
483
+ dependencies = [
484
+ "bitflags 1.3.2",
485
+ "crc32fast",
486
+ "fdeflate",
487
+ "flate2",
488
+ "miniz_oxide",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "png"
493
+ version = "0.18.1"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
496
+ dependencies = [
497
+ "bitflags 2.11.0",
498
+ "crc32fast",
499
+ "fdeflate",
500
+ "flate2",
501
+ "miniz_oxide",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "predicates"
506
+ version = "3.1.4"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
509
+ dependencies = [
510
+ "anstyle",
511
+ "difflib",
512
+ "float-cmp",
513
+ "normalize-line-endings",
514
+ "predicates-core",
515
+ "regex",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "predicates-core"
520
+ version = "1.0.10"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
523
+
524
+ [[package]]
525
+ name = "predicates-tree"
526
+ version = "1.0.13"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
529
+ dependencies = [
530
+ "predicates-core",
531
+ "termtree",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "prettyplease"
536
+ version = "0.2.37"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
539
+ dependencies = [
540
+ "proc-macro2",
541
+ "syn",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "proc-macro2"
546
+ version = "1.0.106"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
549
+ dependencies = [
550
+ "unicode-ident",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "pxfm"
555
+ version = "0.1.28"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
558
+
559
+ [[package]]
560
+ name = "quote"
561
+ version = "1.0.45"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
564
+ dependencies = [
565
+ "proc-macro2",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "r-efi"
570
+ version = "6.0.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
573
+
574
+ [[package]]
575
+ name = "regex"
576
+ version = "1.12.3"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
579
+ dependencies = [
580
+ "aho-corasick",
581
+ "memchr",
582
+ "regex-automata",
583
+ "regex-syntax",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "regex-automata"
588
+ version = "0.4.14"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
591
+ dependencies = [
592
+ "aho-corasick",
593
+ "memchr",
594
+ "regex-syntax",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "regex-syntax"
599
+ version = "0.8.10"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
602
+
603
+ [[package]]
604
+ name = "rustix"
605
+ version = "1.1.4"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
608
+ dependencies = [
609
+ "bitflags 2.11.0",
610
+ "errno",
611
+ "libc",
612
+ "linux-raw-sys",
613
+ "windows-sys",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "semver"
618
+ version = "1.0.27"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
621
+
622
+ [[package]]
623
+ name = "serde"
624
+ version = "1.0.228"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
627
+ dependencies = [
628
+ "serde_core",
629
+ "serde_derive",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "serde_core"
634
+ version = "1.0.228"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
637
+ dependencies = [
638
+ "serde_derive",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "serde_derive"
643
+ version = "1.0.228"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
646
+ dependencies = [
647
+ "proc-macro2",
648
+ "quote",
649
+ "syn",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "serde_json"
654
+ version = "1.0.149"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
657
+ dependencies = [
658
+ "itoa",
659
+ "memchr",
660
+ "serde",
661
+ "serde_core",
662
+ "zmij",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "simd-adler32"
667
+ version = "0.3.9"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
670
+
671
+ [[package]]
672
+ name = "strsim"
673
+ version = "0.11.1"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
676
+
677
+ [[package]]
678
+ name = "symphonia"
679
+ version = "0.5.5"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
682
+ dependencies = [
683
+ "lazy_static",
684
+ "symphonia-bundle-flac",
685
+ "symphonia-bundle-mp3",
686
+ "symphonia-codec-aac",
687
+ "symphonia-codec-adpcm",
688
+ "symphonia-codec-alac",
689
+ "symphonia-codec-pcm",
690
+ "symphonia-codec-vorbis",
691
+ "symphonia-core",
692
+ "symphonia-format-caf",
693
+ "symphonia-format-isomp4",
694
+ "symphonia-format-mkv",
695
+ "symphonia-format-ogg",
696
+ "symphonia-format-riff",
697
+ "symphonia-metadata",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "symphonia-bundle-flac"
702
+ version = "0.5.5"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "c91565e180aea25d9b80a910c546802526ffd0072d0b8974e3ebe59b686c9976"
705
+ dependencies = [
706
+ "log",
707
+ "symphonia-core",
708
+ "symphonia-metadata",
709
+ "symphonia-utils-xiph",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "symphonia-bundle-mp3"
714
+ version = "0.5.5"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
717
+ dependencies = [
718
+ "lazy_static",
719
+ "log",
720
+ "symphonia-core",
721
+ "symphonia-metadata",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "symphonia-codec-aac"
726
+ version = "0.5.5"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "4c263845aa86881416849c1729a54c7f55164f8b96111dba59de46849e73a790"
729
+ dependencies = [
730
+ "lazy_static",
731
+ "log",
732
+ "symphonia-core",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "symphonia-codec-adpcm"
737
+ version = "0.5.5"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "2dddc50e2bbea4cfe027441eece77c46b9f319748605ab8f3443350129ddd07f"
740
+ dependencies = [
741
+ "log",
742
+ "symphonia-core",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "symphonia-codec-alac"
747
+ version = "0.5.5"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "8413fa754942ac16a73634c9dfd1500ed5c61430956b33728567f667fdd393ab"
750
+ dependencies = [
751
+ "log",
752
+ "symphonia-core",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "symphonia-codec-pcm"
757
+ version = "0.5.5"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "4e89d716c01541ad3ebe7c91ce4c8d38a7cf266a3f7b2f090b108fb0cb031d95"
760
+ dependencies = [
761
+ "log",
762
+ "symphonia-core",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "symphonia-codec-vorbis"
767
+ version = "0.5.5"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "f025837c309cd69ffef572750b4a2257b59552c5399a5e49707cc5b1b85d1c73"
770
+ dependencies = [
771
+ "log",
772
+ "symphonia-core",
773
+ "symphonia-utils-xiph",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "symphonia-core"
778
+ version = "0.5.5"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
781
+ dependencies = [
782
+ "arrayvec",
783
+ "bitflags 1.3.2",
784
+ "bytemuck",
785
+ "lazy_static",
786
+ "log",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "symphonia-format-caf"
791
+ version = "0.5.5"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "b8faf379316b6b6e6bbc274d00e7a592e0d63ff1a7e182ce8ba25e24edd3d096"
794
+ dependencies = [
795
+ "log",
796
+ "symphonia-core",
797
+ "symphonia-metadata",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "symphonia-format-isomp4"
802
+ version = "0.5.5"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "243739585d11f81daf8dac8d9f3d18cc7898f6c09a259675fc364b382c30e0a5"
805
+ dependencies = [
806
+ "encoding_rs",
807
+ "log",
808
+ "symphonia-core",
809
+ "symphonia-metadata",
810
+ "symphonia-utils-xiph",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "symphonia-format-mkv"
815
+ version = "0.5.5"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "122d786d2c43a49beb6f397551b4a050d8229eaa54c7ddf9ee4b98899b8742d0"
818
+ dependencies = [
819
+ "lazy_static",
820
+ "log",
821
+ "symphonia-core",
822
+ "symphonia-metadata",
823
+ "symphonia-utils-xiph",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "symphonia-format-ogg"
828
+ version = "0.5.5"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "2b4955c67c1ed3aa8ae8428d04ca8397fbef6a19b2b051e73b5da8b1435639cb"
831
+ dependencies = [
832
+ "log",
833
+ "symphonia-core",
834
+ "symphonia-metadata",
835
+ "symphonia-utils-xiph",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "symphonia-format-riff"
840
+ version = "0.5.5"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "c2d7c3df0e7d94efb68401d81906eae73c02b40d5ec1a141962c592d0f11a96f"
843
+ dependencies = [
844
+ "extended",
845
+ "log",
846
+ "symphonia-core",
847
+ "symphonia-metadata",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "symphonia-metadata"
852
+ version = "0.5.5"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
855
+ dependencies = [
856
+ "encoding_rs",
857
+ "lazy_static",
858
+ "log",
859
+ "symphonia-core",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "symphonia-utils-xiph"
864
+ version = "0.5.5"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "ee27c85ab799a338446b68eec77abf42e1a6f1bb490656e121c6e27bfbab9f16"
867
+ dependencies = [
868
+ "symphonia-core",
869
+ "symphonia-metadata",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "syn"
874
+ version = "2.0.117"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
877
+ dependencies = [
878
+ "proc-macro2",
879
+ "quote",
880
+ "unicode-ident",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "tempfile"
885
+ version = "3.27.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
888
+ dependencies = [
889
+ "fastrand",
890
+ "getrandom",
891
+ "once_cell",
892
+ "rustix",
893
+ "windows-sys",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "termtree"
898
+ version = "0.5.1"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
901
+
902
+ [[package]]
903
+ name = "thiserror"
904
+ version = "2.0.18"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
907
+ dependencies = [
908
+ "thiserror-impl",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "thiserror-impl"
913
+ version = "2.0.18"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
916
+ dependencies = [
917
+ "proc-macro2",
918
+ "quote",
919
+ "syn",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "unicode-ident"
924
+ version = "1.0.24"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
927
+
928
+ [[package]]
929
+ name = "unicode-xid"
930
+ version = "0.2.6"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
933
+
934
+ [[package]]
935
+ name = "utf8parse"
936
+ version = "0.2.2"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
939
+
940
+ [[package]]
941
+ name = "wait-timeout"
942
+ version = "0.2.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
945
+ dependencies = [
946
+ "libc",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "wasip2"
951
+ version = "1.0.2+wasi-0.2.9"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
954
+ dependencies = [
955
+ "wit-bindgen",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "wasip3"
960
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
963
+ dependencies = [
964
+ "wit-bindgen",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "wasm-encoder"
969
+ version = "0.244.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
972
+ dependencies = [
973
+ "leb128fmt",
974
+ "wasmparser",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "wasm-metadata"
979
+ version = "0.244.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
982
+ dependencies = [
983
+ "anyhow",
984
+ "indexmap",
985
+ "wasm-encoder",
986
+ "wasmparser",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "wasmparser"
991
+ version = "0.244.0"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
994
+ dependencies = [
995
+ "bitflags 2.11.0",
996
+ "hashbrown 0.15.5",
997
+ "indexmap",
998
+ "semver",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "windows-link"
1003
+ version = "0.2.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1006
+
1007
+ [[package]]
1008
+ name = "windows-sys"
1009
+ version = "0.61.2"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1012
+ dependencies = [
1013
+ "windows-link",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "wit-bindgen"
1018
+ version = "0.51.0"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1021
+ dependencies = [
1022
+ "wit-bindgen-rust-macro",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "wit-bindgen-core"
1027
+ version = "0.51.0"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1030
+ dependencies = [
1031
+ "anyhow",
1032
+ "heck",
1033
+ "wit-parser",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "wit-bindgen-rust"
1038
+ version = "0.51.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1041
+ dependencies = [
1042
+ "anyhow",
1043
+ "heck",
1044
+ "indexmap",
1045
+ "prettyplease",
1046
+ "syn",
1047
+ "wasm-metadata",
1048
+ "wit-bindgen-core",
1049
+ "wit-component",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "wit-bindgen-rust-macro"
1054
+ version = "0.51.0"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1057
+ dependencies = [
1058
+ "anyhow",
1059
+ "prettyplease",
1060
+ "proc-macro2",
1061
+ "quote",
1062
+ "syn",
1063
+ "wit-bindgen-core",
1064
+ "wit-bindgen-rust",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "wit-component"
1069
+ version = "0.244.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1072
+ dependencies = [
1073
+ "anyhow",
1074
+ "bitflags 2.11.0",
1075
+ "indexmap",
1076
+ "log",
1077
+ "serde",
1078
+ "serde_derive",
1079
+ "serde_json",
1080
+ "wasm-encoder",
1081
+ "wasm-metadata",
1082
+ "wasmparser",
1083
+ "wit-parser",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "wit-parser"
1088
+ version = "0.244.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1091
+ dependencies = [
1092
+ "anyhow",
1093
+ "id-arena",
1094
+ "indexmap",
1095
+ "log",
1096
+ "semver",
1097
+ "serde",
1098
+ "serde_derive",
1099
+ "serde_json",
1100
+ "unicode-xid",
1101
+ "wasmparser",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "zmij"
1106
+ version = "1.0.21"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"