flexaudio 0.2.0__tar.gz

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 (85) hide show
  1. flexaudio-0.2.0/Cargo.lock +2383 -0
  2. flexaudio-0.2.0/Cargo.toml +25 -0
  3. flexaudio-0.2.0/LICENSE +21 -0
  4. flexaudio-0.2.0/PKG-INFO +133 -0
  5. flexaudio-0.2.0/README.md +117 -0
  6. flexaudio-0.2.0/THIRD_PARTY_NOTICES.md +497 -0
  7. flexaudio-0.2.0/bindings/flexaudio-py/Cargo.toml +45 -0
  8. flexaudio-0.2.0/bindings/flexaudio-py/LICENSE +21 -0
  9. flexaudio-0.2.0/bindings/flexaudio-py/README.md +117 -0
  10. flexaudio-0.2.0/bindings/flexaudio-py/THIRD_PARTY_NOTICES.md +497 -0
  11. flexaudio-0.2.0/bindings/flexaudio-py/src/config.rs +276 -0
  12. flexaudio-0.2.0/bindings/flexaudio-py/src/denoise.rs +61 -0
  13. flexaudio-0.2.0/bindings/flexaudio-py/src/encode.rs +249 -0
  14. flexaudio-0.2.0/bindings/flexaudio-py/src/lib.rs +253 -0
  15. flexaudio-0.2.0/bindings/flexaudio-py/src/marshal.rs +469 -0
  16. flexaudio-0.2.0/bindings/flexaudio-py/src/stream.rs +331 -0
  17. flexaudio-0.2.0/bindings/flexaudio-py/src/vad.rs +88 -0
  18. flexaudio-0.2.0/bindings/flexaudio-py/src/watcher.rs +66 -0
  19. flexaudio-0.2.0/crates/flexaudio/Cargo.toml +34 -0
  20. flexaudio-0.2.0/crates/flexaudio/LICENSE +21 -0
  21. flexaudio-0.2.0/crates/flexaudio/README.md +62 -0
  22. flexaudio-0.2.0/crates/flexaudio/THIRD_PARTY_NOTICES.md +415 -0
  23. flexaudio-0.2.0/crates/flexaudio/src/device_watcher.rs +151 -0
  24. flexaudio-0.2.0/crates/flexaudio/src/lib.rs +365 -0
  25. flexaudio-0.2.0/crates/flexaudio/src/mix.rs +1348 -0
  26. flexaudio-0.2.0/crates/flexaudio/src/mock.rs +526 -0
  27. flexaudio-0.2.0/crates/flexaudio/src/stream.rs +1682 -0
  28. flexaudio-0.2.0/crates/flexaudio/tests/integration.rs +460 -0
  29. flexaudio-0.2.0/crates/flexaudio-core/Cargo.toml +20 -0
  30. flexaudio-0.2.0/crates/flexaudio-core/LICENSE +21 -0
  31. flexaudio-0.2.0/crates/flexaudio-core/README.md +25 -0
  32. flexaudio-0.2.0/crates/flexaudio-core/src/backend.rs +131 -0
  33. flexaudio-0.2.0/crates/flexaudio-core/src/chunk_ring.rs +251 -0
  34. flexaudio-0.2.0/crates/flexaudio-core/src/clock.rs +144 -0
  35. flexaudio-0.2.0/crates/flexaudio-core/src/lib.rs +46 -0
  36. flexaudio-0.2.0/crates/flexaudio-core/src/normalizer.rs +915 -0
  37. flexaudio-0.2.0/crates/flexaudio-core/src/raw_ring.rs +267 -0
  38. flexaudio-0.2.0/crates/flexaudio-core/src/types.rs +483 -0
  39. flexaudio-0.2.0/crates/flexaudio-denoise/Cargo.toml +20 -0
  40. flexaudio-0.2.0/crates/flexaudio-denoise/LICENSE +21 -0
  41. flexaudio-0.2.0/crates/flexaudio-denoise/README.md +62 -0
  42. flexaudio-0.2.0/crates/flexaudio-denoise/src/lib.rs +522 -0
  43. flexaudio-0.2.0/crates/flexaudio-encode/Cargo.toml +24 -0
  44. flexaudio-0.2.0/crates/flexaudio-encode/LICENSE +21 -0
  45. flexaudio-0.2.0/crates/flexaudio-encode/README.md +74 -0
  46. flexaudio-0.2.0/crates/flexaudio-encode/src/error.rs +21 -0
  47. flexaudio-0.2.0/crates/flexaudio-encode/src/lib.rs +31 -0
  48. flexaudio-0.2.0/crates/flexaudio-encode/src/writer.rs +306 -0
  49. flexaudio-0.2.0/crates/flexaudio-encode/tests/roundtrip.rs +221 -0
  50. flexaudio-0.2.0/crates/flexaudio-mic/Cargo.toml +17 -0
  51. flexaudio-0.2.0/crates/flexaudio-mic/LICENSE +21 -0
  52. flexaudio-0.2.0/crates/flexaudio-mic/README.md +21 -0
  53. flexaudio-0.2.0/crates/flexaudio-mic/src/lib.rs +682 -0
  54. flexaudio-0.2.0/crates/flexaudio-os-linux/Cargo.toml +19 -0
  55. flexaudio-0.2.0/crates/flexaudio-os-linux/LICENSE +21 -0
  56. flexaudio-0.2.0/crates/flexaudio-os-linux/README.md +27 -0
  57. flexaudio-0.2.0/crates/flexaudio-os-linux/src/lib.rs +2835 -0
  58. flexaudio-0.2.0/crates/flexaudio-os-macos/Cargo.toml +43 -0
  59. flexaudio-0.2.0/crates/flexaudio-os-macos/LICENSE +21 -0
  60. flexaudio-0.2.0/crates/flexaudio-os-macos/README.md +32 -0
  61. flexaudio-0.2.0/crates/flexaudio-os-macos/src/common.rs +199 -0
  62. flexaudio-0.2.0/crates/flexaudio-os-macos/src/devices.rs +337 -0
  63. flexaudio-0.2.0/crates/flexaudio-os-macos/src/lib.rs +38 -0
  64. flexaudio-0.2.0/crates/flexaudio-os-macos/src/process.rs +193 -0
  65. flexaudio-0.2.0/crates/flexaudio-os-macos/src/system.rs +316 -0
  66. flexaudio-0.2.0/crates/flexaudio-os-macos/src/tap.rs +496 -0
  67. flexaudio-0.2.0/crates/flexaudio-os-macos/src/version.rs +139 -0
  68. flexaudio-0.2.0/crates/flexaudio-os-windows/Cargo.toml +42 -0
  69. flexaudio-0.2.0/crates/flexaudio-os-windows/LICENSE +21 -0
  70. flexaudio-0.2.0/crates/flexaudio-os-windows/README.md +32 -0
  71. flexaudio-0.2.0/crates/flexaudio-os-windows/src/common.rs +356 -0
  72. flexaudio-0.2.0/crates/flexaudio-os-windows/src/lib.rs +36 -0
  73. flexaudio-0.2.0/crates/flexaudio-os-windows/src/process.rs +505 -0
  74. flexaudio-0.2.0/crates/flexaudio-os-windows/src/system.rs +522 -0
  75. flexaudio-0.2.0/crates/flexaudio-vad/Cargo.toml +40 -0
  76. flexaudio-0.2.0/crates/flexaudio-vad/LICENSE +21 -0
  77. flexaudio-0.2.0/crates/flexaudio-vad/README.md +64 -0
  78. flexaudio-0.2.0/crates/flexaudio-vad/THIRD_PARTY_NOTICES.md +415 -0
  79. flexaudio-0.2.0/crates/flexaudio-vad/assets/silero_vad.onnx +0 -0
  80. flexaudio-0.2.0/crates/flexaudio-vad/examples/probe.rs +30 -0
  81. flexaudio-0.2.0/crates/flexaudio-vad/src/config.rs +130 -0
  82. flexaudio-0.2.0/crates/flexaudio-vad/src/lib.rs +796 -0
  83. flexaudio-0.2.0/crates/flexaudio-vad/src/resample.rs +325 -0
  84. flexaudio-0.2.0/crates/flexaudio-vad/src/segmenter.rs +197 -0
  85. flexaudio-0.2.0/pyproject.toml +36 -0
