gqlite 1.0.0 → 1.2.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 +4 -4
- data/ext/gqliterb/Cargo.lock +1099 -0
- data/ext/gqliterb/Cargo.toml +46 -0
- data/ext/gqliterb/extconf.rb +4 -0
- data/ext/gqliterb/src/lib.rs +260 -0
- data/lib/gqlite.rb +1 -75
- metadata +38 -25
- data/ext/gqlite/extconf.rb +0 -21
- data/ext/gqlite/gqlite-amalgamate.cpp +0 -9090
- data/ext/gqlite/gqlite-c.h +0 -95
- data/ext/gqlite/gqlite.h +0 -141
@@ -0,0 +1,1099 @@
|
|
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.3"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
10
|
+
dependencies = [
|
11
|
+
"memchr",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "askama"
|
16
|
+
version = "0.14.0"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4"
|
19
|
+
dependencies = [
|
20
|
+
"askama_derive",
|
21
|
+
"itoa",
|
22
|
+
"percent-encoding",
|
23
|
+
"serde",
|
24
|
+
"serde_json",
|
25
|
+
]
|
26
|
+
|
27
|
+
[[package]]
|
28
|
+
name = "askama_derive"
|
29
|
+
version = "0.14.0"
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
31
|
+
checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f"
|
32
|
+
dependencies = [
|
33
|
+
"askama_parser",
|
34
|
+
"basic-toml",
|
35
|
+
"memchr",
|
36
|
+
"proc-macro2",
|
37
|
+
"quote",
|
38
|
+
"rustc-hash 2.1.1",
|
39
|
+
"serde",
|
40
|
+
"serde_derive",
|
41
|
+
"syn",
|
42
|
+
]
|
43
|
+
|
44
|
+
[[package]]
|
45
|
+
name = "askama_parser"
|
46
|
+
version = "0.14.0"
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
48
|
+
checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358"
|
49
|
+
dependencies = [
|
50
|
+
"memchr",
|
51
|
+
"serde",
|
52
|
+
"serde_derive",
|
53
|
+
"winnow",
|
54
|
+
]
|
55
|
+
|
56
|
+
[[package]]
|
57
|
+
name = "basic-toml"
|
58
|
+
version = "0.1.10"
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
60
|
+
checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
|
61
|
+
dependencies = [
|
62
|
+
"serde",
|
63
|
+
]
|
64
|
+
|
65
|
+
[[package]]
|
66
|
+
name = "better_default"
|
67
|
+
version = "1.0.5"
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
69
|
+
checksum = "7b9a5040dce49a7642c97ccb1ae59567098967b5d52c29773f1299a42d23bb39"
|
70
|
+
dependencies = [
|
71
|
+
"proc-macro2",
|
72
|
+
"quote",
|
73
|
+
"syn",
|
74
|
+
]
|
75
|
+
|
76
|
+
[[package]]
|
77
|
+
name = "bindgen"
|
78
|
+
version = "0.69.5"
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
81
|
+
dependencies = [
|
82
|
+
"bitflags",
|
83
|
+
"cexpr",
|
84
|
+
"clang-sys",
|
85
|
+
"itertools 0.12.1",
|
86
|
+
"lazy_static",
|
87
|
+
"lazycell",
|
88
|
+
"proc-macro2",
|
89
|
+
"quote",
|
90
|
+
"regex",
|
91
|
+
"rustc-hash 1.1.0",
|
92
|
+
"shlex",
|
93
|
+
"syn",
|
94
|
+
]
|
95
|
+
|
96
|
+
[[package]]
|
97
|
+
name = "bitflags"
|
98
|
+
version = "2.9.1"
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
100
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
101
|
+
|
102
|
+
[[package]]
|
103
|
+
name = "block-buffer"
|
104
|
+
version = "0.10.4"
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
107
|
+
dependencies = [
|
108
|
+
"generic-array",
|
109
|
+
]
|
110
|
+
|
111
|
+
[[package]]
|
112
|
+
name = "bumpalo"
|
113
|
+
version = "3.19.0"
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
115
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
116
|
+
|
117
|
+
[[package]]
|
118
|
+
name = "ccutils"
|
119
|
+
version = "0.3.0"
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
121
|
+
checksum = "9a836a2b54e4f28e81eeafae709c3212aad617c3db7ce935ae0fbc0e1be23df3"
|
122
|
+
dependencies = [
|
123
|
+
"better_default",
|
124
|
+
"futures",
|
125
|
+
"log",
|
126
|
+
]
|
127
|
+
|
128
|
+
[[package]]
|
129
|
+
name = "cexpr"
|
130
|
+
version = "0.6.0"
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
132
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
133
|
+
dependencies = [
|
134
|
+
"nom",
|
135
|
+
]
|
136
|
+
|
137
|
+
[[package]]
|
138
|
+
name = "cfg-if"
|
139
|
+
version = "1.0.1"
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
141
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
142
|
+
|
143
|
+
[[package]]
|
144
|
+
name = "ciborium"
|
145
|
+
version = "0.2.2"
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
147
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
148
|
+
dependencies = [
|
149
|
+
"ciborium-io",
|
150
|
+
"ciborium-ll",
|
151
|
+
"serde",
|
152
|
+
]
|
153
|
+
|
154
|
+
[[package]]
|
155
|
+
name = "ciborium-io"
|
156
|
+
version = "0.2.2"
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
158
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
159
|
+
|
160
|
+
[[package]]
|
161
|
+
name = "ciborium-ll"
|
162
|
+
version = "0.2.2"
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
165
|
+
dependencies = [
|
166
|
+
"ciborium-io",
|
167
|
+
"half",
|
168
|
+
]
|
169
|
+
|
170
|
+
[[package]]
|
171
|
+
name = "clang-sys"
|
172
|
+
version = "1.8.1"
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
174
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
175
|
+
dependencies = [
|
176
|
+
"glob",
|
177
|
+
"libc",
|
178
|
+
"libloading",
|
179
|
+
]
|
180
|
+
|
181
|
+
[[package]]
|
182
|
+
name = "cpufeatures"
|
183
|
+
version = "0.2.17"
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
186
|
+
dependencies = [
|
187
|
+
"libc",
|
188
|
+
]
|
189
|
+
|
190
|
+
[[package]]
|
191
|
+
name = "crunchy"
|
192
|
+
version = "0.2.4"
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
195
|
+
|
196
|
+
[[package]]
|
197
|
+
name = "crypto-common"
|
198
|
+
version = "0.1.6"
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
201
|
+
dependencies = [
|
202
|
+
"generic-array",
|
203
|
+
"typenum",
|
204
|
+
]
|
205
|
+
|
206
|
+
[[package]]
|
207
|
+
name = "digest"
|
208
|
+
version = "0.10.7"
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
211
|
+
dependencies = [
|
212
|
+
"block-buffer",
|
213
|
+
"crypto-common",
|
214
|
+
]
|
215
|
+
|
216
|
+
[[package]]
|
217
|
+
name = "either"
|
218
|
+
version = "1.15.0"
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
220
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
221
|
+
|
222
|
+
[[package]]
|
223
|
+
name = "fallible-iterator"
|
224
|
+
version = "0.3.0"
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "fallible-streaming-iterator"
|
230
|
+
version = "0.1.9"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
233
|
+
|
234
|
+
[[package]]
|
235
|
+
name = "foldhash"
|
236
|
+
version = "0.1.5"
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
239
|
+
|
240
|
+
[[package]]
|
241
|
+
name = "futures"
|
242
|
+
version = "0.3.31"
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
244
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
245
|
+
dependencies = [
|
246
|
+
"futures-channel",
|
247
|
+
"futures-core",
|
248
|
+
"futures-executor",
|
249
|
+
"futures-io",
|
250
|
+
"futures-sink",
|
251
|
+
"futures-task",
|
252
|
+
"futures-util",
|
253
|
+
]
|
254
|
+
|
255
|
+
[[package]]
|
256
|
+
name = "futures-channel"
|
257
|
+
version = "0.3.31"
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
259
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
260
|
+
dependencies = [
|
261
|
+
"futures-core",
|
262
|
+
"futures-sink",
|
263
|
+
]
|
264
|
+
|
265
|
+
[[package]]
|
266
|
+
name = "futures-core"
|
267
|
+
version = "0.3.31"
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
270
|
+
|
271
|
+
[[package]]
|
272
|
+
name = "futures-executor"
|
273
|
+
version = "0.3.31"
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
276
|
+
dependencies = [
|
277
|
+
"futures-core",
|
278
|
+
"futures-task",
|
279
|
+
"futures-util",
|
280
|
+
]
|
281
|
+
|
282
|
+
[[package]]
|
283
|
+
name = "futures-io"
|
284
|
+
version = "0.3.31"
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
287
|
+
|
288
|
+
[[package]]
|
289
|
+
name = "futures-macro"
|
290
|
+
version = "0.3.31"
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
293
|
+
dependencies = [
|
294
|
+
"proc-macro2",
|
295
|
+
"quote",
|
296
|
+
"syn",
|
297
|
+
]
|
298
|
+
|
299
|
+
[[package]]
|
300
|
+
name = "futures-sink"
|
301
|
+
version = "0.3.31"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
304
|
+
|
305
|
+
[[package]]
|
306
|
+
name = "futures-task"
|
307
|
+
version = "0.3.31"
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
310
|
+
|
311
|
+
[[package]]
|
312
|
+
name = "futures-util"
|
313
|
+
version = "0.3.31"
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
316
|
+
dependencies = [
|
317
|
+
"futures-channel",
|
318
|
+
"futures-core",
|
319
|
+
"futures-io",
|
320
|
+
"futures-macro",
|
321
|
+
"futures-sink",
|
322
|
+
"futures-task",
|
323
|
+
"memchr",
|
324
|
+
"pin-project-lite",
|
325
|
+
"pin-utils",
|
326
|
+
"slab",
|
327
|
+
]
|
328
|
+
|
329
|
+
[[package]]
|
330
|
+
name = "generic-array"
|
331
|
+
version = "0.14.7"
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
333
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
334
|
+
dependencies = [
|
335
|
+
"typenum",
|
336
|
+
"version_check",
|
337
|
+
]
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "getrandom"
|
341
|
+
version = "0.3.3"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
344
|
+
dependencies = [
|
345
|
+
"cfg-if",
|
346
|
+
"libc",
|
347
|
+
"r-efi",
|
348
|
+
"wasi",
|
349
|
+
]
|
350
|
+
|
351
|
+
[[package]]
|
352
|
+
name = "glob"
|
353
|
+
version = "0.3.2"
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
356
|
+
|
357
|
+
[[package]]
|
358
|
+
name = "gqlitedb"
|
359
|
+
version = "0.5.1"
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
+
checksum = "3295aeaa4069417361455a2eb936ae13b529617a88d86377ba468016e0022fef"
|
362
|
+
dependencies = [
|
363
|
+
"askama",
|
364
|
+
"ccutils",
|
365
|
+
"ciborium",
|
366
|
+
"itertools 0.14.0",
|
367
|
+
"pest",
|
368
|
+
"pest_derive",
|
369
|
+
"rand",
|
370
|
+
"redb",
|
371
|
+
"rusqlite",
|
372
|
+
"serde",
|
373
|
+
"serde_json",
|
374
|
+
"thiserror",
|
375
|
+
"uuid",
|
376
|
+
]
|
377
|
+
|
378
|
+
[[package]]
|
379
|
+
name = "gqliterb"
|
380
|
+
version = "0.5.0"
|
381
|
+
dependencies = [
|
382
|
+
"gqlitedb",
|
383
|
+
"magnus",
|
384
|
+
"rb-sys-env 0.2.2",
|
385
|
+
]
|
386
|
+
|
387
|
+
[[package]]
|
388
|
+
name = "half"
|
389
|
+
version = "2.6.0"
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
392
|
+
dependencies = [
|
393
|
+
"cfg-if",
|
394
|
+
"crunchy",
|
395
|
+
]
|
396
|
+
|
397
|
+
[[package]]
|
398
|
+
name = "hashbrown"
|
399
|
+
version = "0.15.4"
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
402
|
+
dependencies = [
|
403
|
+
"foldhash",
|
404
|
+
]
|
405
|
+
|
406
|
+
[[package]]
|
407
|
+
name = "hashlink"
|
408
|
+
version = "0.10.0"
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
411
|
+
dependencies = [
|
412
|
+
"hashbrown",
|
413
|
+
]
|
414
|
+
|
415
|
+
[[package]]
|
416
|
+
name = "itertools"
|
417
|
+
version = "0.12.1"
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
420
|
+
dependencies = [
|
421
|
+
"either",
|
422
|
+
]
|
423
|
+
|
424
|
+
[[package]]
|
425
|
+
name = "itertools"
|
426
|
+
version = "0.14.0"
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
429
|
+
dependencies = [
|
430
|
+
"either",
|
431
|
+
]
|
432
|
+
|
433
|
+
[[package]]
|
434
|
+
name = "itoa"
|
435
|
+
version = "1.0.15"
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
438
|
+
|
439
|
+
[[package]]
|
440
|
+
name = "js-sys"
|
441
|
+
version = "0.3.77"
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
444
|
+
dependencies = [
|
445
|
+
"once_cell",
|
446
|
+
"wasm-bindgen",
|
447
|
+
]
|
448
|
+
|
449
|
+
[[package]]
|
450
|
+
name = "lazy_static"
|
451
|
+
version = "1.5.0"
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
453
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
454
|
+
|
455
|
+
[[package]]
|
456
|
+
name = "lazycell"
|
457
|
+
version = "1.3.0"
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
460
|
+
|
461
|
+
[[package]]
|
462
|
+
name = "libc"
|
463
|
+
version = "0.2.174"
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
466
|
+
|
467
|
+
[[package]]
|
468
|
+
name = "libloading"
|
469
|
+
version = "0.8.8"
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
472
|
+
dependencies = [
|
473
|
+
"cfg-if",
|
474
|
+
"windows-targets",
|
475
|
+
]
|
476
|
+
|
477
|
+
[[package]]
|
478
|
+
name = "libsqlite3-sys"
|
479
|
+
version = "0.35.0"
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
481
|
+
checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
|
482
|
+
dependencies = [
|
483
|
+
"pkg-config",
|
484
|
+
"vcpkg",
|
485
|
+
]
|
486
|
+
|
487
|
+
[[package]]
|
488
|
+
name = "log"
|
489
|
+
version = "0.4.27"
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
491
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
492
|
+
|
493
|
+
[[package]]
|
494
|
+
name = "magnus"
|
495
|
+
version = "0.7.1"
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
498
|
+
dependencies = [
|
499
|
+
"magnus-macros",
|
500
|
+
"rb-sys",
|
501
|
+
"rb-sys-env 0.1.2",
|
502
|
+
"seq-macro",
|
503
|
+
]
|
504
|
+
|
505
|
+
[[package]]
|
506
|
+
name = "magnus-macros"
|
507
|
+
version = "0.6.0"
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
510
|
+
dependencies = [
|
511
|
+
"proc-macro2",
|
512
|
+
"quote",
|
513
|
+
"syn",
|
514
|
+
]
|
515
|
+
|
516
|
+
[[package]]
|
517
|
+
name = "memchr"
|
518
|
+
version = "2.7.5"
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
521
|
+
|
522
|
+
[[package]]
|
523
|
+
name = "minimal-lexical"
|
524
|
+
version = "0.2.1"
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
526
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
527
|
+
|
528
|
+
[[package]]
|
529
|
+
name = "nom"
|
530
|
+
version = "7.1.3"
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
533
|
+
dependencies = [
|
534
|
+
"memchr",
|
535
|
+
"minimal-lexical",
|
536
|
+
]
|
537
|
+
|
538
|
+
[[package]]
|
539
|
+
name = "once_cell"
|
540
|
+
version = "1.21.3"
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
542
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
543
|
+
|
544
|
+
[[package]]
|
545
|
+
name = "percent-encoding"
|
546
|
+
version = "2.3.1"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
549
|
+
|
550
|
+
[[package]]
|
551
|
+
name = "pest"
|
552
|
+
version = "2.8.1"
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
+
checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
|
555
|
+
dependencies = [
|
556
|
+
"memchr",
|
557
|
+
"thiserror",
|
558
|
+
"ucd-trie",
|
559
|
+
]
|
560
|
+
|
561
|
+
[[package]]
|
562
|
+
name = "pest_derive"
|
563
|
+
version = "2.8.1"
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
565
|
+
checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
|
566
|
+
dependencies = [
|
567
|
+
"pest",
|
568
|
+
"pest_generator",
|
569
|
+
]
|
570
|
+
|
571
|
+
[[package]]
|
572
|
+
name = "pest_generator"
|
573
|
+
version = "2.8.1"
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
575
|
+
checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
|
576
|
+
dependencies = [
|
577
|
+
"pest",
|
578
|
+
"pest_meta",
|
579
|
+
"proc-macro2",
|
580
|
+
"quote",
|
581
|
+
"syn",
|
582
|
+
]
|
583
|
+
|
584
|
+
[[package]]
|
585
|
+
name = "pest_meta"
|
586
|
+
version = "2.8.1"
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
+
checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
|
589
|
+
dependencies = [
|
590
|
+
"pest",
|
591
|
+
"sha2",
|
592
|
+
]
|
593
|
+
|
594
|
+
[[package]]
|
595
|
+
name = "pin-project-lite"
|
596
|
+
version = "0.2.16"
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
598
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
599
|
+
|
600
|
+
[[package]]
|
601
|
+
name = "pin-utils"
|
602
|
+
version = "0.1.0"
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
604
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
605
|
+
|
606
|
+
[[package]]
|
607
|
+
name = "pkg-config"
|
608
|
+
version = "0.3.32"
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
611
|
+
|
612
|
+
[[package]]
|
613
|
+
name = "ppv-lite86"
|
614
|
+
version = "0.2.21"
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
617
|
+
dependencies = [
|
618
|
+
"zerocopy",
|
619
|
+
]
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "proc-macro2"
|
623
|
+
version = "1.0.95"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
626
|
+
dependencies = [
|
627
|
+
"unicode-ident",
|
628
|
+
]
|
629
|
+
|
630
|
+
[[package]]
|
631
|
+
name = "quote"
|
632
|
+
version = "1.0.40"
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
635
|
+
dependencies = [
|
636
|
+
"proc-macro2",
|
637
|
+
]
|
638
|
+
|
639
|
+
[[package]]
|
640
|
+
name = "r-efi"
|
641
|
+
version = "5.3.0"
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
643
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
644
|
+
|
645
|
+
[[package]]
|
646
|
+
name = "rand"
|
647
|
+
version = "0.9.1"
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
650
|
+
dependencies = [
|
651
|
+
"rand_chacha",
|
652
|
+
"rand_core",
|
653
|
+
]
|
654
|
+
|
655
|
+
[[package]]
|
656
|
+
name = "rand_chacha"
|
657
|
+
version = "0.9.0"
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
659
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
660
|
+
dependencies = [
|
661
|
+
"ppv-lite86",
|
662
|
+
"rand_core",
|
663
|
+
]
|
664
|
+
|
665
|
+
[[package]]
|
666
|
+
name = "rand_core"
|
667
|
+
version = "0.9.3"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
670
|
+
dependencies = [
|
671
|
+
"getrandom",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "rb-sys"
|
676
|
+
version = "0.9.116"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
679
|
+
dependencies = [
|
680
|
+
"rb-sys-build",
|
681
|
+
]
|
682
|
+
|
683
|
+
[[package]]
|
684
|
+
name = "rb-sys-build"
|
685
|
+
version = "0.9.116"
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
688
|
+
dependencies = [
|
689
|
+
"bindgen",
|
690
|
+
"lazy_static",
|
691
|
+
"proc-macro2",
|
692
|
+
"quote",
|
693
|
+
"regex",
|
694
|
+
"shell-words",
|
695
|
+
"syn",
|
696
|
+
]
|
697
|
+
|
698
|
+
[[package]]
|
699
|
+
name = "rb-sys-env"
|
700
|
+
version = "0.1.2"
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
703
|
+
|
704
|
+
[[package]]
|
705
|
+
name = "rb-sys-env"
|
706
|
+
version = "0.2.2"
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
708
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
709
|
+
|
710
|
+
[[package]]
|
711
|
+
name = "redb"
|
712
|
+
version = "2.6.0"
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
714
|
+
checksum = "cef6a6d3a65ea334d6cdfb31fa2525c20184b7aa7bd1ad1e2e37502610d4609f"
|
715
|
+
dependencies = [
|
716
|
+
"libc",
|
717
|
+
]
|
718
|
+
|
719
|
+
[[package]]
|
720
|
+
name = "regex"
|
721
|
+
version = "1.11.1"
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
723
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
724
|
+
dependencies = [
|
725
|
+
"aho-corasick",
|
726
|
+
"memchr",
|
727
|
+
"regex-automata",
|
728
|
+
"regex-syntax",
|
729
|
+
]
|
730
|
+
|
731
|
+
[[package]]
|
732
|
+
name = "regex-automata"
|
733
|
+
version = "0.4.9"
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
736
|
+
dependencies = [
|
737
|
+
"aho-corasick",
|
738
|
+
"memchr",
|
739
|
+
"regex-syntax",
|
740
|
+
]
|
741
|
+
|
742
|
+
[[package]]
|
743
|
+
name = "regex-syntax"
|
744
|
+
version = "0.8.5"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "rusqlite"
|
750
|
+
version = "0.37.0"
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
+
checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f"
|
753
|
+
dependencies = [
|
754
|
+
"bitflags",
|
755
|
+
"fallible-iterator",
|
756
|
+
"fallible-streaming-iterator",
|
757
|
+
"hashlink",
|
758
|
+
"libsqlite3-sys",
|
759
|
+
"smallvec",
|
760
|
+
"uuid",
|
761
|
+
]
|
762
|
+
|
763
|
+
[[package]]
|
764
|
+
name = "rustc-hash"
|
765
|
+
version = "1.1.0"
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
767
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
768
|
+
|
769
|
+
[[package]]
|
770
|
+
name = "rustc-hash"
|
771
|
+
version = "2.1.1"
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
774
|
+
|
775
|
+
[[package]]
|
776
|
+
name = "rustversion"
|
777
|
+
version = "1.0.21"
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
779
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "ryu"
|
783
|
+
version = "1.0.20"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
786
|
+
|
787
|
+
[[package]]
|
788
|
+
name = "seq-macro"
|
789
|
+
version = "0.3.6"
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "serde"
|
795
|
+
version = "1.0.219"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
798
|
+
dependencies = [
|
799
|
+
"serde_derive",
|
800
|
+
]
|
801
|
+
|
802
|
+
[[package]]
|
803
|
+
name = "serde_derive"
|
804
|
+
version = "1.0.219"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
807
|
+
dependencies = [
|
808
|
+
"proc-macro2",
|
809
|
+
"quote",
|
810
|
+
"syn",
|
811
|
+
]
|
812
|
+
|
813
|
+
[[package]]
|
814
|
+
name = "serde_json"
|
815
|
+
version = "1.0.140"
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
818
|
+
dependencies = [
|
819
|
+
"itoa",
|
820
|
+
"memchr",
|
821
|
+
"ryu",
|
822
|
+
"serde",
|
823
|
+
]
|
824
|
+
|
825
|
+
[[package]]
|
826
|
+
name = "sha2"
|
827
|
+
version = "0.10.9"
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
830
|
+
dependencies = [
|
831
|
+
"cfg-if",
|
832
|
+
"cpufeatures",
|
833
|
+
"digest",
|
834
|
+
]
|
835
|
+
|
836
|
+
[[package]]
|
837
|
+
name = "shell-words"
|
838
|
+
version = "1.1.0"
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
841
|
+
|
842
|
+
[[package]]
|
843
|
+
name = "shlex"
|
844
|
+
version = "1.3.0"
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
846
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
847
|
+
|
848
|
+
[[package]]
|
849
|
+
name = "slab"
|
850
|
+
version = "0.4.10"
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
853
|
+
|
854
|
+
[[package]]
|
855
|
+
name = "smallvec"
|
856
|
+
version = "1.15.1"
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
859
|
+
|
860
|
+
[[package]]
|
861
|
+
name = "syn"
|
862
|
+
version = "2.0.104"
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
865
|
+
dependencies = [
|
866
|
+
"proc-macro2",
|
867
|
+
"quote",
|
868
|
+
"unicode-ident",
|
869
|
+
]
|
870
|
+
|
871
|
+
[[package]]
|
872
|
+
name = "thiserror"
|
873
|
+
version = "2.0.12"
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
875
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
876
|
+
dependencies = [
|
877
|
+
"thiserror-impl",
|
878
|
+
]
|
879
|
+
|
880
|
+
[[package]]
|
881
|
+
name = "thiserror-impl"
|
882
|
+
version = "2.0.12"
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
885
|
+
dependencies = [
|
886
|
+
"proc-macro2",
|
887
|
+
"quote",
|
888
|
+
"syn",
|
889
|
+
]
|
890
|
+
|
891
|
+
[[package]]
|
892
|
+
name = "typenum"
|
893
|
+
version = "1.18.0"
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
895
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
896
|
+
|
897
|
+
[[package]]
|
898
|
+
name = "ucd-trie"
|
899
|
+
version = "0.1.7"
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
901
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
902
|
+
|
903
|
+
[[package]]
|
904
|
+
name = "unicode-ident"
|
905
|
+
version = "1.0.18"
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
907
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
908
|
+
|
909
|
+
[[package]]
|
910
|
+
name = "uuid"
|
911
|
+
version = "1.17.0"
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
914
|
+
dependencies = [
|
915
|
+
"getrandom",
|
916
|
+
"js-sys",
|
917
|
+
"wasm-bindgen",
|
918
|
+
]
|
919
|
+
|
920
|
+
[[package]]
|
921
|
+
name = "vcpkg"
|
922
|
+
version = "0.2.15"
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
925
|
+
|
926
|
+
[[package]]
|
927
|
+
name = "version_check"
|
928
|
+
version = "0.9.5"
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
930
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
931
|
+
|
932
|
+
[[package]]
|
933
|
+
name = "wasi"
|
934
|
+
version = "0.14.2+wasi-0.2.4"
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
936
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
937
|
+
dependencies = [
|
938
|
+
"wit-bindgen-rt",
|
939
|
+
]
|
940
|
+
|
941
|
+
[[package]]
|
942
|
+
name = "wasm-bindgen"
|
943
|
+
version = "0.2.100"
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
946
|
+
dependencies = [
|
947
|
+
"cfg-if",
|
948
|
+
"once_cell",
|
949
|
+
"rustversion",
|
950
|
+
"wasm-bindgen-macro",
|
951
|
+
]
|
952
|
+
|
953
|
+
[[package]]
|
954
|
+
name = "wasm-bindgen-backend"
|
955
|
+
version = "0.2.100"
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
958
|
+
dependencies = [
|
959
|
+
"bumpalo",
|
960
|
+
"log",
|
961
|
+
"proc-macro2",
|
962
|
+
"quote",
|
963
|
+
"syn",
|
964
|
+
"wasm-bindgen-shared",
|
965
|
+
]
|
966
|
+
|
967
|
+
[[package]]
|
968
|
+
name = "wasm-bindgen-macro"
|
969
|
+
version = "0.2.100"
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
972
|
+
dependencies = [
|
973
|
+
"quote",
|
974
|
+
"wasm-bindgen-macro-support",
|
975
|
+
]
|
976
|
+
|
977
|
+
[[package]]
|
978
|
+
name = "wasm-bindgen-macro-support"
|
979
|
+
version = "0.2.100"
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
982
|
+
dependencies = [
|
983
|
+
"proc-macro2",
|
984
|
+
"quote",
|
985
|
+
"syn",
|
986
|
+
"wasm-bindgen-backend",
|
987
|
+
"wasm-bindgen-shared",
|
988
|
+
]
|
989
|
+
|
990
|
+
[[package]]
|
991
|
+
name = "wasm-bindgen-shared"
|
992
|
+
version = "0.2.100"
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
994
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
995
|
+
dependencies = [
|
996
|
+
"unicode-ident",
|
997
|
+
]
|
998
|
+
|
999
|
+
[[package]]
|
1000
|
+
name = "windows-targets"
|
1001
|
+
version = "0.53.2"
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1003
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
1004
|
+
dependencies = [
|
1005
|
+
"windows_aarch64_gnullvm",
|
1006
|
+
"windows_aarch64_msvc",
|
1007
|
+
"windows_i686_gnu",
|
1008
|
+
"windows_i686_gnullvm",
|
1009
|
+
"windows_i686_msvc",
|
1010
|
+
"windows_x86_64_gnu",
|
1011
|
+
"windows_x86_64_gnullvm",
|
1012
|
+
"windows_x86_64_msvc",
|
1013
|
+
]
|
1014
|
+
|
1015
|
+
[[package]]
|
1016
|
+
name = "windows_aarch64_gnullvm"
|
1017
|
+
version = "0.53.0"
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1020
|
+
|
1021
|
+
[[package]]
|
1022
|
+
name = "windows_aarch64_msvc"
|
1023
|
+
version = "0.53.0"
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1025
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1026
|
+
|
1027
|
+
[[package]]
|
1028
|
+
name = "windows_i686_gnu"
|
1029
|
+
version = "0.53.0"
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1031
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1032
|
+
|
1033
|
+
[[package]]
|
1034
|
+
name = "windows_i686_gnullvm"
|
1035
|
+
version = "0.53.0"
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1038
|
+
|
1039
|
+
[[package]]
|
1040
|
+
name = "windows_i686_msvc"
|
1041
|
+
version = "0.53.0"
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1043
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1044
|
+
|
1045
|
+
[[package]]
|
1046
|
+
name = "windows_x86_64_gnu"
|
1047
|
+
version = "0.53.0"
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1050
|
+
|
1051
|
+
[[package]]
|
1052
|
+
name = "windows_x86_64_gnullvm"
|
1053
|
+
version = "0.53.0"
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1056
|
+
|
1057
|
+
[[package]]
|
1058
|
+
name = "windows_x86_64_msvc"
|
1059
|
+
version = "0.53.0"
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "winnow"
|
1065
|
+
version = "0.7.12"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
|
1068
|
+
dependencies = [
|
1069
|
+
"memchr",
|
1070
|
+
]
|
1071
|
+
|
1072
|
+
[[package]]
|
1073
|
+
name = "wit-bindgen-rt"
|
1074
|
+
version = "0.39.0"
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1076
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
1077
|
+
dependencies = [
|
1078
|
+
"bitflags",
|
1079
|
+
]
|
1080
|
+
|
1081
|
+
[[package]]
|
1082
|
+
name = "zerocopy"
|
1083
|
+
version = "0.8.26"
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
1086
|
+
dependencies = [
|
1087
|
+
"zerocopy-derive",
|
1088
|
+
]
|
1089
|
+
|
1090
|
+
[[package]]
|
1091
|
+
name = "zerocopy-derive"
|
1092
|
+
version = "0.8.26"
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1094
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
1095
|
+
dependencies = [
|
1096
|
+
"proc-macro2",
|
1097
|
+
"quote",
|
1098
|
+
"syn",
|
1099
|
+
]
|