audio tagging utilities
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "adler2"
7version = "2.0.1"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
11[[package]]
12name = "anstream"
13version = "0.6.20"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
16dependencies = [
17 "anstyle",
18 "anstyle-parse",
19 "anstyle-query",
20 "anstyle-wincon",
21 "colorchoice",
22 "is_terminal_polyfill",
23 "utf8parse",
24]
25
26[[package]]
27name = "anstyle"
28version = "1.0.11"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
31
32[[package]]
33name = "anstyle-parse"
34version = "0.2.7"
35source = "registry+https://github.com/rust-lang/crates.io-index"
36checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
37dependencies = [
38 "utf8parse",
39]
40
41[[package]]
42name = "anstyle-query"
43version = "1.1.4"
44source = "registry+https://github.com/rust-lang/crates.io-index"
45checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
46dependencies = [
47 "windows-sys",
48]
49
50[[package]]
51name = "anstyle-wincon"
52version = "3.0.10"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
55dependencies = [
56 "anstyle",
57 "once_cell_polyfill",
58 "windows-sys",
59]
60
61[[package]]
62name = "audiotags"
63version = "0.5.0"
64source = "registry+https://github.com/rust-lang/crates.io-index"
65checksum = "44e797ce0164cf599c71f2c3849b56301d96a3dc033544588e875686b050ed39"
66dependencies = [
67 "audiotags-macro",
68 "id3",
69 "metaflac",
70 "mp4ameta",
71 "readme-rustdocifier",
72 "thiserror",
73]
74
75[[package]]
76name = "audiotags-macro"
77version = "0.2.0"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "8eaa9b2312fc01f7291f3b7b0f52ed08b1c0177c96a2e696ab55695cc4d06889"
80
81[[package]]
82name = "bitflags"
83version = "2.9.4"
84source = "registry+https://github.com/rust-lang/crates.io-index"
85checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
86
87[[package]]
88name = "byteorder"
89version = "1.5.0"
90source = "registry+https://github.com/rust-lang/crates.io-index"
91checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
92
93[[package]]
94name = "cfg-if"
95version = "1.0.3"
96source = "registry+https://github.com/rust-lang/crates.io-index"
97checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
98
99[[package]]
100name = "clap"
101version = "4.5.48"
102source = "registry+https://github.com/rust-lang/crates.io-index"
103checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
104dependencies = [
105 "clap_builder",
106 "clap_derive",
107]
108
109[[package]]
110name = "clap_builder"
111version = "4.5.48"
112source = "registry+https://github.com/rust-lang/crates.io-index"
113checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
114dependencies = [
115 "anstream",
116 "anstyle",
117 "clap_lex",
118 "strsim",
119]
120
121[[package]]
122name = "clap_derive"
123version = "4.5.47"
124source = "registry+https://github.com/rust-lang/crates.io-index"
125checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
126dependencies = [
127 "heck",
128 "proc-macro2",
129 "quote",
130 "syn",
131]
132
133[[package]]
134name = "clap_lex"
135version = "0.7.5"
136source = "registry+https://github.com/rust-lang/crates.io-index"
137checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
138
139[[package]]
140name = "colorchoice"
141version = "1.0.4"
142source = "registry+https://github.com/rust-lang/crates.io-index"
143checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
144
145[[package]]
146name = "crc32fast"
147version = "1.5.0"
148source = "registry+https://github.com/rust-lang/crates.io-index"
149checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
150dependencies = [
151 "cfg-if",
152]
153
154[[package]]
155name = "flate2"
156version = "1.1.2"
157source = "registry+https://github.com/rust-lang/crates.io-index"
158checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
159dependencies = [
160 "crc32fast",
161 "miniz_oxide",
162]
163
164[[package]]
165name = "heck"
166version = "0.5.0"
167source = "registry+https://github.com/rust-lang/crates.io-index"
168checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
169
170[[package]]
171name = "hex"
172version = "0.4.3"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
175
176[[package]]
177name = "id3"
178version = "1.16.3"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "aadb14a5ba1a0d58ecd4a29bfc9b8f1d119eee24aa01a62c1ec93eb9630a1d86"
181dependencies = [
182 "bitflags",
183 "byteorder",
184 "flate2",
185]
186
187[[package]]
188name = "is_terminal_polyfill"
189version = "1.70.1"
190source = "registry+https://github.com/rust-lang/crates.io-index"
191checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
192
193[[package]]
194name = "itoa"
195version = "1.0.15"
196source = "registry+https://github.com/rust-lang/crates.io-index"
197checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
198
199[[package]]
200name = "lazy_static"
201version = "1.5.0"
202source = "registry+https://github.com/rust-lang/crates.io-index"
203checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
204
205[[package]]
206name = "memchr"
207version = "2.7.5"
208source = "registry+https://github.com/rust-lang/crates.io-index"
209checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
210
211[[package]]
212name = "metaflac"
213version = "0.2.8"
214source = "registry+https://github.com/rust-lang/crates.io-index"
215checksum = "fdf25a3451319c52a4a56d956475fbbb763bfb8420e2187d802485cb0fd8d965"
216dependencies = [
217 "byteorder",
218 "hex",
219]
220
221[[package]]
222name = "miniz_oxide"
223version = "0.8.9"
224source = "registry+https://github.com/rust-lang/crates.io-index"
225checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
226dependencies = [
227 "adler2",
228]
229
230[[package]]
231name = "mp4ameta"
232version = "0.11.0"
233source = "registry+https://github.com/rust-lang/crates.io-index"
234checksum = "eb23d62e8eb5299a3f79657c70ea9269eac8f6239a76952689bcd06a74057e81"
235dependencies = [
236 "lazy_static",
237 "mp4ameta_proc",
238]
239
240[[package]]
241name = "mp4ameta_proc"
242version = "0.6.0"
243source = "registry+https://github.com/rust-lang/crates.io-index"
244checksum = "07dcca13d1740c0a665f77104803360da0bdb3323ecce2e93fa2c959a6d52806"
245
246[[package]]
247name = "once_cell_polyfill"
248version = "1.70.1"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
251
252[[package]]
253name = "proc-macro2"
254version = "1.0.101"
255source = "registry+https://github.com/rust-lang/crates.io-index"
256checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
257dependencies = [
258 "unicode-ident",
259]
260
261[[package]]
262name = "quote"
263version = "1.0.40"
264source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
266dependencies = [
267 "proc-macro2",
268]
269
270[[package]]
271name = "readme-rustdocifier"
272version = "0.1.1"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "08ad765b21a08b1a8e5cdce052719188a23772bcbefb3c439f0baaf62c56ceac"
275
276[[package]]
277name = "ryu"
278version = "1.0.20"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
281
282[[package]]
283name = "seekertools"
284version = "0.1.0"
285dependencies = [
286 "audiotags",
287 "clap",
288 "serde",
289 "serde_json",
290]
291
292[[package]]
293name = "serde"
294version = "1.0.226"
295source = "registry+https://github.com/rust-lang/crates.io-index"
296checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
297dependencies = [
298 "serde_core",
299 "serde_derive",
300]
301
302[[package]]
303name = "serde_core"
304version = "1.0.226"
305source = "registry+https://github.com/rust-lang/crates.io-index"
306checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
307dependencies = [
308 "serde_derive",
309]
310
311[[package]]
312name = "serde_derive"
313version = "1.0.226"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
316dependencies = [
317 "proc-macro2",
318 "quote",
319 "syn",
320]
321
322[[package]]
323name = "serde_json"
324version = "1.0.145"
325source = "registry+https://github.com/rust-lang/crates.io-index"
326checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
327dependencies = [
328 "itoa",
329 "memchr",
330 "ryu",
331 "serde",
332 "serde_core",
333]
334
335[[package]]
336name = "strsim"
337version = "0.11.1"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
340
341[[package]]
342name = "syn"
343version = "2.0.106"
344source = "registry+https://github.com/rust-lang/crates.io-index"
345checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
346dependencies = [
347 "proc-macro2",
348 "quote",
349 "unicode-ident",
350]
351
352[[package]]
353name = "thiserror"
354version = "1.0.69"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
357dependencies = [
358 "thiserror-impl",
359]
360
361[[package]]
362name = "thiserror-impl"
363version = "1.0.69"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
366dependencies = [
367 "proc-macro2",
368 "quote",
369 "syn",
370]
371
372[[package]]
373name = "unicode-ident"
374version = "1.0.19"
375source = "registry+https://github.com/rust-lang/crates.io-index"
376checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
377
378[[package]]
379name = "utf8parse"
380version = "0.2.2"
381source = "registry+https://github.com/rust-lang/crates.io-index"
382checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
383
384[[package]]
385name = "windows-link"
386version = "0.1.3"
387source = "registry+https://github.com/rust-lang/crates.io-index"
388checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
389
390[[package]]
391name = "windows-sys"
392version = "0.60.2"
393source = "registry+https://github.com/rust-lang/crates.io-index"
394checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
395dependencies = [
396 "windows-targets",
397]
398
399[[package]]
400name = "windows-targets"
401version = "0.53.3"
402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
404dependencies = [
405 "windows-link",
406 "windows_aarch64_gnullvm",
407 "windows_aarch64_msvc",
408 "windows_i686_gnu",
409 "windows_i686_gnullvm",
410 "windows_i686_msvc",
411 "windows_x86_64_gnu",
412 "windows_x86_64_gnullvm",
413 "windows_x86_64_msvc",
414]
415
416[[package]]
417name = "windows_aarch64_gnullvm"
418version = "0.53.0"
419source = "registry+https://github.com/rust-lang/crates.io-index"
420checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
421
422[[package]]
423name = "windows_aarch64_msvc"
424version = "0.53.0"
425source = "registry+https://github.com/rust-lang/crates.io-index"
426checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
427
428[[package]]
429name = "windows_i686_gnu"
430version = "0.53.0"
431source = "registry+https://github.com/rust-lang/crates.io-index"
432checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
433
434[[package]]
435name = "windows_i686_gnullvm"
436version = "0.53.0"
437source = "registry+https://github.com/rust-lang/crates.io-index"
438checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
439
440[[package]]
441name = "windows_i686_msvc"
442version = "0.53.0"
443source = "registry+https://github.com/rust-lang/crates.io-index"
444checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
445
446[[package]]
447name = "windows_x86_64_gnu"
448version = "0.53.0"
449source = "registry+https://github.com/rust-lang/crates.io-index"
450checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
451
452[[package]]
453name = "windows_x86_64_gnullvm"
454version = "0.53.0"
455source = "registry+https://github.com/rust-lang/crates.io-index"
456checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
457
458[[package]]
459name = "windows_x86_64_msvc"
460version = "0.53.0"
461source = "registry+https://github.com/rust-lang/crates.io-index"
462checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"