stoolap 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Cargo.lock +1792 -0
- data/Cargo.toml +9 -0
- data/LICENSE +201 -0
- data/README.md +477 -0
- data/ext/stoolap/Cargo.toml +20 -0
- data/ext/stoolap/extconf.rb +6 -0
- data/ext/stoolap/src/database.rs +432 -0
- data/ext/stoolap/src/error.rs +53 -0
- data/ext/stoolap/src/lib.rs +103 -0
- data/ext/stoolap/src/statement.rs +193 -0
- data/ext/stoolap/src/transaction.rs +246 -0
- data/ext/stoolap/src/value.rs +296 -0
- data/lib/stoolap/version.rb +5 -0
- data/lib/stoolap.rb +86 -0
- metadata +145 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1792 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"getrandom 0.3.4",
|
|
13
|
+
"once_cell",
|
|
14
|
+
"version_check",
|
|
15
|
+
"zerocopy",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[[package]]
|
|
19
|
+
name = "aho-corasick"
|
|
20
|
+
version = "1.1.4"
|
|
21
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
22
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"memchr",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "allocator-api2"
|
|
29
|
+
version = "0.2.21"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "android_system_properties"
|
|
35
|
+
version = "0.1.5"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
38
|
+
dependencies = [
|
|
39
|
+
"libc",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "anstream"
|
|
44
|
+
version = "1.0.0"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"anstyle",
|
|
49
|
+
"anstyle-parse",
|
|
50
|
+
"anstyle-query",
|
|
51
|
+
"anstyle-wincon",
|
|
52
|
+
"colorchoice",
|
|
53
|
+
"is_terminal_polyfill",
|
|
54
|
+
"utf8parse",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "anstyle"
|
|
59
|
+
version = "1.0.14"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "anstyle-parse"
|
|
65
|
+
version = "1.0.0"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"utf8parse",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "anstyle-query"
|
|
74
|
+
version = "1.1.5"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"windows-sys 0.61.2",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "anstyle-wincon"
|
|
83
|
+
version = "3.0.11"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"anstyle",
|
|
88
|
+
"once_cell_polyfill",
|
|
89
|
+
"windows-sys 0.61.2",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "anyhow"
|
|
94
|
+
version = "1.0.102"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
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 = "bindgen"
|
|
106
|
+
version = "0.72.1"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"bitflags",
|
|
111
|
+
"cexpr",
|
|
112
|
+
"clang-sys",
|
|
113
|
+
"itertools",
|
|
114
|
+
"proc-macro2",
|
|
115
|
+
"quote",
|
|
116
|
+
"regex",
|
|
117
|
+
"rustc-hash 2.1.2",
|
|
118
|
+
"shlex",
|
|
119
|
+
"syn",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "bitflags"
|
|
124
|
+
version = "2.11.0"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "block-buffer"
|
|
130
|
+
version = "0.10.4"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"generic-array",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "bumpalo"
|
|
139
|
+
version = "3.20.2"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bytemuck"
|
|
145
|
+
version = "1.25.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "byteorder"
|
|
151
|
+
version = "1.5.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "bytes"
|
|
157
|
+
version = "1.11.1"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "cc"
|
|
163
|
+
version = "1.2.60"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"find-msvc-tools",
|
|
168
|
+
"shlex",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "cexpr"
|
|
173
|
+
version = "0.6.0"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"nom",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "cfg-if"
|
|
182
|
+
version = "1.0.4"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "cfg_aliases"
|
|
188
|
+
version = "0.2.1"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "chrono"
|
|
194
|
+
version = "0.4.44"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"iana-time-zone",
|
|
199
|
+
"js-sys",
|
|
200
|
+
"num-traits",
|
|
201
|
+
"serde",
|
|
202
|
+
"wasm-bindgen",
|
|
203
|
+
"windows-link",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "clang-sys"
|
|
208
|
+
version = "1.8.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"glob",
|
|
213
|
+
"libc",
|
|
214
|
+
"libloading",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "clap"
|
|
219
|
+
version = "4.6.0"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"clap_builder",
|
|
224
|
+
"clap_derive",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "clap_builder"
|
|
229
|
+
version = "4.6.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"anstream",
|
|
234
|
+
"anstyle",
|
|
235
|
+
"clap_lex",
|
|
236
|
+
"strsim",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "clap_derive"
|
|
241
|
+
version = "4.6.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"heck",
|
|
246
|
+
"proc-macro2",
|
|
247
|
+
"quote",
|
|
248
|
+
"syn",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "clap_lex"
|
|
253
|
+
version = "1.1.0"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "clipboard-win"
|
|
259
|
+
version = "5.4.1"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"error-code",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "colorchoice"
|
|
268
|
+
version = "1.0.5"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "comfy-table"
|
|
274
|
+
version = "7.2.2"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"crossterm",
|
|
279
|
+
"unicode-segmentation",
|
|
280
|
+
"unicode-width",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "core-foundation-sys"
|
|
285
|
+
version = "0.8.7"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "cpufeatures"
|
|
291
|
+
version = "0.2.17"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"libc",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "crc32fast"
|
|
300
|
+
version = "1.5.0"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"cfg-if",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "crossbeam"
|
|
309
|
+
version = "0.8.4"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"crossbeam-channel",
|
|
314
|
+
"crossbeam-deque",
|
|
315
|
+
"crossbeam-epoch",
|
|
316
|
+
"crossbeam-queue",
|
|
317
|
+
"crossbeam-utils",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "crossbeam-channel"
|
|
322
|
+
version = "0.5.15"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"crossbeam-utils",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "crossbeam-deque"
|
|
331
|
+
version = "0.8.6"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"crossbeam-epoch",
|
|
336
|
+
"crossbeam-utils",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "crossbeam-epoch"
|
|
341
|
+
version = "0.9.18"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"crossbeam-utils",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "crossbeam-queue"
|
|
350
|
+
version = "0.3.12"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"crossbeam-utils",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "crossbeam-utils"
|
|
359
|
+
version = "0.8.21"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "crossterm"
|
|
365
|
+
version = "0.29.0"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"bitflags",
|
|
370
|
+
"crossterm_winapi",
|
|
371
|
+
"document-features",
|
|
372
|
+
"parking_lot",
|
|
373
|
+
"rustix",
|
|
374
|
+
"winapi",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "crossterm_winapi"
|
|
379
|
+
version = "0.9.1"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"winapi",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "crypto-common"
|
|
388
|
+
version = "0.1.7"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"generic-array",
|
|
393
|
+
"typenum",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "dashmap"
|
|
398
|
+
version = "6.1.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"cfg-if",
|
|
403
|
+
"crossbeam-utils",
|
|
404
|
+
"hashbrown 0.14.5",
|
|
405
|
+
"lock_api",
|
|
406
|
+
"once_cell",
|
|
407
|
+
"parking_lot_core",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "digest"
|
|
412
|
+
version = "0.10.7"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"block-buffer",
|
|
417
|
+
"crypto-common",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "dirs"
|
|
422
|
+
version = "6.0.0"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"dirs-sys",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "dirs-sys"
|
|
431
|
+
version = "0.5.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"libc",
|
|
436
|
+
"option-ext",
|
|
437
|
+
"redox_users",
|
|
438
|
+
"windows-sys 0.61.2",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "document-features"
|
|
443
|
+
version = "0.2.12"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"litrs",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "either"
|
|
452
|
+
version = "1.15.0"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "endian-type"
|
|
458
|
+
version = "0.1.2"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "equivalent"
|
|
464
|
+
version = "1.0.2"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "errno"
|
|
470
|
+
version = "0.3.14"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"libc",
|
|
475
|
+
"windows-sys 0.61.2",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "error-code"
|
|
480
|
+
version = "3.3.2"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "fd-lock"
|
|
486
|
+
version = "4.0.4"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"cfg-if",
|
|
491
|
+
"rustix",
|
|
492
|
+
"windows-sys 0.59.0",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "find-msvc-tools"
|
|
497
|
+
version = "0.1.9"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "foldhash"
|
|
503
|
+
version = "0.2.0"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "generic-array"
|
|
509
|
+
version = "0.14.7"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"typenum",
|
|
514
|
+
"version_check",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "getrandom"
|
|
519
|
+
version = "0.2.17"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"cfg-if",
|
|
524
|
+
"js-sys",
|
|
525
|
+
"libc",
|
|
526
|
+
"wasi",
|
|
527
|
+
"wasm-bindgen",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "getrandom"
|
|
532
|
+
version = "0.3.4"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"cfg-if",
|
|
537
|
+
"js-sys",
|
|
538
|
+
"libc",
|
|
539
|
+
"r-efi",
|
|
540
|
+
"wasip2",
|
|
541
|
+
"wasm-bindgen",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "glob"
|
|
546
|
+
version = "0.3.3"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "hashbrown"
|
|
552
|
+
version = "0.14.5"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "hashbrown"
|
|
558
|
+
version = "0.16.1"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"allocator-api2",
|
|
563
|
+
"equivalent",
|
|
564
|
+
"foldhash",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "hashbrown"
|
|
569
|
+
version = "0.17.0"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "heck"
|
|
575
|
+
version = "0.5.0"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "home"
|
|
581
|
+
version = "0.5.12"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"windows-sys 0.61.2",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "iana-time-zone"
|
|
590
|
+
version = "0.1.65"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"android_system_properties",
|
|
595
|
+
"core-foundation-sys",
|
|
596
|
+
"iana-time-zone-haiku",
|
|
597
|
+
"js-sys",
|
|
598
|
+
"log",
|
|
599
|
+
"wasm-bindgen",
|
|
600
|
+
"windows-core",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "iana-time-zone-haiku"
|
|
605
|
+
version = "0.1.2"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"cc",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "indexmap"
|
|
614
|
+
version = "2.14.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"equivalent",
|
|
619
|
+
"hashbrown 0.17.0",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "is_terminal_polyfill"
|
|
624
|
+
version = "1.70.2"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "itertools"
|
|
630
|
+
version = "0.13.0"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"either",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "itoa"
|
|
639
|
+
version = "1.0.18"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "js-sys"
|
|
645
|
+
version = "0.3.94"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"once_cell",
|
|
650
|
+
"wasm-bindgen",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "lazy_static"
|
|
655
|
+
version = "1.5.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "libc"
|
|
661
|
+
version = "0.2.184"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "libloading"
|
|
667
|
+
version = "0.8.9"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"cfg-if",
|
|
672
|
+
"windows-link",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "libredox"
|
|
677
|
+
version = "0.1.16"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"libc",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "linux-raw-sys"
|
|
686
|
+
version = "0.12.1"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "litrs"
|
|
692
|
+
version = "1.0.0"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "lock_api"
|
|
698
|
+
version = "0.4.14"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"scopeguard",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "log"
|
|
707
|
+
version = "0.4.29"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "lru"
|
|
713
|
+
version = "0.16.3"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"hashbrown 0.16.1",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "lz4_flex"
|
|
722
|
+
version = "0.13.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"twox-hash",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "magnus"
|
|
731
|
+
version = "0.8.2"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"magnus-macros",
|
|
736
|
+
"rb-sys",
|
|
737
|
+
"rb-sys-env",
|
|
738
|
+
"seq-macro",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "magnus-macros"
|
|
743
|
+
version = "0.8.0"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"proc-macro2",
|
|
748
|
+
"quote",
|
|
749
|
+
"syn",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "matchers"
|
|
754
|
+
version = "0.2.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"regex-automata",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "md-5"
|
|
763
|
+
version = "0.10.6"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"cfg-if",
|
|
768
|
+
"digest",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "memchr"
|
|
773
|
+
version = "2.8.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "minimal-lexical"
|
|
779
|
+
version = "0.2.1"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "nibble_vec"
|
|
785
|
+
version = "0.1.0"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"smallvec",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "nix"
|
|
794
|
+
version = "0.30.1"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"bitflags",
|
|
799
|
+
"cfg-if",
|
|
800
|
+
"cfg_aliases",
|
|
801
|
+
"libc",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "nom"
|
|
806
|
+
version = "7.1.3"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"memchr",
|
|
811
|
+
"minimal-lexical",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "nu-ansi-term"
|
|
816
|
+
version = "0.50.3"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"windows-sys 0.61.2",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "num-traits"
|
|
825
|
+
version = "0.2.19"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"autocfg",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "once_cell"
|
|
834
|
+
version = "1.21.4"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "once_cell_polyfill"
|
|
840
|
+
version = "1.70.2"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "option-ext"
|
|
846
|
+
version = "0.2.0"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "ordered-float"
|
|
852
|
+
version = "5.3.0"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"num-traits",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "parking_lot"
|
|
861
|
+
version = "0.12.5"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"lock_api",
|
|
866
|
+
"parking_lot_core",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "parking_lot_core"
|
|
871
|
+
version = "0.9.12"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"cfg-if",
|
|
876
|
+
"libc",
|
|
877
|
+
"redox_syscall",
|
|
878
|
+
"smallvec",
|
|
879
|
+
"windows-link",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "pin-project-lite"
|
|
884
|
+
version = "0.2.17"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "ppv-lite86"
|
|
890
|
+
version = "0.2.21"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"zerocopy",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "proc-macro2"
|
|
899
|
+
version = "1.0.106"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"unicode-ident",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "quote"
|
|
908
|
+
version = "1.0.45"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"proc-macro2",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "r-efi"
|
|
917
|
+
version = "5.3.0"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "radix_trie"
|
|
923
|
+
version = "0.2.1"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"endian-type",
|
|
928
|
+
"nibble_vec",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "radsort"
|
|
933
|
+
version = "0.1.1"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "019b4b213425016d7d84a153c4c73afb0946fbb4840e4eece7ba8848b9d6da22"
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "rand"
|
|
939
|
+
version = "0.9.2"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"rand_chacha",
|
|
944
|
+
"rand_core",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "rand_chacha"
|
|
949
|
+
version = "0.9.0"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"ppv-lite86",
|
|
954
|
+
"rand_core",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "rand_core"
|
|
959
|
+
version = "0.9.5"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"getrandom 0.3.4",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "rayon"
|
|
968
|
+
version = "1.11.0"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"either",
|
|
973
|
+
"rayon-core",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "rayon-core"
|
|
978
|
+
version = "1.13.0"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"crossbeam-deque",
|
|
983
|
+
"crossbeam-utils",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "rb-sys"
|
|
988
|
+
version = "0.9.126"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "284799e73e899fe946fd77c7211b83bff61a1356e039ade7a2516a779e3212d0"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"rb-sys-build",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "rb-sys-build"
|
|
997
|
+
version = "0.9.126"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "855fc1ad8943d12c89ef12f9147f1cc531f5bf19fb744112fdd317bb6ee7b5c5"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"bindgen",
|
|
1002
|
+
"lazy_static",
|
|
1003
|
+
"proc-macro2",
|
|
1004
|
+
"quote",
|
|
1005
|
+
"regex",
|
|
1006
|
+
"shell-words",
|
|
1007
|
+
"syn",
|
|
1008
|
+
]
|
|
1009
|
+
|
|
1010
|
+
[[package]]
|
|
1011
|
+
name = "rb-sys-env"
|
|
1012
|
+
version = "0.2.3"
|
|
1013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "redox_syscall"
|
|
1018
|
+
version = "0.5.18"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"bitflags",
|
|
1023
|
+
]
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "redox_users"
|
|
1027
|
+
version = "0.5.2"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
1030
|
+
dependencies = [
|
|
1031
|
+
"getrandom 0.2.17",
|
|
1032
|
+
"libredox",
|
|
1033
|
+
"thiserror",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "regex"
|
|
1038
|
+
version = "1.12.3"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"aho-corasick",
|
|
1043
|
+
"memchr",
|
|
1044
|
+
"regex-automata",
|
|
1045
|
+
"regex-syntax",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "regex-automata"
|
|
1050
|
+
version = "0.4.14"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"aho-corasick",
|
|
1055
|
+
"memchr",
|
|
1056
|
+
"regex-syntax",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "regex-syntax"
|
|
1061
|
+
version = "0.8.10"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "roaring"
|
|
1067
|
+
version = "0.11.3"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "8ba9ce64a8f45d7fc86358410bb1a82e8c987504c0d4900e9141d69a9f26c885"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"bytemuck",
|
|
1072
|
+
"byteorder",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "rustc-hash"
|
|
1077
|
+
version = "1.1.0"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "rustc-hash"
|
|
1083
|
+
version = "2.1.2"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "rustix"
|
|
1089
|
+
version = "1.1.4"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"bitflags",
|
|
1094
|
+
"errno",
|
|
1095
|
+
"libc",
|
|
1096
|
+
"linux-raw-sys",
|
|
1097
|
+
"windows-sys 0.61.2",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "rustversion"
|
|
1102
|
+
version = "1.0.22"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "rustyline"
|
|
1108
|
+
version = "17.0.2"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "e902948a25149d50edc1a8e0141aad50f54e22ba83ff988cf8f7c9ef07f50564"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"bitflags",
|
|
1113
|
+
"cfg-if",
|
|
1114
|
+
"clipboard-win",
|
|
1115
|
+
"fd-lock",
|
|
1116
|
+
"home",
|
|
1117
|
+
"libc",
|
|
1118
|
+
"log",
|
|
1119
|
+
"memchr",
|
|
1120
|
+
"nix",
|
|
1121
|
+
"radix_trie",
|
|
1122
|
+
"unicode-segmentation",
|
|
1123
|
+
"unicode-width",
|
|
1124
|
+
"utf8parse",
|
|
1125
|
+
"windows-sys 0.60.2",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "scopeguard"
|
|
1130
|
+
version = "1.2.0"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "seq-macro"
|
|
1136
|
+
version = "0.3.6"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "serde"
|
|
1142
|
+
version = "1.0.228"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"serde_core",
|
|
1147
|
+
"serde_derive",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "serde_core"
|
|
1152
|
+
version = "1.0.228"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"serde_derive",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "serde_derive"
|
|
1161
|
+
version = "1.0.228"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1164
|
+
dependencies = [
|
|
1165
|
+
"proc-macro2",
|
|
1166
|
+
"quote",
|
|
1167
|
+
"syn",
|
|
1168
|
+
]
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "serde_json"
|
|
1172
|
+
version = "1.0.149"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"itoa",
|
|
1177
|
+
"memchr",
|
|
1178
|
+
"serde",
|
|
1179
|
+
"serde_core",
|
|
1180
|
+
"zmij",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "sha1"
|
|
1185
|
+
version = "0.10.6"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1188
|
+
dependencies = [
|
|
1189
|
+
"cfg-if",
|
|
1190
|
+
"cpufeatures",
|
|
1191
|
+
"digest",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "sha2"
|
|
1196
|
+
version = "0.10.9"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"cfg-if",
|
|
1201
|
+
"cpufeatures",
|
|
1202
|
+
"digest",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "sharded-slab"
|
|
1207
|
+
version = "0.1.7"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"lazy_static",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "shell-words"
|
|
1216
|
+
version = "1.1.1"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "shlex"
|
|
1222
|
+
version = "1.3.0"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "smallvec"
|
|
1228
|
+
version = "1.15.1"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "stoolap"
|
|
1234
|
+
version = "0.4.0"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"chrono",
|
|
1237
|
+
"magnus",
|
|
1238
|
+
"stoolap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "stoolap"
|
|
1243
|
+
version = "0.4.0"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "420d8bd65519e56f55a9f13a891a373b1cda74ebc49a65a35dc4f2efe4441b40"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"ahash",
|
|
1248
|
+
"anyhow",
|
|
1249
|
+
"bytes",
|
|
1250
|
+
"chrono",
|
|
1251
|
+
"clap",
|
|
1252
|
+
"comfy-table",
|
|
1253
|
+
"crc32fast",
|
|
1254
|
+
"crossbeam",
|
|
1255
|
+
"dashmap",
|
|
1256
|
+
"dirs",
|
|
1257
|
+
"getrandom 0.2.17",
|
|
1258
|
+
"getrandom 0.3.4",
|
|
1259
|
+
"hashbrown 0.16.1",
|
|
1260
|
+
"indexmap",
|
|
1261
|
+
"js-sys",
|
|
1262
|
+
"libc",
|
|
1263
|
+
"lru",
|
|
1264
|
+
"lz4_flex",
|
|
1265
|
+
"md-5",
|
|
1266
|
+
"memchr",
|
|
1267
|
+
"ordered-float",
|
|
1268
|
+
"parking_lot",
|
|
1269
|
+
"radsort",
|
|
1270
|
+
"rand",
|
|
1271
|
+
"rayon",
|
|
1272
|
+
"regex",
|
|
1273
|
+
"roaring",
|
|
1274
|
+
"rustc-hash 1.1.0",
|
|
1275
|
+
"rustyline",
|
|
1276
|
+
"serde",
|
|
1277
|
+
"serde_json",
|
|
1278
|
+
"sha1",
|
|
1279
|
+
"sha2",
|
|
1280
|
+
"smallvec",
|
|
1281
|
+
"thiserror",
|
|
1282
|
+
"tracing",
|
|
1283
|
+
"tracing-subscriber",
|
|
1284
|
+
"wasm-bindgen",
|
|
1285
|
+
"web-sys",
|
|
1286
|
+
"web-time",
|
|
1287
|
+
"windows-sys 0.61.2",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "strsim"
|
|
1292
|
+
version = "0.11.1"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "syn"
|
|
1298
|
+
version = "2.0.117"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"proc-macro2",
|
|
1303
|
+
"quote",
|
|
1304
|
+
"unicode-ident",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "thiserror"
|
|
1309
|
+
version = "2.0.18"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1312
|
+
dependencies = [
|
|
1313
|
+
"thiserror-impl",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "thiserror-impl"
|
|
1318
|
+
version = "2.0.18"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"proc-macro2",
|
|
1323
|
+
"quote",
|
|
1324
|
+
"syn",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "thread_local"
|
|
1329
|
+
version = "1.1.9"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"cfg-if",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "tracing"
|
|
1338
|
+
version = "0.1.44"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"pin-project-lite",
|
|
1343
|
+
"tracing-attributes",
|
|
1344
|
+
"tracing-core",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "tracing-attributes"
|
|
1349
|
+
version = "0.1.31"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"proc-macro2",
|
|
1354
|
+
"quote",
|
|
1355
|
+
"syn",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "tracing-core"
|
|
1360
|
+
version = "0.1.36"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"once_cell",
|
|
1365
|
+
"valuable",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "tracing-log"
|
|
1370
|
+
version = "0.2.0"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"log",
|
|
1375
|
+
"once_cell",
|
|
1376
|
+
"tracing-core",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "tracing-subscriber"
|
|
1381
|
+
version = "0.3.23"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"matchers",
|
|
1386
|
+
"nu-ansi-term",
|
|
1387
|
+
"once_cell",
|
|
1388
|
+
"regex-automata",
|
|
1389
|
+
"sharded-slab",
|
|
1390
|
+
"smallvec",
|
|
1391
|
+
"thread_local",
|
|
1392
|
+
"tracing",
|
|
1393
|
+
"tracing-core",
|
|
1394
|
+
"tracing-log",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "twox-hash"
|
|
1399
|
+
version = "2.1.2"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "typenum"
|
|
1405
|
+
version = "1.19.0"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1408
|
+
|
|
1409
|
+
[[package]]
|
|
1410
|
+
name = "unicode-ident"
|
|
1411
|
+
version = "1.0.24"
|
|
1412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1413
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "unicode-segmentation"
|
|
1417
|
+
version = "1.13.2"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "unicode-width"
|
|
1423
|
+
version = "0.2.2"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "utf8parse"
|
|
1429
|
+
version = "0.2.2"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1432
|
+
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "valuable"
|
|
1435
|
+
version = "0.1.1"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
1438
|
+
|
|
1439
|
+
[[package]]
|
|
1440
|
+
name = "version_check"
|
|
1441
|
+
version = "0.9.5"
|
|
1442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "wasi"
|
|
1447
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "wasip2"
|
|
1453
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"wit-bindgen",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "wasm-bindgen"
|
|
1462
|
+
version = "0.2.117"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"cfg-if",
|
|
1467
|
+
"once_cell",
|
|
1468
|
+
"rustversion",
|
|
1469
|
+
"wasm-bindgen-macro",
|
|
1470
|
+
"wasm-bindgen-shared",
|
|
1471
|
+
]
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "wasm-bindgen-macro"
|
|
1475
|
+
version = "0.2.117"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"quote",
|
|
1480
|
+
"wasm-bindgen-macro-support",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "wasm-bindgen-macro-support"
|
|
1485
|
+
version = "0.2.117"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"bumpalo",
|
|
1490
|
+
"proc-macro2",
|
|
1491
|
+
"quote",
|
|
1492
|
+
"syn",
|
|
1493
|
+
"wasm-bindgen-shared",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "wasm-bindgen-shared"
|
|
1498
|
+
version = "0.2.117"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"unicode-ident",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "web-sys"
|
|
1507
|
+
version = "0.3.94"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
1510
|
+
dependencies = [
|
|
1511
|
+
"js-sys",
|
|
1512
|
+
"wasm-bindgen",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "web-time"
|
|
1517
|
+
version = "1.1.0"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"js-sys",
|
|
1522
|
+
"wasm-bindgen",
|
|
1523
|
+
]
|
|
1524
|
+
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "winapi"
|
|
1527
|
+
version = "0.3.9"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1530
|
+
dependencies = [
|
|
1531
|
+
"winapi-i686-pc-windows-gnu",
|
|
1532
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1537
|
+
version = "0.4.0"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1543
|
+
version = "0.4.0"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "windows-core"
|
|
1549
|
+
version = "0.62.2"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"windows-implement",
|
|
1554
|
+
"windows-interface",
|
|
1555
|
+
"windows-link",
|
|
1556
|
+
"windows-result",
|
|
1557
|
+
"windows-strings",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "windows-implement"
|
|
1562
|
+
version = "0.60.2"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1565
|
+
dependencies = [
|
|
1566
|
+
"proc-macro2",
|
|
1567
|
+
"quote",
|
|
1568
|
+
"syn",
|
|
1569
|
+
]
|
|
1570
|
+
|
|
1571
|
+
[[package]]
|
|
1572
|
+
name = "windows-interface"
|
|
1573
|
+
version = "0.59.3"
|
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1576
|
+
dependencies = [
|
|
1577
|
+
"proc-macro2",
|
|
1578
|
+
"quote",
|
|
1579
|
+
"syn",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "windows-link"
|
|
1584
|
+
version = "0.2.1"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "windows-result"
|
|
1590
|
+
version = "0.4.1"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"windows-link",
|
|
1595
|
+
]
|
|
1596
|
+
|
|
1597
|
+
[[package]]
|
|
1598
|
+
name = "windows-strings"
|
|
1599
|
+
version = "0.5.1"
|
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1602
|
+
dependencies = [
|
|
1603
|
+
"windows-link",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "windows-sys"
|
|
1608
|
+
version = "0.59.0"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"windows-targets 0.52.6",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "windows-sys"
|
|
1617
|
+
version = "0.60.2"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"windows-targets 0.53.5",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "windows-sys"
|
|
1626
|
+
version = "0.61.2"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1629
|
+
dependencies = [
|
|
1630
|
+
"windows-link",
|
|
1631
|
+
]
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "windows-targets"
|
|
1635
|
+
version = "0.52.6"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1638
|
+
dependencies = [
|
|
1639
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1640
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1641
|
+
"windows_i686_gnu 0.52.6",
|
|
1642
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1643
|
+
"windows_i686_msvc 0.52.6",
|
|
1644
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1645
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1646
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "windows-targets"
|
|
1651
|
+
version = "0.53.5"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"windows-link",
|
|
1656
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
1657
|
+
"windows_aarch64_msvc 0.53.1",
|
|
1658
|
+
"windows_i686_gnu 0.53.1",
|
|
1659
|
+
"windows_i686_gnullvm 0.53.1",
|
|
1660
|
+
"windows_i686_msvc 0.53.1",
|
|
1661
|
+
"windows_x86_64_gnu 0.53.1",
|
|
1662
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
1663
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1664
|
+
]
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "windows_aarch64_gnullvm"
|
|
1668
|
+
version = "0.52.6"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "windows_aarch64_gnullvm"
|
|
1674
|
+
version = "0.53.1"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "windows_aarch64_msvc"
|
|
1680
|
+
version = "0.52.6"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "windows_aarch64_msvc"
|
|
1686
|
+
version = "0.53.1"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "windows_i686_gnu"
|
|
1692
|
+
version = "0.52.6"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "windows_i686_gnu"
|
|
1698
|
+
version = "0.53.1"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1701
|
+
|
|
1702
|
+
[[package]]
|
|
1703
|
+
name = "windows_i686_gnullvm"
|
|
1704
|
+
version = "0.52.6"
|
|
1705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "windows_i686_gnullvm"
|
|
1710
|
+
version = "0.53.1"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "windows_i686_msvc"
|
|
1716
|
+
version = "0.52.6"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "windows_i686_msvc"
|
|
1722
|
+
version = "0.53.1"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "windows_x86_64_gnu"
|
|
1728
|
+
version = "0.52.6"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "windows_x86_64_gnu"
|
|
1734
|
+
version = "0.53.1"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "windows_x86_64_gnullvm"
|
|
1740
|
+
version = "0.52.6"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1743
|
+
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "windows_x86_64_gnullvm"
|
|
1746
|
+
version = "0.53.1"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "windows_x86_64_msvc"
|
|
1752
|
+
version = "0.52.6"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "windows_x86_64_msvc"
|
|
1758
|
+
version = "0.53.1"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "wit-bindgen"
|
|
1764
|
+
version = "0.51.0"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "zerocopy"
|
|
1770
|
+
version = "0.8.48"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"zerocopy-derive",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "zerocopy-derive"
|
|
1779
|
+
version = "0.8.48"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"proc-macro2",
|
|
1784
|
+
"quote",
|
|
1785
|
+
"syn",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "zmij"
|
|
1790
|
+
version = "1.0.21"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|