clud 2.0.2__tar.gz → 2.0.4__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.
- clud-2.0.4/Cargo.lock +2216 -0
- {clud-2.0.2 → clud-2.0.4}/Cargo.toml +5 -1
- {clud-2.0.2 → clud-2.0.4}/PKG-INFO +73 -2
- {clud-2.0.2 → clud-2.0.4}/README.md +72 -1
- {clud-2.0.2 → clud-2.0.4}/crates/clud-bin/Cargo.toml +16 -0
- {clud-2.0.2 → clud-2.0.4}/crates/clud-bin/src/args.rs +109 -46
- clud-2.0.4/crates/clud-bin/src/backend.rs +130 -0
- {clud-2.0.2 → clud-2.0.4}/crates/clud-bin/src/command.rs +24 -49
- clud-2.0.4/crates/clud-bin/src/daemon.rs +1681 -0
- {clud-2.0.2 → clud-2.0.4}/crates/clud-bin/src/main.rs +131 -68
- clud-2.0.4/crates/clud-bin/src/session.rs +392 -0
- {clud-2.0.2 → clud-2.0.4}/crates/clud-bin/src/trampoline.rs +34 -0
- clud-2.0.4/crates/clud-bin/src/voice.rs +608 -0
- {clud-2.0.2 → clud-2.0.4}/pyproject.toml +3 -2
- {clud-2.0.2 → clud-2.0.4}/src/clud/__init__.py +1 -1
- clud-2.0.2/Cargo.lock +0 -899
- clud-2.0.2/crates/clud-bin/src/backend.rs +0 -65
- {clud-2.0.2 → clud-2.0.4}/LICENSE +0 -0
- {clud-2.0.2 → clud-2.0.4}/crates/clud-bin/src/wasm.rs +0 -0
clud-2.0.4/Cargo.lock
ADDED
|
@@ -0,0 +1,2216 @@
|
|
|
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.11.1",
|
|
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 = "anstream"
|
|
38
|
+
version = "1.0.0"
|
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
40
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
41
|
+
dependencies = [
|
|
42
|
+
"anstyle",
|
|
43
|
+
"anstyle-parse",
|
|
44
|
+
"anstyle-query",
|
|
45
|
+
"anstyle-wincon",
|
|
46
|
+
"colorchoice",
|
|
47
|
+
"is_terminal_polyfill",
|
|
48
|
+
"utf8parse",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "anstyle"
|
|
53
|
+
version = "1.0.14"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "anstyle-parse"
|
|
59
|
+
version = "1.0.0"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
62
|
+
dependencies = [
|
|
63
|
+
"utf8parse",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "anstyle-query"
|
|
68
|
+
version = "1.1.5"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"windows-sys 0.61.2",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "anstyle-wincon"
|
|
77
|
+
version = "3.0.11"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"anstyle",
|
|
82
|
+
"once_cell_polyfill",
|
|
83
|
+
"windows-sys 0.61.2",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "anyhow"
|
|
88
|
+
version = "1.0.102"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "arrayvec"
|
|
94
|
+
version = "0.7.6"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "autocfg"
|
|
100
|
+
version = "1.5.0"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "base64"
|
|
106
|
+
version = "0.22.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "bindgen"
|
|
112
|
+
version = "0.72.1"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"bitflags 2.11.1",
|
|
117
|
+
"cexpr",
|
|
118
|
+
"clang-sys",
|
|
119
|
+
"itertools",
|
|
120
|
+
"log",
|
|
121
|
+
"prettyplease",
|
|
122
|
+
"proc-macro2",
|
|
123
|
+
"quote",
|
|
124
|
+
"regex",
|
|
125
|
+
"rustc-hash",
|
|
126
|
+
"shlex",
|
|
127
|
+
"syn",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bitflags"
|
|
132
|
+
version = "1.3.2"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bitflags"
|
|
138
|
+
version = "2.11.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "block2"
|
|
144
|
+
version = "0.6.2"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"objc2",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "bumpalo"
|
|
153
|
+
version = "3.20.2"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "bytemuck"
|
|
159
|
+
version = "1.25.0"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "bytes"
|
|
165
|
+
version = "1.11.1"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "cc"
|
|
171
|
+
version = "1.2.60"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"find-msvc-tools",
|
|
176
|
+
"shlex",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "cesu8"
|
|
181
|
+
version = "1.1.0"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "cexpr"
|
|
187
|
+
version = "0.6.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"nom",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "cfg-if"
|
|
196
|
+
version = "1.0.4"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "cfg_aliases"
|
|
202
|
+
version = "0.1.1"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "cfg_aliases"
|
|
208
|
+
version = "0.2.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "clang-sys"
|
|
214
|
+
version = "1.8.1"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"glob",
|
|
219
|
+
"libc",
|
|
220
|
+
"libloading",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "clap"
|
|
225
|
+
version = "4.6.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"clap_builder",
|
|
230
|
+
"clap_derive",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "clap_builder"
|
|
235
|
+
version = "4.6.0"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"anstream",
|
|
240
|
+
"anstyle",
|
|
241
|
+
"clap_lex",
|
|
242
|
+
"strsim",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "clap_derive"
|
|
247
|
+
version = "4.6.0"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"heck",
|
|
252
|
+
"proc-macro2",
|
|
253
|
+
"quote",
|
|
254
|
+
"syn",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "clap_lex"
|
|
259
|
+
version = "1.1.0"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "clud"
|
|
265
|
+
version = "2.0.4"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"base64",
|
|
268
|
+
"clap",
|
|
269
|
+
"cpal",
|
|
270
|
+
"crossterm",
|
|
271
|
+
"ctrlc",
|
|
272
|
+
"libc",
|
|
273
|
+
"rodio",
|
|
274
|
+
"running-process-core",
|
|
275
|
+
"serde",
|
|
276
|
+
"serde_json",
|
|
277
|
+
"sysinfo 0.37.2",
|
|
278
|
+
"terminal_size",
|
|
279
|
+
"wasmi",
|
|
280
|
+
"which",
|
|
281
|
+
"whisper-rs",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "cmake"
|
|
286
|
+
version = "0.1.58"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"cc",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "colorchoice"
|
|
295
|
+
version = "1.0.5"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "combine"
|
|
301
|
+
version = "4.6.7"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"bytes",
|
|
306
|
+
"memchr",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "convert_case"
|
|
311
|
+
version = "0.10.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"unicode-segmentation",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "core-foundation-sys"
|
|
320
|
+
version = "0.8.7"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "coreaudio-rs"
|
|
326
|
+
version = "0.13.0"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "1aae284fbaf7d27aa0e292f7677dfbe26503b0d555026f702940805a630eac17"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"bitflags 1.3.2",
|
|
331
|
+
"libc",
|
|
332
|
+
"objc2-audio-toolbox",
|
|
333
|
+
"objc2-core-audio",
|
|
334
|
+
"objc2-core-audio-types",
|
|
335
|
+
"objc2-core-foundation",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "cpal"
|
|
340
|
+
version = "0.16.0"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "cbd307f43cc2a697e2d1f8bc7a1d824b5269e052209e28883e5bc04d095aaa3f"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"alsa",
|
|
345
|
+
"coreaudio-rs",
|
|
346
|
+
"dasp_sample",
|
|
347
|
+
"jni",
|
|
348
|
+
"js-sys",
|
|
349
|
+
"libc",
|
|
350
|
+
"mach2",
|
|
351
|
+
"ndk",
|
|
352
|
+
"ndk-context",
|
|
353
|
+
"num-derive",
|
|
354
|
+
"num-traits",
|
|
355
|
+
"objc2-audio-toolbox",
|
|
356
|
+
"objc2-core-audio",
|
|
357
|
+
"objc2-core-audio-types",
|
|
358
|
+
"wasm-bindgen",
|
|
359
|
+
"wasm-bindgen-futures",
|
|
360
|
+
"web-sys",
|
|
361
|
+
"windows 0.54.0",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "crossbeam-deque"
|
|
366
|
+
version = "0.8.6"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"crossbeam-epoch",
|
|
371
|
+
"crossbeam-utils",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "crossbeam-epoch"
|
|
376
|
+
version = "0.9.18"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"crossbeam-utils",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "crossbeam-utils"
|
|
385
|
+
version = "0.8.21"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "crossterm"
|
|
391
|
+
version = "0.29.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"bitflags 2.11.1",
|
|
396
|
+
"crossterm_winapi",
|
|
397
|
+
"derive_more",
|
|
398
|
+
"document-features",
|
|
399
|
+
"mio",
|
|
400
|
+
"parking_lot",
|
|
401
|
+
"rustix",
|
|
402
|
+
"signal-hook",
|
|
403
|
+
"signal-hook-mio",
|
|
404
|
+
"winapi",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "crossterm_winapi"
|
|
409
|
+
version = "0.9.1"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"winapi",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "ctrlc"
|
|
418
|
+
version = "3.5.2"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"dispatch2",
|
|
423
|
+
"nix 0.31.2",
|
|
424
|
+
"windows-sys 0.61.2",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "dasp_sample"
|
|
429
|
+
version = "0.11.0"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "derive_more"
|
|
435
|
+
version = "2.1.1"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"derive_more-impl",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "derive_more-impl"
|
|
444
|
+
version = "2.1.1"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"convert_case",
|
|
449
|
+
"proc-macro2",
|
|
450
|
+
"quote",
|
|
451
|
+
"rustc_version",
|
|
452
|
+
"syn",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "dispatch2"
|
|
457
|
+
version = "0.3.1"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"bitflags 2.11.1",
|
|
462
|
+
"block2",
|
|
463
|
+
"libc",
|
|
464
|
+
"objc2",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "document-features"
|
|
469
|
+
version = "0.2.12"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"litrs",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "downcast-rs"
|
|
478
|
+
version = "1.2.1"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "either"
|
|
484
|
+
version = "1.15.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "encoding_rs"
|
|
490
|
+
version = "0.8.35"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"cfg-if",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "env_home"
|
|
499
|
+
version = "0.1.0"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "equivalent"
|
|
505
|
+
version = "1.0.2"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "errno"
|
|
511
|
+
version = "0.3.14"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"libc",
|
|
516
|
+
"windows-sys 0.61.2",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "extended"
|
|
521
|
+
version = "0.1.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "filedescriptor"
|
|
527
|
+
version = "0.8.3"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"libc",
|
|
532
|
+
"thiserror 1.0.69",
|
|
533
|
+
"winapi",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "find-msvc-tools"
|
|
538
|
+
version = "0.1.9"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "foldhash"
|
|
544
|
+
version = "0.1.5"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "fs_extra"
|
|
550
|
+
version = "1.3.0"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "futures-core"
|
|
556
|
+
version = "0.3.32"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "futures-task"
|
|
562
|
+
version = "0.3.32"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "futures-util"
|
|
568
|
+
version = "0.3.32"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"futures-core",
|
|
573
|
+
"futures-task",
|
|
574
|
+
"pin-project-lite",
|
|
575
|
+
"slab",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "glob"
|
|
580
|
+
version = "0.3.3"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "hashbrown"
|
|
586
|
+
version = "0.15.5"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"foldhash",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "hashbrown"
|
|
595
|
+
version = "0.17.0"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "heck"
|
|
601
|
+
version = "0.5.0"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "indexmap"
|
|
607
|
+
version = "2.14.0"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"equivalent",
|
|
612
|
+
"hashbrown 0.17.0",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "is_terminal_polyfill"
|
|
617
|
+
version = "1.70.2"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "itertools"
|
|
623
|
+
version = "0.13.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"either",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "itoa"
|
|
632
|
+
version = "1.0.18"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "jni"
|
|
638
|
+
version = "0.21.1"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"cesu8",
|
|
643
|
+
"cfg-if",
|
|
644
|
+
"combine",
|
|
645
|
+
"jni-sys 0.3.1",
|
|
646
|
+
"log",
|
|
647
|
+
"thiserror 1.0.69",
|
|
648
|
+
"walkdir",
|
|
649
|
+
"windows-sys 0.45.0",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "jni-sys"
|
|
654
|
+
version = "0.3.1"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"jni-sys 0.4.1",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "jni-sys"
|
|
663
|
+
version = "0.4.1"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"jni-sys-macros",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "jni-sys-macros"
|
|
672
|
+
version = "0.4.1"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"quote",
|
|
677
|
+
"syn",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "js-sys"
|
|
682
|
+
version = "0.3.95"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"cfg-if",
|
|
687
|
+
"futures-util",
|
|
688
|
+
"once_cell",
|
|
689
|
+
"wasm-bindgen",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "lazy_static"
|
|
694
|
+
version = "1.5.0"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "libc"
|
|
700
|
+
version = "0.2.185"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "libloading"
|
|
706
|
+
version = "0.8.9"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"cfg-if",
|
|
711
|
+
"windows-link 0.2.1",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "libm"
|
|
716
|
+
version = "0.2.16"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "linux-raw-sys"
|
|
722
|
+
version = "0.12.1"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "litrs"
|
|
728
|
+
version = "1.0.0"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "lock_api"
|
|
734
|
+
version = "0.4.14"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"scopeguard",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "log"
|
|
743
|
+
version = "0.4.29"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "mach2"
|
|
749
|
+
version = "0.4.3"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"libc",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "memchr"
|
|
758
|
+
version = "2.8.0"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "minimal-lexical"
|
|
764
|
+
version = "0.2.1"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "mio"
|
|
770
|
+
version = "1.2.0"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"libc",
|
|
775
|
+
"log",
|
|
776
|
+
"wasi",
|
|
777
|
+
"windows-sys 0.61.2",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "mock-agent"
|
|
782
|
+
version = "2.0.4"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"serde_json",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "multi-stash"
|
|
789
|
+
version = "0.2.0"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "685a9ac4b61f4e728e1d2c6a7844609c16527aeb5e6c865915c08e619c16410f"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "ndk"
|
|
795
|
+
version = "0.9.0"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"bitflags 2.11.1",
|
|
800
|
+
"jni-sys 0.3.1",
|
|
801
|
+
"log",
|
|
802
|
+
"ndk-sys",
|
|
803
|
+
"num_enum",
|
|
804
|
+
"thiserror 1.0.69",
|
|
805
|
+
]
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "ndk-context"
|
|
809
|
+
version = "0.1.1"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "ndk-sys"
|
|
815
|
+
version = "0.6.0+11769913"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"jni-sys 0.3.1",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "nix"
|
|
824
|
+
version = "0.28.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"bitflags 2.11.1",
|
|
829
|
+
"cfg-if",
|
|
830
|
+
"cfg_aliases 0.1.1",
|
|
831
|
+
"libc",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "nix"
|
|
836
|
+
version = "0.31.2"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"bitflags 2.11.1",
|
|
841
|
+
"cfg-if",
|
|
842
|
+
"cfg_aliases 0.2.1",
|
|
843
|
+
"libc",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "nom"
|
|
848
|
+
version = "7.1.3"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"memchr",
|
|
853
|
+
"minimal-lexical",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "ntapi"
|
|
858
|
+
version = "0.4.3"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"winapi",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "num-bigint"
|
|
867
|
+
version = "0.4.6"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"num-integer",
|
|
872
|
+
"num-traits",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "num-derive"
|
|
877
|
+
version = "0.4.2"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"proc-macro2",
|
|
882
|
+
"quote",
|
|
883
|
+
"syn",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "num-integer"
|
|
888
|
+
version = "0.1.46"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"num-traits",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "num-rational"
|
|
897
|
+
version = "0.4.2"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"num-bigint",
|
|
902
|
+
"num-integer",
|
|
903
|
+
"num-traits",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "num-traits"
|
|
908
|
+
version = "0.2.19"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"autocfg",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "num_enum"
|
|
917
|
+
version = "0.7.6"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"num_enum_derive",
|
|
922
|
+
"rustversion",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "num_enum_derive"
|
|
927
|
+
version = "0.7.6"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"proc-macro-crate",
|
|
932
|
+
"proc-macro2",
|
|
933
|
+
"quote",
|
|
934
|
+
"syn",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "objc2"
|
|
939
|
+
version = "0.6.4"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"objc2-encode",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "objc2-audio-toolbox"
|
|
948
|
+
version = "0.3.2"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "6948501a91121d6399b79abaa33a8aa4ea7857fe019f341b8c23ad6e81b79b08"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"bitflags 2.11.1",
|
|
953
|
+
"libc",
|
|
954
|
+
"objc2",
|
|
955
|
+
"objc2-core-audio",
|
|
956
|
+
"objc2-core-audio-types",
|
|
957
|
+
"objc2-core-foundation",
|
|
958
|
+
"objc2-foundation",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "objc2-core-audio"
|
|
963
|
+
version = "0.3.2"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "e1eebcea8b0dbff5f7c8504f3107c68fc061a3eb44932051c8cf8a68d969c3b2"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"dispatch2",
|
|
968
|
+
"objc2",
|
|
969
|
+
"objc2-core-audio-types",
|
|
970
|
+
"objc2-core-foundation",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "objc2-core-audio-types"
|
|
975
|
+
version = "0.3.2"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "5a89f2ec274a0cf4a32642b2991e8b351a404d290da87bb6a9a9d8632490bd1c"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"bitflags 2.11.1",
|
|
980
|
+
"objc2",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "objc2-core-foundation"
|
|
985
|
+
version = "0.3.2"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"bitflags 2.11.1",
|
|
990
|
+
"dispatch2",
|
|
991
|
+
"objc2",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "objc2-encode"
|
|
996
|
+
version = "4.1.0"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "objc2-foundation"
|
|
1002
|
+
version = "0.3.2"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"objc2",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "objc2-io-kit"
|
|
1011
|
+
version = "0.3.2"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"libc",
|
|
1016
|
+
"objc2-core-foundation",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "once_cell"
|
|
1021
|
+
version = "1.21.4"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "once_cell_polyfill"
|
|
1027
|
+
version = "1.70.2"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "parking_lot"
|
|
1033
|
+
version = "0.12.5"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"lock_api",
|
|
1038
|
+
"parking_lot_core",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "parking_lot_core"
|
|
1043
|
+
version = "0.9.12"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"cfg-if",
|
|
1048
|
+
"libc",
|
|
1049
|
+
"redox_syscall",
|
|
1050
|
+
"smallvec",
|
|
1051
|
+
"windows-link 0.2.1",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "pin-project-lite"
|
|
1056
|
+
version = "0.2.17"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "pkg-config"
|
|
1062
|
+
version = "0.3.33"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "portable-pty"
|
|
1068
|
+
version = "0.9.0"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "b4a596a2b3d2752d94f51fac2d4a96737b8705dddd311a32b9af47211f08671e"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"anyhow",
|
|
1073
|
+
"bitflags 1.3.2",
|
|
1074
|
+
"downcast-rs",
|
|
1075
|
+
"filedescriptor",
|
|
1076
|
+
"lazy_static",
|
|
1077
|
+
"libc",
|
|
1078
|
+
"log",
|
|
1079
|
+
"nix 0.28.0",
|
|
1080
|
+
"serial2",
|
|
1081
|
+
"shared_library",
|
|
1082
|
+
"shell-words",
|
|
1083
|
+
"winapi",
|
|
1084
|
+
"winreg",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "prettyplease"
|
|
1089
|
+
version = "0.2.37"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"proc-macro2",
|
|
1094
|
+
"syn",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "proc-macro-crate"
|
|
1099
|
+
version = "3.5.0"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"toml_edit",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "proc-macro2"
|
|
1108
|
+
version = "1.0.106"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"unicode-ident",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "quote"
|
|
1117
|
+
version = "1.0.45"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"proc-macro2",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "rayon"
|
|
1126
|
+
version = "1.12.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"either",
|
|
1131
|
+
"rayon-core",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "rayon-core"
|
|
1136
|
+
version = "1.13.0"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"crossbeam-deque",
|
|
1141
|
+
"crossbeam-utils",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "redox_syscall"
|
|
1146
|
+
version = "0.5.18"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"bitflags 2.11.1",
|
|
1151
|
+
]
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "regex"
|
|
1155
|
+
version = "1.12.3"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"aho-corasick",
|
|
1160
|
+
"memchr",
|
|
1161
|
+
"regex-automata",
|
|
1162
|
+
"regex-syntax",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "regex-automata"
|
|
1167
|
+
version = "0.4.14"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"aho-corasick",
|
|
1172
|
+
"memchr",
|
|
1173
|
+
"regex-syntax",
|
|
1174
|
+
]
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "regex-syntax"
|
|
1178
|
+
version = "0.8.10"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "rodio"
|
|
1184
|
+
version = "0.21.1"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "e40ecf59e742e03336be6a3d53755e789fd05a059fa22dfa0ed624722319e183"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"cpal",
|
|
1189
|
+
"dasp_sample",
|
|
1190
|
+
"num-rational",
|
|
1191
|
+
"symphonia",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "running-process-core"
|
|
1196
|
+
version = "3.1.0"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "981f9b790e0737a122aea2d0a9f5735163995223c8dcad1ec2e846d3685aefce"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"libc",
|
|
1201
|
+
"portable-pty",
|
|
1202
|
+
"sysinfo 0.30.13",
|
|
1203
|
+
"thiserror 2.0.18",
|
|
1204
|
+
"winapi",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "rustc-hash"
|
|
1209
|
+
version = "2.1.2"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "rustc_version"
|
|
1215
|
+
version = "0.4.1"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"semver",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "rustix"
|
|
1224
|
+
version = "1.1.4"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"bitflags 2.11.1",
|
|
1229
|
+
"errno",
|
|
1230
|
+
"libc",
|
|
1231
|
+
"linux-raw-sys",
|
|
1232
|
+
"windows-sys 0.61.2",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "rustversion"
|
|
1237
|
+
version = "1.0.22"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "same-file"
|
|
1243
|
+
version = "1.0.6"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"winapi-util",
|
|
1248
|
+
]
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "scopeguard"
|
|
1252
|
+
version = "1.2.0"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "semver"
|
|
1258
|
+
version = "1.0.28"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "serde"
|
|
1264
|
+
version = "1.0.228"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"serde_core",
|
|
1269
|
+
"serde_derive",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "serde_core"
|
|
1274
|
+
version = "1.0.228"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"serde_derive",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "serde_derive"
|
|
1283
|
+
version = "1.0.228"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"proc-macro2",
|
|
1288
|
+
"quote",
|
|
1289
|
+
"syn",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "serde_json"
|
|
1294
|
+
version = "1.0.149"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1297
|
+
dependencies = [
|
|
1298
|
+
"itoa",
|
|
1299
|
+
"memchr",
|
|
1300
|
+
"serde",
|
|
1301
|
+
"serde_core",
|
|
1302
|
+
"zmij",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "serial2"
|
|
1307
|
+
version = "0.2.36"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "fcdbc46aa3882ec3d48ec2b5abcb4f0d863a13d7599265f3faa6d851f23c12f3"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"cfg-if",
|
|
1312
|
+
"libc",
|
|
1313
|
+
"winapi",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "shared_library"
|
|
1318
|
+
version = "0.1.9"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"lazy_static",
|
|
1323
|
+
"libc",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "shell-words"
|
|
1328
|
+
version = "1.1.1"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "shlex"
|
|
1334
|
+
version = "1.3.0"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "signal-hook"
|
|
1340
|
+
version = "0.3.18"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"libc",
|
|
1345
|
+
"signal-hook-registry",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "signal-hook-mio"
|
|
1350
|
+
version = "0.2.5"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"libc",
|
|
1355
|
+
"mio",
|
|
1356
|
+
"signal-hook",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "signal-hook-registry"
|
|
1361
|
+
version = "1.4.8"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"errno",
|
|
1366
|
+
"libc",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "slab"
|
|
1371
|
+
version = "0.4.12"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "smallvec"
|
|
1377
|
+
version = "1.15.1"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "spin"
|
|
1383
|
+
version = "0.9.8"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1386
|
+
|
|
1387
|
+
[[package]]
|
|
1388
|
+
name = "string-interner"
|
|
1389
|
+
version = "0.18.0"
|
|
1390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
+
checksum = "1a3275464d7a9f2d4cac57c89c2ef96a8524dba2864c8d6f82e3980baf136f9b"
|
|
1392
|
+
dependencies = [
|
|
1393
|
+
"hashbrown 0.15.5",
|
|
1394
|
+
"serde",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "strsim"
|
|
1399
|
+
version = "0.11.1"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "symphonia"
|
|
1405
|
+
version = "0.5.5"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"lazy_static",
|
|
1410
|
+
"symphonia-bundle-flac",
|
|
1411
|
+
"symphonia-bundle-mp3",
|
|
1412
|
+
"symphonia-codec-aac",
|
|
1413
|
+
"symphonia-codec-pcm",
|
|
1414
|
+
"symphonia-codec-vorbis",
|
|
1415
|
+
"symphonia-core",
|
|
1416
|
+
"symphonia-format-isomp4",
|
|
1417
|
+
"symphonia-format-ogg",
|
|
1418
|
+
"symphonia-format-riff",
|
|
1419
|
+
"symphonia-metadata",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "symphonia-bundle-flac"
|
|
1424
|
+
version = "0.5.5"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "c91565e180aea25d9b80a910c546802526ffd0072d0b8974e3ebe59b686c9976"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"log",
|
|
1429
|
+
"symphonia-core",
|
|
1430
|
+
"symphonia-metadata",
|
|
1431
|
+
"symphonia-utils-xiph",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "symphonia-bundle-mp3"
|
|
1436
|
+
version = "0.5.5"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"lazy_static",
|
|
1441
|
+
"log",
|
|
1442
|
+
"symphonia-core",
|
|
1443
|
+
"symphonia-metadata",
|
|
1444
|
+
]
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "symphonia-codec-aac"
|
|
1448
|
+
version = "0.5.5"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "4c263845aa86881416849c1729a54c7f55164f8b96111dba59de46849e73a790"
|
|
1451
|
+
dependencies = [
|
|
1452
|
+
"lazy_static",
|
|
1453
|
+
"log",
|
|
1454
|
+
"symphonia-core",
|
|
1455
|
+
]
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "symphonia-codec-pcm"
|
|
1459
|
+
version = "0.5.5"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "4e89d716c01541ad3ebe7c91ce4c8d38a7cf266a3f7b2f090b108fb0cb031d95"
|
|
1462
|
+
dependencies = [
|
|
1463
|
+
"log",
|
|
1464
|
+
"symphonia-core",
|
|
1465
|
+
]
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "symphonia-codec-vorbis"
|
|
1469
|
+
version = "0.5.5"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "f025837c309cd69ffef572750b4a2257b59552c5399a5e49707cc5b1b85d1c73"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"log",
|
|
1474
|
+
"symphonia-core",
|
|
1475
|
+
"symphonia-utils-xiph",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "symphonia-core"
|
|
1480
|
+
version = "0.5.5"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"arrayvec",
|
|
1485
|
+
"bitflags 1.3.2",
|
|
1486
|
+
"bytemuck",
|
|
1487
|
+
"lazy_static",
|
|
1488
|
+
"log",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "symphonia-format-isomp4"
|
|
1493
|
+
version = "0.5.5"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "243739585d11f81daf8dac8d9f3d18cc7898f6c09a259675fc364b382c30e0a5"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"encoding_rs",
|
|
1498
|
+
"log",
|
|
1499
|
+
"symphonia-core",
|
|
1500
|
+
"symphonia-metadata",
|
|
1501
|
+
"symphonia-utils-xiph",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "symphonia-format-ogg"
|
|
1506
|
+
version = "0.5.5"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "2b4955c67c1ed3aa8ae8428d04ca8397fbef6a19b2b051e73b5da8b1435639cb"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"log",
|
|
1511
|
+
"symphonia-core",
|
|
1512
|
+
"symphonia-metadata",
|
|
1513
|
+
"symphonia-utils-xiph",
|
|
1514
|
+
]
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "symphonia-format-riff"
|
|
1518
|
+
version = "0.5.5"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "c2d7c3df0e7d94efb68401d81906eae73c02b40d5ec1a141962c592d0f11a96f"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"extended",
|
|
1523
|
+
"log",
|
|
1524
|
+
"symphonia-core",
|
|
1525
|
+
"symphonia-metadata",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "symphonia-metadata"
|
|
1530
|
+
version = "0.5.5"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"encoding_rs",
|
|
1535
|
+
"lazy_static",
|
|
1536
|
+
"log",
|
|
1537
|
+
"symphonia-core",
|
|
1538
|
+
]
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "symphonia-utils-xiph"
|
|
1542
|
+
version = "0.5.5"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "ee27c85ab799a338446b68eec77abf42e1a6f1bb490656e121c6e27bfbab9f16"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"symphonia-core",
|
|
1547
|
+
"symphonia-metadata",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "syn"
|
|
1552
|
+
version = "2.0.117"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1555
|
+
dependencies = [
|
|
1556
|
+
"proc-macro2",
|
|
1557
|
+
"quote",
|
|
1558
|
+
"unicode-ident",
|
|
1559
|
+
]
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "sysinfo"
|
|
1563
|
+
version = "0.30.13"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"cfg-if",
|
|
1568
|
+
"core-foundation-sys",
|
|
1569
|
+
"libc",
|
|
1570
|
+
"ntapi",
|
|
1571
|
+
"once_cell",
|
|
1572
|
+
"rayon",
|
|
1573
|
+
"windows 0.52.0",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "sysinfo"
|
|
1578
|
+
version = "0.37.2"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"libc",
|
|
1583
|
+
"memchr",
|
|
1584
|
+
"ntapi",
|
|
1585
|
+
"objc2-core-foundation",
|
|
1586
|
+
"objc2-io-kit",
|
|
1587
|
+
"windows 0.61.3",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "terminal_size"
|
|
1592
|
+
version = "0.4.4"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"rustix",
|
|
1597
|
+
"windows-sys 0.61.2",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "thiserror"
|
|
1602
|
+
version = "1.0.69"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"thiserror-impl 1.0.69",
|
|
1607
|
+
]
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "thiserror"
|
|
1611
|
+
version = "2.0.18"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"thiserror-impl 2.0.18",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "thiserror-impl"
|
|
1620
|
+
version = "1.0.69"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"proc-macro2",
|
|
1625
|
+
"quote",
|
|
1626
|
+
"syn",
|
|
1627
|
+
]
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "thiserror-impl"
|
|
1631
|
+
version = "2.0.18"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"proc-macro2",
|
|
1636
|
+
"quote",
|
|
1637
|
+
"syn",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "toml_datetime"
|
|
1642
|
+
version = "1.1.1+spec-1.1.0"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1645
|
+
dependencies = [
|
|
1646
|
+
"serde_core",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "toml_edit"
|
|
1651
|
+
version = "0.25.11+spec-1.1.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"indexmap",
|
|
1656
|
+
"toml_datetime",
|
|
1657
|
+
"toml_parser",
|
|
1658
|
+
"winnow",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "toml_parser"
|
|
1663
|
+
version = "1.1.2+spec-1.1.0"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"winnow",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "unicode-ident"
|
|
1672
|
+
version = "1.0.24"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "unicode-segmentation"
|
|
1678
|
+
version = "1.13.2"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "utf8parse"
|
|
1684
|
+
version = "0.2.2"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "walkdir"
|
|
1690
|
+
version = "2.5.0"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1693
|
+
dependencies = [
|
|
1694
|
+
"same-file",
|
|
1695
|
+
"winapi-util",
|
|
1696
|
+
]
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "wasi"
|
|
1700
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "wasm-bindgen"
|
|
1706
|
+
version = "0.2.118"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"cfg-if",
|
|
1711
|
+
"once_cell",
|
|
1712
|
+
"rustversion",
|
|
1713
|
+
"wasm-bindgen-macro",
|
|
1714
|
+
"wasm-bindgen-shared",
|
|
1715
|
+
]
|
|
1716
|
+
|
|
1717
|
+
[[package]]
|
|
1718
|
+
name = "wasm-bindgen-futures"
|
|
1719
|
+
version = "0.4.68"
|
|
1720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
1722
|
+
dependencies = [
|
|
1723
|
+
"js-sys",
|
|
1724
|
+
"wasm-bindgen",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "wasm-bindgen-macro"
|
|
1729
|
+
version = "0.2.118"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"quote",
|
|
1734
|
+
"wasm-bindgen-macro-support",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "wasm-bindgen-macro-support"
|
|
1739
|
+
version = "0.2.118"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"bumpalo",
|
|
1744
|
+
"proc-macro2",
|
|
1745
|
+
"quote",
|
|
1746
|
+
"syn",
|
|
1747
|
+
"wasm-bindgen-shared",
|
|
1748
|
+
]
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "wasm-bindgen-shared"
|
|
1752
|
+
version = "0.2.118"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
1755
|
+
dependencies = [
|
|
1756
|
+
"unicode-ident",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "wasmi"
|
|
1761
|
+
version = "0.40.0"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "a19af97fcb96045dd1d6b4d23e2b4abdbbe81723dbc5c9f016eb52145b320063"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"arrayvec",
|
|
1766
|
+
"multi-stash",
|
|
1767
|
+
"smallvec",
|
|
1768
|
+
"spin",
|
|
1769
|
+
"wasmi_collections",
|
|
1770
|
+
"wasmi_core",
|
|
1771
|
+
"wasmi_ir",
|
|
1772
|
+
"wasmparser",
|
|
1773
|
+
]
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "wasmi_collections"
|
|
1777
|
+
version = "0.40.0"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "e80d6b275b1c922021939d561574bf376613493ae2b61c6963b15db0e8813562"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"string-interner",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "wasmi_core"
|
|
1786
|
+
version = "0.40.0"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "3a8c51482cc32d31c2c7ff211cd2bedd73c5bd057ba16a2ed0110e7a96097c33"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"downcast-rs",
|
|
1791
|
+
"libm",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "wasmi_ir"
|
|
1796
|
+
version = "0.40.0"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "6e431a14c186db59212a88516788bd68ed51f87aa1e08d1df742522867b5289a"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"wasmi_core",
|
|
1801
|
+
]
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "wasmparser"
|
|
1805
|
+
version = "0.221.3"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185"
|
|
1808
|
+
dependencies = [
|
|
1809
|
+
"bitflags 2.11.1",
|
|
1810
|
+
"indexmap",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "web-sys"
|
|
1815
|
+
version = "0.3.95"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"js-sys",
|
|
1820
|
+
"wasm-bindgen",
|
|
1821
|
+
]
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "which"
|
|
1825
|
+
version = "7.0.3"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "24d643ce3fd3e5b54854602a080f34fb10ab75e0b813ee32d00ca2b44fa74762"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"either",
|
|
1830
|
+
"env_home",
|
|
1831
|
+
"rustix",
|
|
1832
|
+
"winsafe",
|
|
1833
|
+
]
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "whisper-rs"
|
|
1837
|
+
version = "0.16.0"
|
|
1838
|
+
dependencies = [
|
|
1839
|
+
"whisper-rs-sys",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "whisper-rs-sys"
|
|
1844
|
+
version = "0.15.0"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"bindgen",
|
|
1847
|
+
"cfg-if",
|
|
1848
|
+
"cmake",
|
|
1849
|
+
"fs_extra",
|
|
1850
|
+
"semver",
|
|
1851
|
+
]
|
|
1852
|
+
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "winapi"
|
|
1855
|
+
version = "0.3.9"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1858
|
+
dependencies = [
|
|
1859
|
+
"winapi-i686-pc-windows-gnu",
|
|
1860
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1865
|
+
version = "0.4.0"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "winapi-util"
|
|
1871
|
+
version = "0.1.11"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"windows-sys 0.61.2",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1880
|
+
version = "0.4.0"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1883
|
+
|
|
1884
|
+
[[package]]
|
|
1885
|
+
name = "windows"
|
|
1886
|
+
version = "0.52.0"
|
|
1887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
|
1889
|
+
dependencies = [
|
|
1890
|
+
"windows-core 0.52.0",
|
|
1891
|
+
"windows-targets 0.52.6",
|
|
1892
|
+
]
|
|
1893
|
+
|
|
1894
|
+
[[package]]
|
|
1895
|
+
name = "windows"
|
|
1896
|
+
version = "0.54.0"
|
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
+
checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
|
|
1899
|
+
dependencies = [
|
|
1900
|
+
"windows-core 0.54.0",
|
|
1901
|
+
"windows-targets 0.52.6",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "windows"
|
|
1906
|
+
version = "0.61.3"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"windows-collections",
|
|
1911
|
+
"windows-core 0.61.2",
|
|
1912
|
+
"windows-future",
|
|
1913
|
+
"windows-link 0.1.3",
|
|
1914
|
+
"windows-numerics",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "windows-collections"
|
|
1919
|
+
version = "0.2.0"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"windows-core 0.61.2",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "windows-core"
|
|
1928
|
+
version = "0.52.0"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"windows-targets 0.52.6",
|
|
1933
|
+
]
|
|
1934
|
+
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "windows-core"
|
|
1937
|
+
version = "0.54.0"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
|
|
1940
|
+
dependencies = [
|
|
1941
|
+
"windows-result 0.1.2",
|
|
1942
|
+
"windows-targets 0.52.6",
|
|
1943
|
+
]
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "windows-core"
|
|
1947
|
+
version = "0.61.2"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"windows-implement",
|
|
1952
|
+
"windows-interface",
|
|
1953
|
+
"windows-link 0.1.3",
|
|
1954
|
+
"windows-result 0.3.4",
|
|
1955
|
+
"windows-strings",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "windows-future"
|
|
1960
|
+
version = "0.2.1"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
1963
|
+
dependencies = [
|
|
1964
|
+
"windows-core 0.61.2",
|
|
1965
|
+
"windows-link 0.1.3",
|
|
1966
|
+
"windows-threading",
|
|
1967
|
+
]
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "windows-implement"
|
|
1971
|
+
version = "0.60.2"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1974
|
+
dependencies = [
|
|
1975
|
+
"proc-macro2",
|
|
1976
|
+
"quote",
|
|
1977
|
+
"syn",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "windows-interface"
|
|
1982
|
+
version = "0.59.3"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"proc-macro2",
|
|
1987
|
+
"quote",
|
|
1988
|
+
"syn",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "windows-link"
|
|
1993
|
+
version = "0.1.3"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "windows-link"
|
|
1999
|
+
version = "0.2.1"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "windows-numerics"
|
|
2005
|
+
version = "0.2.0"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"windows-core 0.61.2",
|
|
2010
|
+
"windows-link 0.1.3",
|
|
2011
|
+
]
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "windows-result"
|
|
2015
|
+
version = "0.1.2"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
|
2018
|
+
dependencies = [
|
|
2019
|
+
"windows-targets 0.52.6",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "windows-result"
|
|
2024
|
+
version = "0.3.4"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"windows-link 0.1.3",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "windows-strings"
|
|
2033
|
+
version = "0.4.2"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"windows-link 0.1.3",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "windows-sys"
|
|
2042
|
+
version = "0.45.0"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"windows-targets 0.42.2",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "windows-sys"
|
|
2051
|
+
version = "0.61.2"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"windows-link 0.2.1",
|
|
2056
|
+
]
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "windows-targets"
|
|
2060
|
+
version = "0.42.2"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
2063
|
+
dependencies = [
|
|
2064
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2065
|
+
"windows_aarch64_msvc 0.42.2",
|
|
2066
|
+
"windows_i686_gnu 0.42.2",
|
|
2067
|
+
"windows_i686_msvc 0.42.2",
|
|
2068
|
+
"windows_x86_64_gnu 0.42.2",
|
|
2069
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2070
|
+
"windows_x86_64_msvc 0.42.2",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "windows-targets"
|
|
2075
|
+
version = "0.52.6"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2080
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2081
|
+
"windows_i686_gnu 0.52.6",
|
|
2082
|
+
"windows_i686_gnullvm",
|
|
2083
|
+
"windows_i686_msvc 0.52.6",
|
|
2084
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2085
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2086
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "windows-threading"
|
|
2091
|
+
version = "0.1.0"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"windows-link 0.1.3",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "windows_aarch64_gnullvm"
|
|
2100
|
+
version = "0.42.2"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "windows_aarch64_gnullvm"
|
|
2106
|
+
version = "0.52.6"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "windows_aarch64_msvc"
|
|
2112
|
+
version = "0.42.2"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
2115
|
+
|
|
2116
|
+
[[package]]
|
|
2117
|
+
name = "windows_aarch64_msvc"
|
|
2118
|
+
version = "0.52.6"
|
|
2119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "windows_i686_gnu"
|
|
2124
|
+
version = "0.42.2"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "windows_i686_gnu"
|
|
2130
|
+
version = "0.52.6"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2133
|
+
|
|
2134
|
+
[[package]]
|
|
2135
|
+
name = "windows_i686_gnullvm"
|
|
2136
|
+
version = "0.52.6"
|
|
2137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2139
|
+
|
|
2140
|
+
[[package]]
|
|
2141
|
+
name = "windows_i686_msvc"
|
|
2142
|
+
version = "0.42.2"
|
|
2143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2144
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "windows_i686_msvc"
|
|
2148
|
+
version = "0.52.6"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "windows_x86_64_gnu"
|
|
2154
|
+
version = "0.42.2"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "windows_x86_64_gnu"
|
|
2160
|
+
version = "0.52.6"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2163
|
+
|
|
2164
|
+
[[package]]
|
|
2165
|
+
name = "windows_x86_64_gnullvm"
|
|
2166
|
+
version = "0.42.2"
|
|
2167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "windows_x86_64_gnullvm"
|
|
2172
|
+
version = "0.52.6"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2175
|
+
|
|
2176
|
+
[[package]]
|
|
2177
|
+
name = "windows_x86_64_msvc"
|
|
2178
|
+
version = "0.42.2"
|
|
2179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "windows_x86_64_msvc"
|
|
2184
|
+
version = "0.52.6"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "winnow"
|
|
2190
|
+
version = "1.0.1"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"memchr",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "winreg"
|
|
2199
|
+
version = "0.10.1"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"winapi",
|
|
2204
|
+
]
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "winsafe"
|
|
2208
|
+
version = "0.0.19"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "zmij"
|
|
2214
|
+
version = "1.0.21"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|