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.
- checksums.yaml +7 -0
- data/COPYING +674 -0
- data/Cargo.lock +1108 -0
- data/Cargo.toml +28 -0
- data/README.md +255 -0
- data/bindings/ruby/CHANGELOG.md +29 -0
- data/bindings/ruby/Cargo.lock +621 -0
- data/bindings/ruby/Cargo.toml +8 -0
- data/bindings/ruby/README.md +193 -0
- data/bindings/ruby/ext/audiowaveform/Cargo.toml +20 -0
- data/bindings/ruby/ext/audiowaveform/build.rs +4 -0
- data/bindings/ruby/ext/audiowaveform/extconf.rb +6 -0
- data/bindings/ruby/ext/audiowaveform/src/lib.rs +239 -0
- data/bindings/ruby/lib/audiowaveform/version.rb +5 -0
- data/bindings/ruby/lib/audiowaveform.rb +131 -0
- data/crates/audiowaveform/Cargo.toml +73 -0
- data/crates/audiowaveform/examples/generate_from_pcm.rs +25 -0
- data/crates/audiowaveform/examples/generate_waveform.rs +18 -0
- data/crates/audiowaveform/examples/render_waveform.rs +18 -0
- data/crates/audiowaveform/examples/resample_waveform.rs +19 -0
- data/crates/audiowaveform/src/audio.rs +938 -0
- data/crates/audiowaveform/src/color.rs +201 -0
- data/crates/audiowaveform/src/error.rs +89 -0
- data/crates/audiowaveform/src/format.rs +215 -0
- data/crates/audiowaveform/src/lib.rs +79 -0
- data/crates/audiowaveform/src/render.rs +802 -0
- data/crates/audiowaveform/src/wav.rs +95 -0
- data/crates/audiowaveform/src/waveform.rs +790 -0
- data/crates/audiowaveform/tests/formats.rs +223 -0
- data/crates/audiowaveform/tests/generate.rs +233 -0
- data/crates/audiowaveform/tests/render.rs +263 -0
- data/crates/audiowaveform/tests/support/mod.rs +125 -0
- data/crates/audiowaveform/tests/wav.rs +54 -0
- data/crates/audiowaveform/tests/waveform_io.rs +255 -0
- data/crates/audiowaveform-cli/Cargo.toml +43 -0
- data/crates/audiowaveform-cli/src/main.rs +803 -0
- data/crates/audiowaveform-cli/tests/cli.rs +483 -0
- data/crates/audiowaveform-cli/tests/support/mod.rs +111 -0
- data/sig/audiowaveform.rbs +33 -0
- metadata +100 -0
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "arrayvec"
|
|
16
|
+
version = "0.7.8"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "audiowaveform"
|
|
22
|
+
version = "1.10.3"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"byteorder",
|
|
25
|
+
"serde",
|
|
26
|
+
"serde_json",
|
|
27
|
+
"symphonia",
|
|
28
|
+
"thiserror",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "audiowaveform-ruby"
|
|
33
|
+
version = "0.1.0"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"audiowaveform",
|
|
36
|
+
"magnus",
|
|
37
|
+
"rb-sys",
|
|
38
|
+
"rb-sys-env",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "bindgen"
|
|
43
|
+
version = "0.72.1"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"bitflags 2.13.1",
|
|
48
|
+
"cexpr",
|
|
49
|
+
"clang-sys",
|
|
50
|
+
"itertools",
|
|
51
|
+
"proc-macro2",
|
|
52
|
+
"quote",
|
|
53
|
+
"regex",
|
|
54
|
+
"rustc-hash",
|
|
55
|
+
"shlex",
|
|
56
|
+
"syn 2.0.119",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "bitflags"
|
|
61
|
+
version = "1.3.2"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "bitflags"
|
|
67
|
+
version = "2.13.1"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "bytemuck"
|
|
73
|
+
version = "1.25.2"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "byteorder"
|
|
79
|
+
version = "1.5.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "cexpr"
|
|
85
|
+
version = "0.6.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"nom",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "cfg-if"
|
|
94
|
+
version = "1.0.4"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "clang-sys"
|
|
100
|
+
version = "1.9.1"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"glob",
|
|
105
|
+
"libc",
|
|
106
|
+
"libloading",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "either"
|
|
111
|
+
version = "1.17.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "encoding_rs"
|
|
117
|
+
version = "0.8.35"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"cfg-if",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "extended"
|
|
126
|
+
version = "0.1.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "glob"
|
|
132
|
+
version = "0.3.4"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "itertools"
|
|
138
|
+
version = "0.13.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"either",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "itoa"
|
|
147
|
+
version = "1.0.18"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "lazy_static"
|
|
153
|
+
version = "1.5.0"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "libc"
|
|
159
|
+
version = "0.2.189"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "libloading"
|
|
165
|
+
version = "0.8.9"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"cfg-if",
|
|
170
|
+
"windows-link",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "log"
|
|
175
|
+
version = "0.4.34"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "magnus"
|
|
181
|
+
version = "0.8.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"magnus-macros",
|
|
186
|
+
"rb-sys",
|
|
187
|
+
"rb-sys-env",
|
|
188
|
+
"seq-macro",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "magnus-macros"
|
|
193
|
+
version = "0.8.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"proc-macro2",
|
|
198
|
+
"quote",
|
|
199
|
+
"syn 2.0.119",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "memchr"
|
|
204
|
+
version = "2.8.3"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "minimal-lexical"
|
|
210
|
+
version = "0.2.1"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "nom"
|
|
216
|
+
version = "7.1.3"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"memchr",
|
|
221
|
+
"minimal-lexical",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "proc-macro2"
|
|
226
|
+
version = "1.0.107"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"unicode-ident",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "quote"
|
|
235
|
+
version = "1.0.47"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"proc-macro2",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "rb-sys"
|
|
244
|
+
version = "0.9.128"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"rb-sys-build",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "rb-sys-build"
|
|
253
|
+
version = "0.9.128"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"bindgen",
|
|
258
|
+
"lazy_static",
|
|
259
|
+
"proc-macro2",
|
|
260
|
+
"quote",
|
|
261
|
+
"regex",
|
|
262
|
+
"shell-words",
|
|
263
|
+
"syn 2.0.119",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "rb-sys-env"
|
|
268
|
+
version = "0.2.3"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "regex"
|
|
274
|
+
version = "1.13.1"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"aho-corasick",
|
|
279
|
+
"memchr",
|
|
280
|
+
"regex-automata",
|
|
281
|
+
"regex-syntax",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "regex-automata"
|
|
286
|
+
version = "0.4.18"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"aho-corasick",
|
|
291
|
+
"memchr",
|
|
292
|
+
"regex-syntax",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "regex-syntax"
|
|
297
|
+
version = "0.8.11"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "rustc-hash"
|
|
303
|
+
version = "2.1.3"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "seq-macro"
|
|
309
|
+
version = "0.3.6"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "serde"
|
|
315
|
+
version = "1.0.229"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"serde_core",
|
|
320
|
+
"serde_derive",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "serde_core"
|
|
325
|
+
version = "1.0.229"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"serde_derive",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "serde_derive"
|
|
334
|
+
version = "1.0.229"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"proc-macro2",
|
|
339
|
+
"quote",
|
|
340
|
+
"syn 3.0.4",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "serde_json"
|
|
345
|
+
version = "1.0.151"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"itoa",
|
|
350
|
+
"memchr",
|
|
351
|
+
"serde",
|
|
352
|
+
"serde_core",
|
|
353
|
+
"zmij",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "shell-words"
|
|
358
|
+
version = "1.1.1"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "shlex"
|
|
364
|
+
version = "1.3.0"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "symphonia"
|
|
370
|
+
version = "0.5.5"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"lazy_static",
|
|
375
|
+
"symphonia-bundle-flac",
|
|
376
|
+
"symphonia-bundle-mp3",
|
|
377
|
+
"symphonia-codec-aac",
|
|
378
|
+
"symphonia-codec-adpcm",
|
|
379
|
+
"symphonia-codec-alac",
|
|
380
|
+
"symphonia-codec-pcm",
|
|
381
|
+
"symphonia-codec-vorbis",
|
|
382
|
+
"symphonia-core",
|
|
383
|
+
"symphonia-format-caf",
|
|
384
|
+
"symphonia-format-isomp4",
|
|
385
|
+
"symphonia-format-mkv",
|
|
386
|
+
"symphonia-format-ogg",
|
|
387
|
+
"symphonia-format-riff",
|
|
388
|
+
"symphonia-metadata",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "symphonia-bundle-flac"
|
|
393
|
+
version = "0.5.5"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "c91565e180aea25d9b80a910c546802526ffd0072d0b8974e3ebe59b686c9976"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"log",
|
|
398
|
+
"symphonia-core",
|
|
399
|
+
"symphonia-metadata",
|
|
400
|
+
"symphonia-utils-xiph",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "symphonia-bundle-mp3"
|
|
405
|
+
version = "0.5.5"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"lazy_static",
|
|
410
|
+
"log",
|
|
411
|
+
"symphonia-core",
|
|
412
|
+
"symphonia-metadata",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "symphonia-codec-aac"
|
|
417
|
+
version = "0.5.5"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "4c263845aa86881416849c1729a54c7f55164f8b96111dba59de46849e73a790"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"lazy_static",
|
|
422
|
+
"log",
|
|
423
|
+
"symphonia-core",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "symphonia-codec-adpcm"
|
|
428
|
+
version = "0.5.5"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "2dddc50e2bbea4cfe027441eece77c46b9f319748605ab8f3443350129ddd07f"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"log",
|
|
433
|
+
"symphonia-core",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "symphonia-codec-alac"
|
|
438
|
+
version = "0.5.5"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "8413fa754942ac16a73634c9dfd1500ed5c61430956b33728567f667fdd393ab"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"log",
|
|
443
|
+
"symphonia-core",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "symphonia-codec-pcm"
|
|
448
|
+
version = "0.5.5"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "4e89d716c01541ad3ebe7c91ce4c8d38a7cf266a3f7b2f090b108fb0cb031d95"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"log",
|
|
453
|
+
"symphonia-core",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "symphonia-codec-vorbis"
|
|
458
|
+
version = "0.5.5"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "f025837c309cd69ffef572750b4a2257b59552c5399a5e49707cc5b1b85d1c73"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"log",
|
|
463
|
+
"symphonia-core",
|
|
464
|
+
"symphonia-utils-xiph",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "symphonia-core"
|
|
469
|
+
version = "0.5.5"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"arrayvec",
|
|
474
|
+
"bitflags 1.3.2",
|
|
475
|
+
"bytemuck",
|
|
476
|
+
"lazy_static",
|
|
477
|
+
"log",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "symphonia-format-caf"
|
|
482
|
+
version = "0.5.5"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "b8faf379316b6b6e6bbc274d00e7a592e0d63ff1a7e182ce8ba25e24edd3d096"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"log",
|
|
487
|
+
"symphonia-core",
|
|
488
|
+
"symphonia-metadata",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "symphonia-format-isomp4"
|
|
493
|
+
version = "0.5.5"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "243739585d11f81daf8dac8d9f3d18cc7898f6c09a259675fc364b382c30e0a5"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"encoding_rs",
|
|
498
|
+
"log",
|
|
499
|
+
"symphonia-core",
|
|
500
|
+
"symphonia-metadata",
|
|
501
|
+
"symphonia-utils-xiph",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "symphonia-format-mkv"
|
|
506
|
+
version = "0.5.5"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "122d786d2c43a49beb6f397551b4a050d8229eaa54c7ddf9ee4b98899b8742d0"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"lazy_static",
|
|
511
|
+
"log",
|
|
512
|
+
"symphonia-core",
|
|
513
|
+
"symphonia-metadata",
|
|
514
|
+
"symphonia-utils-xiph",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "symphonia-format-ogg"
|
|
519
|
+
version = "0.5.5"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "2b4955c67c1ed3aa8ae8428d04ca8397fbef6a19b2b051e73b5da8b1435639cb"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"log",
|
|
524
|
+
"symphonia-core",
|
|
525
|
+
"symphonia-metadata",
|
|
526
|
+
"symphonia-utils-xiph",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "symphonia-format-riff"
|
|
531
|
+
version = "0.5.5"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "c2d7c3df0e7d94efb68401d81906eae73c02b40d5ec1a141962c592d0f11a96f"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"extended",
|
|
536
|
+
"log",
|
|
537
|
+
"symphonia-core",
|
|
538
|
+
"symphonia-metadata",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "symphonia-metadata"
|
|
543
|
+
version = "0.5.5"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"encoding_rs",
|
|
548
|
+
"lazy_static",
|
|
549
|
+
"log",
|
|
550
|
+
"symphonia-core",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "symphonia-utils-xiph"
|
|
555
|
+
version = "0.5.5"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "ee27c85ab799a338446b68eec77abf42e1a6f1bb490656e121c6e27bfbab9f16"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"symphonia-core",
|
|
560
|
+
"symphonia-metadata",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "syn"
|
|
565
|
+
version = "2.0.119"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"proc-macro2",
|
|
570
|
+
"quote",
|
|
571
|
+
"unicode-ident",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "syn"
|
|
576
|
+
version = "3.0.4"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"proc-macro2",
|
|
581
|
+
"quote",
|
|
582
|
+
"unicode-ident",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "thiserror"
|
|
587
|
+
version = "2.0.20"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"thiserror-impl",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "thiserror-impl"
|
|
596
|
+
version = "2.0.20"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"proc-macro2",
|
|
601
|
+
"quote",
|
|
602
|
+
"syn 3.0.4",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "unicode-ident"
|
|
607
|
+
version = "1.0.24"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "windows-link"
|
|
613
|
+
version = "0.2.1"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "zmij"
|
|
619
|
+
version = "1.0.23"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|