@@ -0,0 +1,2383 @@
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.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alsa"
16
+ version = "0.9.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "ed7572b7ba83a31e20d1b48970ee402d2e3e0537dcfe0a3ff4d6eb7508617d43"
19
+ dependencies = [
20
+ "alsa-sys",
21
+ "bitflags 2.13.0",
22
+ "cfg-if",
23
+ "libc",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "alsa-sys"
28
+ version = "0.3.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527"
31
+ dependencies = [
32
+ "libc",
33
+ "pkg-config",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "annotate-snippets"
38
+ version = "0.11.5"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
41
+ dependencies = [
42
+ "anstyle",
43
+ "unicode-width",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anstream"
48
+ version = "1.0.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
51
+ dependencies = [
52
+ "anstyle",
53
+ "anstyle-parse",
54
+ "anstyle-query",
55
+ "anstyle-wincon",
56
+ "colorchoice",
57
+ "is_terminal_polyfill",
58
+ "utf8parse",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anstyle"
63
+ version = "1.0.14"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
66
+
67
+ [[package]]
68
+ name = "anstyle-parse"
69
+ version = "1.0.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
72
+ dependencies = [
73
+ "utf8parse",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anstyle-query"
78
+ version = "1.1.5"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
81
+ dependencies = [
82
+ "windows-sys 0.61.2",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anstyle-wincon"
87
+ version = "3.0.11"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
90
+ dependencies = [
91
+ "anstyle",
92
+ "once_cell_polyfill",
93
+ "windows-sys 0.61.2",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "anymap3"
98
+ version = "1.1.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "fb5dfbc6d8d2675589ccbe4d0fd61df2419075625f8c1a62325e718e2b0049f9"
101
+
102
+ [[package]]
103
+ name = "array-init"
104
+ version = "2.1.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
107
+
108
+ [[package]]
109
+ name = "audio-core"
110
+ version = "0.2.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "f93ebbf82d06013f4c41fe71303feb980cddd78496d904d06be627972de51a24"
113
+
114
+ [[package]]
115
+ name = "audioadapter"
116
+ version = "3.0.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "91f87b70b051c5866680ad79f6743a42ccab264c009d1a71f4d33a3872ae60c8"
119
+ dependencies = [
120
+ "audio-core",
121
+ "num-traits",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "audioadapter-buffers"
126
+ version = "3.0.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "9097d67933fb083d382ce980430afdb758aada60846010aee6be068c06cef0ca"
129
+ dependencies = [
130
+ "audioadapter",
131
+ "audioadapter-sample",
132
+ "num-traits",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "audioadapter-sample"
137
+ version = "3.0.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "34ab94f2bc04a14e1f49ee5f222f66460e8a1b51627bdfedf34eed394d747938"
140
+ dependencies = [
141
+ "audio-core",
142
+ "num-traits",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "autocfg"
147
+ version = "1.5.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
150
+
151
+ [[package]]
152
+ name = "base64"
153
+ version = "0.22.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
156
+
157
+ [[package]]
158
+ name = "bindgen"
159
+ version = "0.72.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
162
+ dependencies = [
163
+ "annotate-snippets",
164
+ "bitflags 2.13.0",
165
+ "cexpr",
166
+ "clang-sys",
167
+ "itertools",
168
+ "proc-macro2",
169
+ "quote",
170
+ "regex",
171
+ "rustc-hash",
172
+ "shlex 1.3.0",
173
+ "syn",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "bitflags"
178
+ version = "1.3.2"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
181
+
182
+ [[package]]
183
+ name = "bitflags"
184
+ version = "2.13.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
187
+
188
+ [[package]]
189
+ name = "block-buffer"
190
+ version = "0.10.4"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
193
+ dependencies = [
194
+ "generic-array",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "block2"
199
+ version = "0.6.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
202
+ dependencies = [
203
+ "objc2",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "built"
208
+ version = "0.7.7"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
211
+
212
+ [[package]]
213
+ name = "bumpalo"
214
+ version = "3.20.3"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
217
+
218
+ [[package]]
219
+ name = "byteorder"
220
+ version = "1.5.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
223
+
224
+ [[package]]
225
+ name = "bytes"
226
+ version = "1.11.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
229
+
230
+ [[package]]
231
+ name = "cc"
232
+ version = "1.2.64"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
235
+ dependencies = [
236
+ "find-msvc-tools",
237
+ "shlex 2.0.1",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "cesu8"
242
+ version = "1.1.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
245
+
246
+ [[package]]
247
+ name = "cexpr"
248
+ version = "0.6.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
251
+ dependencies = [
252
+ "nom 7.1.3",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "cfg-expr"
257
+ version = "0.20.8"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "fb693542bcafa528e198be0ebd9d3632ca5b7c93dbe7237460e199910835997c"
260
+ dependencies = [
261
+ "smallvec",
262
+ "target-lexicon",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "cfg-if"
267
+ version = "1.0.4"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
270
+
271
+ [[package]]
272
+ name = "cfg_aliases"
273
+ version = "0.2.1"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
276
+
277
+ [[package]]
278
+ name = "clang-sys"
279
+ version = "1.8.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
282
+ dependencies = [
283
+ "glob",
284
+ "libc",
285
+ "libloading",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "clap"
290
+ version = "4.6.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
293
+ dependencies = [
294
+ "clap_builder",
295
+ "clap_derive",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "clap_builder"
300
+ version = "4.6.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
303
+ dependencies = [
304
+ "anstream",
305
+ "anstyle",
306
+ "clap_lex",
307
+ "strsim",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "clap_derive"
312
+ version = "4.6.1"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
315
+ dependencies = [
316
+ "heck",
317
+ "proc-macro2",
318
+ "quote",
319
+ "syn",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "clap_lex"
324
+ version = "1.1.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
327
+
328
+ [[package]]
329
+ name = "claxon"
330
+ version = "0.4.3"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "4bfbf56724aa9eca8afa4fcfadeb479e722935bb2a0900c2d37e0cc477af0688"
333
+
334
+ [[package]]
335
+ name = "colorchoice"
336
+ version = "1.0.5"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
339
+
340
+ [[package]]
341
+ name = "combine"
342
+ version = "4.6.7"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
345
+ dependencies = [
346
+ "bytes",
347
+ "memchr",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "convert_case"
352
+ version = "0.6.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
355
+ dependencies = [
356
+ "unicode-segmentation",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "cookie-factory"
361
+ version = "0.3.3"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
364
+
365
+ [[package]]
366
+ name = "coreaudio-rs"
367
+ version = "0.13.0"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "1aae284fbaf7d27aa0e292f7677dfbe26503b0d555026f702940805a630eac17"
370
+ dependencies = [
371
+ "bitflags 1.3.2",
372
+ "libc",
373
+ "objc2-audio-toolbox",
374
+ "objc2-core-audio",
375
+ "objc2-core-audio-types",
376
+ "objc2-core-foundation",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "cpal"
381
+ version = "0.16.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "cbd307f43cc2a697e2d1f8bc7a1d824b5269e052209e28883e5bc04d095aaa3f"
384
+ dependencies = [
385
+ "alsa",
386
+ "coreaudio-rs",
387
+ "dasp_sample",
388
+ "jni",
389
+ "js-sys",
390
+ "libc",
391
+ "mach2",
392
+ "ndk",
393
+ "ndk-context",
394
+ "num-derive",
395
+ "num-traits",
396
+ "objc2-audio-toolbox",
397
+ "objc2-core-audio",
398
+ "objc2-core-audio-types",
399
+ "wasm-bindgen",
400
+ "wasm-bindgen-futures",
401
+ "web-sys",
402
+ "windows",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "crc"
407
+ version = "3.4.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
410
+ dependencies = [
411
+ "crc-catalog",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "crc-catalog"
416
+ version = "2.5.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
419
+
420
+ [[package]]
421
+ name = "crossbeam-utils"
422
+ version = "0.8.21"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
425
+
426
+ [[package]]
427
+ name = "crypto-common"
428
+ version = "0.1.7"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
431
+ dependencies = [
432
+ "generic-array",
433
+ "typenum",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "ctor"
438
+ version = "0.2.9"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
441
+ dependencies = [
442
+ "quote",
443
+ "syn",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "ctrlc"
448
+ version = "3.5.2"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
451
+ dependencies = [
452
+ "dispatch2",
453
+ "nix",
454
+ "windows-sys 0.61.2",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "dasp_sample"
459
+ version = "0.11.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
462
+
463
+ [[package]]
464
+ name = "digest"
465
+ version = "0.10.7"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
468
+ dependencies = [
469
+ "block-buffer",
470
+ "crypto-common",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "dispatch2"
475
+ version = "0.3.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
478
+ dependencies = [
479
+ "bitflags 2.13.0",
480
+ "block2",
481
+ "libc",
482
+ "objc2",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "easyfft"
487
+ version = "0.4.2"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "767e39eef2ad8a3b6f1d733be3ec70364d21d437d06d4f18ea76ce08df20b75f"
490
+ dependencies = [
491
+ "array-init",
492
+ "generic_singleton",
493
+ "num-complex",
494
+ "realfft",
495
+ "rustfft",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "either"
500
+ version = "1.16.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
503
+
504
+ [[package]]
505
+ name = "equivalent"
506
+ version = "1.0.2"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
509
+
510
+ [[package]]
511
+ name = "errno"
512
+ version = "0.3.14"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
515
+ dependencies = [
516
+ "libc",
517
+ "windows-sys 0.61.2",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "find-msvc-tools"
522
+ version = "0.1.9"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
525
+
526
+ [[package]]
527
+ name = "flacenc"
528
+ version = "0.5.1"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "74c892c2b5fa08f967e8b5ad29121570b4762202f2402033ce08479ec65eccd0"
531
+ dependencies = [
532
+ "built",
533
+ "crc",
534
+ "heapless",
535
+ "md-5",
536
+ "num-traits",
537
+ "rustversion",
538
+ "seq-macro",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "flexaudio"
543
+ version = "0.2.0"
544
+ dependencies = [
545
+ "flexaudio-core",
546
+ "flexaudio-mic",
547
+ "flexaudio-os-linux",
548
+ "flexaudio-os-macos",
549
+ "flexaudio-os-windows",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "flexaudio-cli"
554
+ version = "0.2.0"
555
+ dependencies = [
556
+ "clap",
557
+ "ctrlc",
558
+ "flexaudio",
559
+ "flexaudio-mic",
560
+ "flexaudio-os-linux",
561
+ "hound",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "flexaudio-core"
566
+ version = "0.2.0"
567
+ dependencies = [
568
+ "bitflags 2.13.0",
569
+ "ringbuf",
570
+ "rtrb",
571
+ "rubato",
572
+ "thiserror 2.0.18",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "flexaudio-denoise"
577
+ version = "0.2.0"
578
+ dependencies = [
579
+ "nnnoiseless",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "flexaudio-encode"
584
+ version = "0.2.0"
585
+ dependencies = [
586
+ "claxon",
587
+ "flacenc",
588
+ "thiserror 2.0.18",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "flexaudio-ffi"
593
+ version = "0.2.0"
594
+ dependencies = [
595
+ "flexaudio",
596
+ "flexaudio-denoise",
597
+ "flexaudio-encode",
598
+ "flexaudio-vad",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "flexaudio-mic"
603
+ version = "0.2.0"
604
+ dependencies = [
605
+ "cpal",
606
+ "flexaudio-core",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "flexaudio-napi"
611
+ version = "0.2.0"
612
+ dependencies = [
613
+ "flexaudio",
614
+ "flexaudio-denoise",
615
+ "flexaudio-encode",
616
+ "flexaudio-vad",
617
+ "napi",
618
+ "napi-build",
619
+ "napi-derive",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "flexaudio-os-linux"
624
+ version = "0.2.0"
625
+ dependencies = [
626
+ "flexaudio-core",
627
+ "pipewire",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "flexaudio-os-macos"
632
+ version = "0.2.0"
633
+ dependencies = [
634
+ "block2",
635
+ "flexaudio-core",
636
+ "objc2",
637
+ "objc2-core-audio",
638
+ "objc2-core-audio-types",
639
+ "objc2-core-foundation",
640
+ "objc2-foundation",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "flexaudio-os-windows"
645
+ version = "0.2.0"
646
+ dependencies = [
647
+ "flexaudio-core",
648
+ "windows",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "flexaudio-py"
653
+ version = "0.2.0"
654
+ dependencies = [
655
+ "flexaudio",
656
+ "flexaudio-denoise",
657
+ "flexaudio-encode",
658
+ "flexaudio-vad",
659
+ "pyo3",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "flexaudio-vad"
664
+ version = "0.2.0"
665
+ dependencies = [
666
+ "ort",
667
+ "rubato",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "futures-core"
672
+ version = "0.3.32"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
675
+
676
+ [[package]]
677
+ name = "futures-task"
678
+ version = "0.3.32"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
681
+
682
+ [[package]]
683
+ name = "futures-util"
684
+ version = "0.3.32"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
687
+ dependencies = [
688
+ "futures-core",
689
+ "futures-task",
690
+ "pin-project-lite",
691
+ "slab",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "generic-array"
696
+ version = "0.14.7"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
699
+ dependencies = [
700
+ "typenum",
701
+ "version_check",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "generic_singleton"
706
+ version = "0.5.3"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "ab6e923c8e978e57cf63e2e200ca967d1d20f0ea2662b28f6d4e11c44aa6ab16"
709
+ dependencies = [
710
+ "anymap3",
711
+ "parking_lot",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "getrandom"
716
+ version = "0.2.17"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
719
+ dependencies = [
720
+ "cfg-if",
721
+ "libc",
722
+ "wasi",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "glob"
727
+ version = "0.3.3"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
730
+
731
+ [[package]]
732
+ name = "hash32"
733
+ version = "0.3.1"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
736
+ dependencies = [
737
+ "byteorder",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "hashbrown"
742
+ version = "0.17.1"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
745
+
746
+ [[package]]
747
+ name = "heapless"
748
+ version = "0.8.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
751
+ dependencies = [
752
+ "hash32",
753
+ "stable_deref_trait",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "heck"
758
+ version = "0.5.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
761
+
762
+ [[package]]
763
+ name = "hmac-sha256"
764
+ version = "1.1.14"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f"
767
+
768
+ [[package]]
769
+ name = "hound"
770
+ version = "3.5.1"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f"
773
+
774
+ [[package]]
775
+ name = "http"
776
+ version = "1.4.2"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
779
+ dependencies = [
780
+ "bytes",
781
+ "itoa",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "httparse"
786
+ version = "1.10.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
789
+
790
+ [[package]]
791
+ name = "indexmap"
792
+ version = "2.14.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
795
+ dependencies = [
796
+ "equivalent",
797
+ "hashbrown",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "is_terminal_polyfill"
802
+ version = "1.70.2"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
805
+
806
+ [[package]]
807
+ name = "itertools"
808
+ version = "0.13.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
811
+ dependencies = [
812
+ "either",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "itoa"
817
+ version = "1.0.18"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
820
+
821
+ [[package]]
822
+ name = "jni"
823
+ version = "0.21.1"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
826
+ dependencies = [
827
+ "cesu8",
828
+ "cfg-if",
829
+ "combine",
830
+ "jni-sys 0.3.1",
831
+ "log",
832
+ "thiserror 1.0.69",
833
+ "walkdir",
834
+ "windows-sys 0.45.0",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "jni-sys"
839
+ version = "0.3.1"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
842
+ dependencies = [
843
+ "jni-sys 0.4.1",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "jni-sys"
848
+ version = "0.4.1"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
851
+ dependencies = [
852
+ "jni-sys-macros",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "jni-sys-macros"
857
+ version = "0.4.1"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
860
+ dependencies = [
861
+ "quote",
862
+ "syn",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "js-sys"
867
+ version = "0.3.102"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
870
+ dependencies = [
871
+ "cfg-if",
872
+ "futures-util",
873
+ "wasm-bindgen",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "libc"
878
+ version = "0.2.186"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
881
+
882
+ [[package]]
883
+ name = "libloading"
884
+ version = "0.8.9"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
887
+ dependencies = [
888
+ "cfg-if",
889
+ "windows-link",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "libspa"
894
+ version = "0.10.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "2909f3be29d674e7f10604aff18d1bbe1bb03c4cd61c8a8ba19c0b1d162f7d4e"
897
+ dependencies = [
898
+ "bitflags 2.13.0",
899
+ "cc",
900
+ "cookie-factory",
901
+ "libc",
902
+ "libspa-sys",
903
+ "nom 8.0.0",
904
+ "rustix",
905
+ "system-deps",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "libspa-sys"
910
+ version = "0.10.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "69ad52764fca54818486f3cf75afec844d1f1a1568c24dcee25d41b1ab007dda"
913
+ dependencies = [
914
+ "bindgen",
915
+ "cc",
916
+ "system-deps",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "linux-raw-sys"
921
+ version = "0.12.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
924
+
925
+ [[package]]
926
+ name = "lock_api"
927
+ version = "0.4.14"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
930
+ dependencies = [
931
+ "scopeguard",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "log"
936
+ version = "0.4.32"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
939
+
940
+ [[package]]
941
+ name = "lzma-rust2"
942
+ version = "0.15.8"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "e20f57f9918e5bd7bc58c22cdd70a6afc7375d4dd9683af5f2b34bd3d2bba619"
945
+
946
+ [[package]]
947
+ name = "mach2"
948
+ version = "0.4.3"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
951
+ dependencies = [
952
+ "libc",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "matrixmultiply"
957
+ version = "0.3.10"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
960
+ dependencies = [
961
+ "autocfg",
962
+ "rawpointer",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "md-5"
967
+ version = "0.10.6"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
970
+ dependencies = [
971
+ "cfg-if",
972
+ "digest",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "memchr"
977
+ version = "2.8.2"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
980
+
981
+ [[package]]
982
+ name = "minimal-lexical"
983
+ version = "0.2.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
986
+
987
+ [[package]]
988
+ name = "napi"
989
+ version = "2.16.17"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
992
+ dependencies = [
993
+ "bitflags 2.13.0",
994
+ "ctor",
995
+ "napi-derive",
996
+ "napi-sys",
997
+ "once_cell",
998
+ "tokio",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "napi-build"
1003
+ version = "2.3.2"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
1006
+
1007
+ [[package]]
1008
+ name = "napi-derive"
1009
+ version = "2.16.13"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
1012
+ dependencies = [
1013
+ "cfg-if",
1014
+ "convert_case",
1015
+ "napi-derive-backend",
1016
+ "proc-macro2",
1017
+ "quote",
1018
+ "syn",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "napi-derive-backend"
1023
+ version = "1.0.75"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
1026
+ dependencies = [
1027
+ "convert_case",
1028
+ "once_cell",
1029
+ "proc-macro2",
1030
+ "quote",
1031
+ "regex",
1032
+ "semver",
1033
+ "syn",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "napi-sys"
1038
+ version = "2.4.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
1041
+ dependencies = [
1042
+ "libloading",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "ndarray"
1047
+ version = "0.17.2"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1050
+ dependencies = [
1051
+ "matrixmultiply",
1052
+ "num-complex",
1053
+ "num-integer",
1054
+ "num-traits",
1055
+ "portable-atomic",
1056
+ "portable-atomic-util",
1057
+ "rawpointer",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "ndk"
1062
+ version = "0.9.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1065
+ dependencies = [
1066
+ "bitflags 2.13.0",
1067
+ "jni-sys 0.3.1",
1068
+ "log",
1069
+ "ndk-sys",
1070
+ "num_enum",
1071
+ "thiserror 1.0.69",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "ndk-context"
1076
+ version = "0.1.1"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1079
+
1080
+ [[package]]
1081
+ name = "ndk-sys"
1082
+ version = "0.6.0+11769913"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1085
+ dependencies = [
1086
+ "jni-sys 0.3.1",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "nix"
1091
+ version = "0.31.3"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
1094
+ dependencies = [
1095
+ "bitflags 2.13.0",
1096
+ "cfg-if",
1097
+ "cfg_aliases",
1098
+ "libc",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "nnnoiseless"
1103
+ version = "0.5.2"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "805d5964d1e7a0006a7fdced7dae75084d66d18b35f1dfe81bd76929b1f8da0c"
1106
+ dependencies = [
1107
+ "easyfft",
1108
+ "once_cell",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "nom"
1113
+ version = "7.1.3"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1116
+ dependencies = [
1117
+ "memchr",
1118
+ "minimal-lexical",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "nom"
1123
+ version = "8.0.0"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1126
+ dependencies = [
1127
+ "memchr",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "num-complex"
1132
+ version = "0.4.6"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1135
+ dependencies = [
1136
+ "num-traits",
1137
+ "serde",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "num-derive"
1142
+ version = "0.4.2"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1145
+ dependencies = [
1146
+ "proc-macro2",
1147
+ "quote",
1148
+ "syn",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "num-integer"
1153
+ version = "0.1.46"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1156
+ dependencies = [
1157
+ "num-traits",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "num-traits"
1162
+ version = "0.2.19"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1165
+ dependencies = [
1166
+ "autocfg",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "num_enum"
1171
+ version = "0.7.6"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1174
+ dependencies = [
1175
+ "num_enum_derive",
1176
+ "rustversion",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "num_enum_derive"
1181
+ version = "0.7.6"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1184
+ dependencies = [
1185
+ "proc-macro-crate",
1186
+ "proc-macro2",
1187
+ "quote",
1188
+ "syn",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "objc2"
1193
+ version = "0.6.4"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1196
+ dependencies = [
1197
+ "objc2-encode",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "objc2-audio-toolbox"
1202
+ version = "0.3.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "6948501a91121d6399b79abaa33a8aa4ea7857fe019f341b8c23ad6e81b79b08"
1205
+ dependencies = [
1206
+ "bitflags 2.13.0",
1207
+ "libc",
1208
+ "objc2",
1209
+ "objc2-core-audio",
1210
+ "objc2-core-audio-types",
1211
+ "objc2-core-foundation",
1212
+ "objc2-foundation",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "objc2-core-audio"
1217
+ version = "0.3.2"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "e1eebcea8b0dbff5f7c8504f3107c68fc061a3eb44932051c8cf8a68d969c3b2"
1220
+ dependencies = [
1221
+ "block2",
1222
+ "dispatch2",
1223
+ "libc",
1224
+ "objc2",
1225
+ "objc2-core-audio-types",
1226
+ "objc2-core-foundation",
1227
+ "objc2-foundation",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "objc2-core-audio-types"
1232
+ version = "0.3.2"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "5a89f2ec274a0cf4a32642b2991e8b351a404d290da87bb6a9a9d8632490bd1c"
1235
+ dependencies = [
1236
+ "bitflags 2.13.0",
1237
+ "objc2",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "objc2-core-foundation"
1242
+ version = "0.3.2"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1245
+ dependencies = [
1246
+ "bitflags 2.13.0",
1247
+ "block2",
1248
+ "dispatch2",
1249
+ "libc",
1250
+ "objc2",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "objc2-encode"
1255
+ version = "4.1.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1258
+
1259
+ [[package]]
1260
+ name = "objc2-foundation"
1261
+ version = "0.3.2"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
1264
+ dependencies = [
1265
+ "bitflags 2.13.0",
1266
+ "block2",
1267
+ "libc",
1268
+ "objc2",
1269
+ "objc2-core-foundation",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "once_cell"
1274
+ version = "1.21.4"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1277
+
1278
+ [[package]]
1279
+ name = "once_cell_polyfill"
1280
+ version = "1.70.2"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1283
+
1284
+ [[package]]
1285
+ name = "ort"
1286
+ version = "2.0.0-rc.12"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "d7de3af33d24a745ffb8fab904b13478438d1cd52868e6f17735ef6e1f8bf133"
1289
+ dependencies = [
1290
+ "ndarray",
1291
+ "ort-sys",
1292
+ "smallvec",
1293
+ "tracing",
1294
+ "ureq",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "ort-sys"
1299
+ version = "2.0.0-rc.12"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "d7b497d21a8b6fbb4b5a544f8fadb77e801a09ae0add9e411d31c6f89e3c1e90"
1302
+ dependencies = [
1303
+ "hmac-sha256",
1304
+ "lzma-rust2",
1305
+ "ureq",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "parking_lot"
1310
+ version = "0.12.5"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1313
+ dependencies = [
1314
+ "lock_api",
1315
+ "parking_lot_core",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "parking_lot_core"
1320
+ version = "0.9.12"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1323
+ dependencies = [
1324
+ "cfg-if",
1325
+ "libc",
1326
+ "redox_syscall",
1327
+ "smallvec",
1328
+ "windows-link",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "percent-encoding"
1333
+ version = "2.3.2"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1336
+
1337
+ [[package]]
1338
+ name = "pin-project-lite"
1339
+ version = "0.2.17"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1342
+
1343
+ [[package]]
1344
+ name = "pipewire"
1345
+ version = "0.10.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "8585aba8a52ad74ccc633b8e293c1dc4277976bd5d510b925533f34fd6685f38"
1348
+ dependencies = [
1349
+ "bitflags 2.13.0",
1350
+ "libc",
1351
+ "libspa",
1352
+ "libspa-sys",
1353
+ "pipewire-sys",
1354
+ "rustix",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "pipewire-sys"
1359
+ version = "0.10.0"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "f2089f245b548723e60325773c27f586b7a2372c79ea941b246cd0d654706adc"
1362
+ dependencies = [
1363
+ "bindgen",
1364
+ "libspa-sys",
1365
+ "system-deps",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "pkg-config"
1370
+ version = "0.3.33"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1373
+
1374
+ [[package]]
1375
+ name = "portable-atomic"
1376
+ version = "1.13.1"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1379
+
1380
+ [[package]]
1381
+ name = "portable-atomic-util"
1382
+ version = "0.2.7"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1385
+ dependencies = [
1386
+ "portable-atomic",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "primal-check"
1391
+ version = "0.3.4"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
1394
+ dependencies = [
1395
+ "num-integer",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "proc-macro-crate"
1400
+ version = "3.5.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1403
+ dependencies = [
1404
+ "toml_edit",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "proc-macro2"
1409
+ version = "1.0.106"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1412
+ dependencies = [
1413
+ "unicode-ident",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "pyo3"
1418
+ version = "0.29.0"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1421
+ dependencies = [
1422
+ "libc",
1423
+ "once_cell",
1424
+ "portable-atomic",
1425
+ "pyo3-build-config",
1426
+ "pyo3-ffi",
1427
+ "pyo3-macros",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "pyo3-build-config"
1432
+ version = "0.29.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1435
+ dependencies = [
1436
+ "target-lexicon",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "pyo3-ffi"
1441
+ version = "0.29.0"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1444
+ dependencies = [
1445
+ "libc",
1446
+ "pyo3-build-config",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "pyo3-macros"
1451
+ version = "0.29.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1454
+ dependencies = [
1455
+ "proc-macro2",
1456
+ "pyo3-macros-backend",
1457
+ "quote",
1458
+ "syn",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "pyo3-macros-backend"
1463
+ version = "0.29.0"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1466
+ dependencies = [
1467
+ "heck",
1468
+ "proc-macro2",
1469
+ "quote",
1470
+ "syn",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "quote"
1475
+ version = "1.0.45"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1478
+ dependencies = [
1479
+ "proc-macro2",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "rawpointer"
1484
+ version = "0.2.1"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1487
+
1488
+ [[package]]
1489
+ name = "realfft"
1490
+ version = "3.5.0"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "f821338fddb99d089116342c46e9f1fbf3828dba077674613e734e01d6ea8677"
1493
+ dependencies = [
1494
+ "rustfft",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "redox_syscall"
1499
+ version = "0.5.18"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1502
+ dependencies = [
1503
+ "bitflags 2.13.0",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "regex"
1508
+ version = "1.12.4"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1511
+ dependencies = [
1512
+ "aho-corasick",
1513
+ "memchr",
1514
+ "regex-automata",
1515
+ "regex-syntax",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "regex-automata"
1520
+ version = "0.4.14"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1523
+ dependencies = [
1524
+ "aho-corasick",
1525
+ "memchr",
1526
+ "regex-syntax",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "regex-syntax"
1531
+ version = "0.8.11"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1534
+
1535
+ [[package]]
1536
+ name = "ring"
1537
+ version = "0.17.14"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1540
+ dependencies = [
1541
+ "cc",
1542
+ "cfg-if",
1543
+ "getrandom",
1544
+ "libc",
1545
+ "untrusted",
1546
+ "windows-sys 0.52.0",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "ringbuf"
1551
+ version = "0.4.8"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
1554
+ dependencies = [
1555
+ "crossbeam-utils",
1556
+ "portable-atomic",
1557
+ "portable-atomic-util",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "rtrb"
1562
+ version = "0.3.4"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "4ade083ccbb4bf536df69d1f6432cc23deb7acccff86b183f3923a6fd56a1153"
1565
+
1566
+ [[package]]
1567
+ name = "rubato"
1568
+ version = "3.0.0"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "d4be9c88e3d722d3d36939e41941f6b6f52810c1235bf19998a7d4535b402892"
1571
+ dependencies = [
1572
+ "audioadapter",
1573
+ "audioadapter-buffers",
1574
+ "num-complex",
1575
+ "num-integer",
1576
+ "num-traits",
1577
+ "realfft",
1578
+ "visibility",
1579
+ "windowfunctions",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "rustc-hash"
1584
+ version = "2.1.2"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1587
+
1588
+ [[package]]
1589
+ name = "rustfft"
1590
+ version = "6.4.1"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
1593
+ dependencies = [
1594
+ "num-complex",
1595
+ "num-integer",
1596
+ "num-traits",
1597
+ "primal-check",
1598
+ "strength_reduce",
1599
+ "transpose",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "rustix"
1604
+ version = "1.1.4"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1607
+ dependencies = [
1608
+ "bitflags 2.13.0",
1609
+ "errno",
1610
+ "libc",
1611
+ "linux-raw-sys",
1612
+ "windows-sys 0.61.2",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "rustls"
1617
+ version = "0.23.40"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1620
+ dependencies = [
1621
+ "log",
1622
+ "once_cell",
1623
+ "ring",
1624
+ "rustls-pki-types",
1625
+ "rustls-webpki",
1626
+ "subtle",
1627
+ "zeroize",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "rustls-pki-types"
1632
+ version = "1.14.1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1635
+ dependencies = [
1636
+ "zeroize",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "rustls-webpki"
1641
+ version = "0.103.13"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1644
+ dependencies = [
1645
+ "ring",
1646
+ "rustls-pki-types",
1647
+ "untrusted",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "rustversion"
1652
+ version = "1.0.22"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1655
+
1656
+ [[package]]
1657
+ name = "same-file"
1658
+ version = "1.0.6"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1661
+ dependencies = [
1662
+ "winapi-util",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "scopeguard"
1667
+ version = "1.2.0"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1670
+
1671
+ [[package]]
1672
+ name = "semver"
1673
+ version = "1.0.28"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1676
+
1677
+ [[package]]
1678
+ name = "seq-macro"
1679
+ version = "0.3.6"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1682
+
1683
+ [[package]]
1684
+ name = "serde"
1685
+ version = "1.0.228"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1688
+ dependencies = [
1689
+ "serde_core",
1690
+ ]
1691
+
1692
+ [[package]]
1693
+ name = "serde_core"
1694
+ version = "1.0.228"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1697
+ dependencies = [
1698
+ "serde_derive",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "serde_derive"
1703
+ version = "1.0.228"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1706
+ dependencies = [
1707
+ "proc-macro2",
1708
+ "quote",
1709
+ "syn",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "serde_spanned"
1714
+ version = "1.1.1"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1717
+ dependencies = [
1718
+ "serde_core",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "shlex"
1723
+ version = "1.3.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1726
+
1727
+ [[package]]
1728
+ name = "shlex"
1729
+ version = "2.0.1"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1732
+
1733
+ [[package]]
1734
+ name = "slab"
1735
+ version = "0.4.12"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1738
+
1739
+ [[package]]
1740
+ name = "smallvec"
1741
+ version = "1.15.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1744
+
1745
+ [[package]]
1746
+ name = "socks"
1747
+ version = "0.3.4"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
1750
+ dependencies = [
1751
+ "byteorder",
1752
+ "libc",
1753
+ "winapi",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "stable_deref_trait"
1758
+ version = "1.2.1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1761
+
1762
+ [[package]]
1763
+ name = "strength_reduce"
1764
+ version = "0.2.4"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
1767
+
1768
+ [[package]]
1769
+ name = "strsim"
1770
+ version = "0.11.1"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1773
+
1774
+ [[package]]
1775
+ name = "subtle"
1776
+ version = "2.6.1"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1779
+
1780
+ [[package]]
1781
+ name = "syn"
1782
+ version = "2.0.117"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1785
+ dependencies = [
1786
+ "proc-macro2",
1787
+ "quote",
1788
+ "unicode-ident",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "system-deps"
1793
+ version = "7.0.8"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "396a35feb67335377e0251fcbc1092fc85c484bd4e3a7a54319399da127796e7"
1796
+ dependencies = [
1797
+ "cfg-expr",
1798
+ "heck",
1799
+ "pkg-config",
1800
+ "toml",
1801
+ "version-compare",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "target-lexicon"
1806
+ version = "0.13.5"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1809
+
1810
+ [[package]]
1811
+ name = "thiserror"
1812
+ version = "1.0.69"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1815
+ dependencies = [
1816
+ "thiserror-impl 1.0.69",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "thiserror"
1821
+ version = "2.0.18"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1824
+ dependencies = [
1825
+ "thiserror-impl 2.0.18",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "thiserror-impl"
1830
+ version = "1.0.69"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1833
+ dependencies = [
1834
+ "proc-macro2",
1835
+ "quote",
1836
+ "syn",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "thiserror-impl"
1841
+ version = "2.0.18"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1844
+ dependencies = [
1845
+ "proc-macro2",
1846
+ "quote",
1847
+ "syn",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "tokio"
1852
+ version = "1.52.3"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1855
+ dependencies = [
1856
+ "pin-project-lite",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "toml"
1861
+ version = "1.1.2+spec-1.1.0"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
1864
+ dependencies = [
1865
+ "indexmap",
1866
+ "serde_core",
1867
+ "serde_spanned",
1868
+ "toml_datetime",
1869
+ "toml_parser",
1870
+ "toml_writer",
1871
+ "winnow",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "toml_datetime"
1876
+ version = "1.1.1+spec-1.1.0"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1879
+ dependencies = [
1880
+ "serde_core",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "toml_edit"
1885
+ version = "0.25.12+spec-1.1.0"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
1888
+ dependencies = [
1889
+ "indexmap",
1890
+ "toml_datetime",
1891
+ "toml_parser",
1892
+ "winnow",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "toml_parser"
1897
+ version = "1.1.2+spec-1.1.0"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1900
+ dependencies = [
1901
+ "winnow",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "toml_writer"
1906
+ version = "1.1.1+spec-1.1.0"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1909
+
1910
+ [[package]]
1911
+ name = "tracing"
1912
+ version = "0.1.44"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1915
+ dependencies = [
1916
+ "pin-project-lite",
1917
+ "tracing-core",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "tracing-core"
1922
+ version = "0.1.36"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1925
+ dependencies = [
1926
+ "once_cell",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "transpose"
1931
+ version = "0.2.3"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
1934
+ dependencies = [
1935
+ "num-integer",
1936
+ "strength_reduce",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "typenum"
1941
+ version = "1.20.1"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1944
+
1945
+ [[package]]
1946
+ name = "unicode-ident"
1947
+ version = "1.0.24"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1950
+
1951
+ [[package]]
1952
+ name = "unicode-segmentation"
1953
+ version = "1.13.3"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1956
+
1957
+ [[package]]
1958
+ name = "unicode-width"
1959
+ version = "0.2.2"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1962
+
1963
+ [[package]]
1964
+ name = "untrusted"
1965
+ version = "0.9.0"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1968
+
1969
+ [[package]]
1970
+ name = "ureq"
1971
+ version = "3.3.0"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
1974
+ dependencies = [
1975
+ "base64",
1976
+ "log",
1977
+ "percent-encoding",
1978
+ "rustls",
1979
+ "rustls-pki-types",
1980
+ "socks",
1981
+ "ureq-proto",
1982
+ "utf8-zero",
1983
+ "webpki-roots",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "ureq-proto"
1988
+ version = "0.6.0"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
1991
+ dependencies = [
1992
+ "base64",
1993
+ "http",
1994
+ "httparse",
1995
+ "log",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "utf8-zero"
2000
+ version = "0.8.1"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2003
+
2004
+ [[package]]
2005
+ name = "utf8parse"
2006
+ version = "0.2.2"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2009
+
2010
+ [[package]]
2011
+ name = "version-compare"
2012
+ version = "0.2.1"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
2015
+
2016
+ [[package]]
2017
+ name = "version_check"
2018
+ version = "0.9.5"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2021
+
2022
+ [[package]]
2023
+ name = "visibility"
2024
+ version = "0.1.1"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
2027
+ dependencies = [
2028
+ "proc-macro2",
2029
+ "quote",
2030
+ "syn",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "walkdir"
2035
+ version = "2.5.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2038
+ dependencies = [
2039
+ "same-file",
2040
+ "winapi-util",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "wasi"
2045
+ version = "0.11.1+wasi-snapshot-preview1"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2048
+
2049
+ [[package]]
2050
+ name = "wasm-bindgen"
2051
+ version = "0.2.125"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
2054
+ dependencies = [
2055
+ "cfg-if",
2056
+ "once_cell",
2057
+ "rustversion",
2058
+ "wasm-bindgen-macro",
2059
+ "wasm-bindgen-shared",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "wasm-bindgen-futures"
2064
+ version = "0.4.75"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
2067
+ dependencies = [
2068
+ "js-sys",
2069
+ "wasm-bindgen",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "wasm-bindgen-macro"
2074
+ version = "0.2.125"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
2077
+ dependencies = [
2078
+ "quote",
2079
+ "wasm-bindgen-macro-support",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "wasm-bindgen-macro-support"
2084
+ version = "0.2.125"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
2087
+ dependencies = [
2088
+ "bumpalo",
2089
+ "proc-macro2",
2090
+ "quote",
2091
+ "syn",
2092
+ "wasm-bindgen-shared",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "wasm-bindgen-shared"
2097
+ version = "0.2.125"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
2100
+ dependencies = [
2101
+ "unicode-ident",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "web-sys"
2106
+ version = "0.3.102"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
2109
+ dependencies = [
2110
+ "js-sys",
2111
+ "wasm-bindgen",
2112
+ ]
2113
+
2114
+ [[package]]
2115
+ name = "webpki-roots"
2116
+ version = "1.0.7"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
2119
+ dependencies = [
2120
+ "rustls-pki-types",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "winapi"
2125
+ version = "0.3.9"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2128
+ dependencies = [
2129
+ "winapi-i686-pc-windows-gnu",
2130
+ "winapi-x86_64-pc-windows-gnu",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "winapi-i686-pc-windows-gnu"
2135
+ version = "0.4.0"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2138
+
2139
+ [[package]]
2140
+ name = "winapi-util"
2141
+ version = "0.1.11"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2144
+ dependencies = [
2145
+ "windows-sys 0.61.2",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "winapi-x86_64-pc-windows-gnu"
2150
+ version = "0.4.0"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2153
+
2154
+ [[package]]
2155
+ name = "windowfunctions"
2156
+ version = "0.1.1"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "90628d739333b7c5d2ee0b70210b97b8cddc38440c682c96fd9e2c24c2db5f3a"
2159
+ dependencies = [
2160
+ "num-traits",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "windows"
2165
+ version = "0.54.0"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
2168
+ dependencies = [
2169
+ "windows-core",
2170
+ "windows-implement",
2171
+ "windows-interface",
2172
+ "windows-targets 0.52.6",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "windows-core"
2177
+ version = "0.54.0"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
2180
+ dependencies = [
2181
+ "windows-result",
2182
+ "windows-targets 0.52.6",
2183
+ ]
2184
+
2185
+ [[package]]
2186
+ name = "windows-implement"
2187
+ version = "0.53.0"
2188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2189
+ checksum = "942ac266be9249c84ca862f0a164a39533dc2f6f33dc98ec89c8da99b82ea0bd"
2190
+ dependencies = [
2191
+ "proc-macro2",
2192
+ "quote",
2193
+ "syn",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "windows-interface"
2198
+ version = "0.53.0"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "da33557140a288fae4e1d5f8873aaf9eb6613a9cf82c3e070223ff177f598b60"
2201
+ dependencies = [
2202
+ "proc-macro2",
2203
+ "quote",
2204
+ "syn",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "windows-link"
2209
+ version = "0.2.1"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2212
+
2213
+ [[package]]
2214
+ name = "windows-result"
2215
+ version = "0.1.2"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
2218
+ dependencies = [
2219
+ "windows-targets 0.52.6",
2220
+ ]
2221
+
2222
+ [[package]]
2223
+ name = "windows-sys"
2224
+ version = "0.45.0"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2227
+ dependencies = [
2228
+ "windows-targets 0.42.2",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "windows-sys"
2233
+ version = "0.52.0"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2236
+ dependencies = [
2237
+ "windows-targets 0.52.6",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "windows-sys"
2242
+ version = "0.61.2"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2245
+ dependencies = [
2246
+ "windows-link",
2247
+ ]
2248
+
2249
+ [[package]]
2250
+ name = "windows-targets"
2251
+ version = "0.42.2"
2252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2253
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2254
+ dependencies = [
2255
+ "windows_aarch64_gnullvm 0.42.2",
2256
+ "windows_aarch64_msvc 0.42.2",
2257
+ "windows_i686_gnu 0.42.2",
2258
+ "windows_i686_msvc 0.42.2",
2259
+ "windows_x86_64_gnu 0.42.2",
2260
+ "windows_x86_64_gnullvm 0.42.2",
2261
+ "windows_x86_64_msvc 0.42.2",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "windows-targets"
2266
+ version = "0.52.6"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2269
+ dependencies = [
2270
+ "windows_aarch64_gnullvm 0.52.6",
2271
+ "windows_aarch64_msvc 0.52.6",
2272
+ "windows_i686_gnu 0.52.6",
2273
+ "windows_i686_gnullvm",
2274
+ "windows_i686_msvc 0.52.6",
2275
+ "windows_x86_64_gnu 0.52.6",
2276
+ "windows_x86_64_gnullvm 0.52.6",
2277
+ "windows_x86_64_msvc 0.52.6",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "windows_aarch64_gnullvm"
2282
+ version = "0.42.2"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2285
+
2286
+ [[package]]
2287
+ name = "windows_aarch64_gnullvm"
2288
+ version = "0.52.6"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2291
+
2292
+ [[package]]
2293
+ name = "windows_aarch64_msvc"
2294
+ version = "0.42.2"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2297
+
2298
+ [[package]]
2299
+ name = "windows_aarch64_msvc"
2300
+ version = "0.52.6"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2303
+
2304
+ [[package]]
2305
+ name = "windows_i686_gnu"
2306
+ version = "0.42.2"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2309
+
2310
+ [[package]]
2311
+ name = "windows_i686_gnu"
2312
+ version = "0.52.6"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2315
+
2316
+ [[package]]
2317
+ name = "windows_i686_gnullvm"
2318
+ version = "0.52.6"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2321
+
2322
+ [[package]]
2323
+ name = "windows_i686_msvc"
2324
+ version = "0.42.2"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2327
+
2328
+ [[package]]
2329
+ name = "windows_i686_msvc"
2330
+ version = "0.52.6"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2333
+
2334
+ [[package]]
2335
+ name = "windows_x86_64_gnu"
2336
+ version = "0.42.2"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2339
+
2340
+ [[package]]
2341
+ name = "windows_x86_64_gnu"
2342
+ version = "0.52.6"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2345
+
2346
+ [[package]]
2347
+ name = "windows_x86_64_gnullvm"
2348
+ version = "0.42.2"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2351
+
2352
+ [[package]]
2353
+ name = "windows_x86_64_gnullvm"
2354
+ version = "0.52.6"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2357
+
2358
+ [[package]]
2359
+ name = "windows_x86_64_msvc"
2360
+ version = "0.42.2"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2363
+
2364
+ [[package]]
2365
+ name = "windows_x86_64_msvc"
2366
+ version = "0.52.6"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2369
+
2370
+ [[package]]
2371
+ name = "winnow"
2372
+ version = "1.0.3"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2375
+ dependencies = [
2376
+ "memchr",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "zeroize"
2381
+ version = "1.9.0"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"