gqlite 1.2.0 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/ext/gqliterb/.cargo/config.toml +2 -0
  3. data/ext/gqliterb/Cargo.lock +152 -135
  4. data/ext/gqliterb/Cargo.toml +4 -6
  5. data/ext/gqliterb/src/lib.rs +8 -2
  6. data/ext/gqliterb/vendor/gqlitedb/Cargo.lock +2115 -0
  7. data/ext/gqliterb/vendor/gqlitedb/Cargo.toml +138 -0
  8. data/ext/gqliterb/vendor/gqlitedb/askama.toml +3 -0
  9. data/ext/gqliterb/vendor/gqlitedb/benches/common/mod.rs +25 -0
  10. data/ext/gqliterb/vendor/gqlitedb/benches/common/pokec.rs +185 -0
  11. data/ext/gqliterb/vendor/gqlitedb/benches/pokec_divan.rs +137 -0
  12. data/ext/gqliterb/vendor/gqlitedb/benches/pokec_iai.rs +122 -0
  13. data/ext/gqliterb/vendor/gqlitedb/release.toml +7 -0
  14. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/arithmetic.rs +96 -0
  15. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/containers.rs +33 -0
  16. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/count.rs +35 -0
  17. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/stats.rs +168 -0
  18. data/ext/gqliterb/vendor/gqlitedb/src/aggregators.rs +74 -0
  19. data/ext/gqliterb/vendor/gqlitedb/src/capi.rs +259 -0
  20. data/ext/gqliterb/vendor/gqlitedb/src/compiler/expression_analyser.rs +431 -0
  21. data/ext/gqliterb/vendor/gqlitedb/src/compiler/variables_manager.rs +621 -0
  22. data/ext/gqliterb/vendor/gqlitedb/src/compiler.rs +1115 -0
  23. data/ext/gqliterb/vendor/gqlitedb/src/connection.rs +342 -0
  24. data/ext/gqliterb/vendor/gqlitedb/src/consts.rs +10 -0
  25. data/ext/gqliterb/vendor/gqlitedb/src/error.rs +613 -0
  26. data/ext/gqliterb/vendor/gqlitedb/src/functions/containers.rs +115 -0
  27. data/ext/gqliterb/vendor/gqlitedb/src/functions/edge.rs +20 -0
  28. data/ext/gqliterb/vendor/gqlitedb/src/functions/math.rs +44 -0
  29. data/ext/gqliterb/vendor/gqlitedb/src/functions/node.rs +16 -0
  30. data/ext/gqliterb/vendor/gqlitedb/src/functions/path.rs +80 -0
  31. data/ext/gqliterb/vendor/gqlitedb/src/functions/scalar.rs +86 -0
  32. data/ext/gqliterb/vendor/gqlitedb/src/functions/string.rs +28 -0
  33. data/ext/gqliterb/vendor/gqlitedb/src/functions/value.rs +99 -0
  34. data/ext/gqliterb/vendor/gqlitedb/src/functions.rs +410 -0
  35. data/ext/gqliterb/vendor/gqlitedb/src/graph.rs +283 -0
  36. data/ext/gqliterb/vendor/gqlitedb/src/interpreter/evaluators.rs +1776 -0
  37. data/ext/gqliterb/vendor/gqlitedb/src/interpreter/instructions.rs +267 -0
  38. data/ext/gqliterb/vendor/gqlitedb/src/interpreter/mod.rs +4 -0
  39. data/ext/gqliterb/vendor/gqlitedb/src/lib.rs +41 -0
  40. data/ext/gqliterb/vendor/gqlitedb/src/parser/ast.rs +611 -0
  41. data/ext/gqliterb/vendor/gqlitedb/src/parser/gql.pest +196 -0
  42. data/ext/gqliterb/vendor/gqlitedb/src/parser/parser.rs +1183 -0
  43. data/ext/gqliterb/vendor/gqlitedb/src/parser.rs +4 -0
  44. data/ext/gqliterb/vendor/gqlitedb/src/prelude.rs +8 -0
  45. data/ext/gqliterb/vendor/gqlitedb/src/serialize_with.rs +94 -0
  46. data/ext/gqliterb/vendor/gqlitedb/src/store/pgql.rs +121 -0
  47. data/ext/gqliterb/vendor/gqlitedb/src/store/redb.rs +1262 -0
  48. data/ext/gqliterb/vendor/gqlitedb/src/store/sqlite.rs +1026 -0
  49. data/ext/gqliterb/vendor/gqlitedb/src/store.rs +439 -0
  50. data/ext/gqliterb/vendor/gqlitedb/src/tests/compiler.rs +92 -0
  51. data/ext/gqliterb/vendor/gqlitedb/src/tests/evaluators.rs +227 -0
  52. data/ext/gqliterb/vendor/gqlitedb/src/tests/parser.rs +81 -0
  53. data/ext/gqliterb/vendor/gqlitedb/src/tests/store/redb.rs +46 -0
  54. data/ext/gqliterb/vendor/gqlitedb/src/tests/store/sqlite.rs +46 -0
  55. data/ext/gqliterb/vendor/gqlitedb/src/tests/store.rs +470 -0
  56. data/ext/gqliterb/vendor/gqlitedb/src/tests/templates/ast.rs +356 -0
  57. data/ext/gqliterb/vendor/gqlitedb/src/tests/templates/programs.rs +455 -0
  58. data/ext/gqliterb/vendor/gqlitedb/src/tests/templates.rs +2 -0
  59. data/ext/gqliterb/vendor/gqlitedb/src/tests.rs +39 -0
  60. data/ext/gqliterb/vendor/gqlitedb/src/utils.rs +28 -0
  61. data/ext/gqliterb/vendor/gqlitedb/src/value/compare.rs +212 -0
  62. data/ext/gqliterb/vendor/gqlitedb/src/value/contains.rs +47 -0
  63. data/ext/gqliterb/vendor/gqlitedb/src/value/value_map.rs +298 -0
  64. data/ext/gqliterb/vendor/gqlitedb/src/value.rs +609 -0
  65. data/ext/gqliterb/vendor/gqlitedb/src/value_table.rs +610 -0
  66. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/call_stats.sql +22 -0
  67. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_count_for_node.sql +3 -0
  68. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_create.sql +6 -0
  69. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_delete.sql +1 -0
  70. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_delete_by_nodes.sql +2 -0
  71. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_select.sql +139 -0
  72. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_update.sql +4 -0
  73. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/graph_create.sql +16 -0
  74. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/graph_delete.sql +3 -0
  75. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/metadata_create_table.sql +1 -0
  76. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/metadata_get.sql +1 -0
  77. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/metadata_set.sql +1 -0
  78. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_create.sql +1 -0
  79. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_delete.sql +1 -0
  80. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_select.sql +42 -0
  81. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_update.sql +4 -0
  82. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/table_exists.sql +5 -0
  83. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/upgrade_from_1_01.sql +2 -0
  84. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/upgrade_graph_from_1_01.sql +65 -0
  85. metadata +82 -2
@@ -0,0 +1,2115 @@
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 = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "annotate-snippets"
22
+ version = "0.11.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
25
+ dependencies = [
26
+ "anstyle",
27
+ "unicode-width",
28
+ ]
29
+
30
+ [[package]]
31
+ name = "anstyle"
32
+ version = "1.0.11"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
35
+
36
+ [[package]]
37
+ name = "anyhow"
38
+ version = "1.0.98"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
41
+
42
+ [[package]]
43
+ name = "askama"
44
+ version = "0.14.0"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4"
47
+ dependencies = [
48
+ "askama_derive",
49
+ "itoa",
50
+ "percent-encoding",
51
+ "serde",
52
+ "serde_json",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "askama_derive"
57
+ version = "0.14.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f"
60
+ dependencies = [
61
+ "askama_parser",
62
+ "basic-toml",
63
+ "memchr",
64
+ "proc-macro2",
65
+ "quote",
66
+ "rustc-hash",
67
+ "serde",
68
+ "serde_derive",
69
+ "syn",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "askama_parser"
74
+ version = "0.14.0"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358"
77
+ dependencies = [
78
+ "memchr",
79
+ "serde",
80
+ "serde_derive",
81
+ "winnow",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "atomic-traits"
86
+ version = "0.4.0"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "707f750b93bd1b739cf9ddf85f8fe7c97a4a62c60ccf8b6f232514bd9103bedc"
89
+ dependencies = [
90
+ "cfg-if",
91
+ "rustc_version",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "autocfg"
96
+ version = "1.5.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
99
+
100
+ [[package]]
101
+ name = "basic-toml"
102
+ version = "0.1.10"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
105
+ dependencies = [
106
+ "serde",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "better_default"
111
+ version = "1.0.5"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "7b9a5040dce49a7642c97ccb1ae59567098967b5d52c29773f1299a42d23bb39"
114
+ dependencies = [
115
+ "proc-macro2",
116
+ "quote",
117
+ "syn",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "bincode"
122
+ version = "1.3.3"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
125
+ dependencies = [
126
+ "serde",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "bindgen"
131
+ version = "0.71.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3"
134
+ dependencies = [
135
+ "annotate-snippets",
136
+ "bitflags",
137
+ "cexpr",
138
+ "clang-sys",
139
+ "itertools 0.13.0",
140
+ "proc-macro2",
141
+ "quote",
142
+ "regex",
143
+ "rustc-hash",
144
+ "shlex",
145
+ "syn",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "bitflags"
150
+ version = "2.9.1"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
153
+
154
+ [[package]]
155
+ name = "bitvec"
156
+ version = "1.0.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
159
+ dependencies = [
160
+ "funty",
161
+ "radium",
162
+ "tap",
163
+ "wyz",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "block-buffer"
168
+ version = "0.10.4"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
171
+ dependencies = [
172
+ "generic-array",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "bumpalo"
177
+ version = "3.19.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
180
+
181
+ [[package]]
182
+ name = "byteorder"
183
+ version = "1.5.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
186
+
187
+ [[package]]
188
+ name = "cargo_toml"
189
+ version = "0.22.3"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
192
+ dependencies = [
193
+ "serde",
194
+ "toml 0.9.4",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "cc"
199
+ version = "1.2.31"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2"
202
+ dependencies = [
203
+ "shlex",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "ccutils"
208
+ version = "0.3.5"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "d60887477bbb34ec7cae8d88a4cb21f626acd681949a639adbba4b7662e6edc7"
211
+ dependencies = [
212
+ "better_default",
213
+ "log",
214
+ "parking_lot",
215
+ "rand",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "cee-scape"
220
+ version = "0.2.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "4d67dfb052149f779f77e9ce089cea126e00657e8f0d11dafc7901fde4291101"
223
+ dependencies = [
224
+ "cc",
225
+ "libc",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "cexpr"
230
+ version = "0.6.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
233
+ dependencies = [
234
+ "nom",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "cfg-if"
239
+ version = "1.0.1"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
242
+
243
+ [[package]]
244
+ name = "ciborium"
245
+ version = "0.2.2"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
248
+ dependencies = [
249
+ "ciborium-io",
250
+ "ciborium-ll",
251
+ "serde",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "ciborium-io"
256
+ version = "0.2.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
259
+
260
+ [[package]]
261
+ name = "ciborium-ll"
262
+ version = "0.2.2"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
265
+ dependencies = [
266
+ "ciborium-io",
267
+ "half 2.6.0",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "clang-sys"
272
+ version = "1.8.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
275
+ dependencies = [
276
+ "glob",
277
+ "libc",
278
+ "libloading",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "clap"
283
+ version = "4.5.42"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882"
286
+ dependencies = [
287
+ "clap_builder",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "clap_builder"
292
+ version = "4.5.42"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966"
295
+ dependencies = [
296
+ "anstyle",
297
+ "clap_lex",
298
+ "terminal_size",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "clap_lex"
303
+ version = "0.7.5"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
306
+
307
+ [[package]]
308
+ name = "codepage"
309
+ version = "0.1.2"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
312
+ dependencies = [
313
+ "encoding_rs",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "condtype"
318
+ version = "1.3.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
321
+
322
+ [[package]]
323
+ name = "convert_case"
324
+ version = "0.8.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
327
+ dependencies = [
328
+ "unicode-segmentation",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "cpufeatures"
333
+ version = "0.2.17"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
336
+ dependencies = [
337
+ "libc",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "crunchy"
342
+ version = "0.2.4"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
345
+
346
+ [[package]]
347
+ name = "crypto-common"
348
+ version = "0.1.6"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
351
+ dependencies = [
352
+ "generic-array",
353
+ "typenum",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "derive_more"
358
+ version = "2.0.1"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
361
+ dependencies = [
362
+ "derive_more-impl",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "derive_more-impl"
367
+ version = "2.0.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
370
+ dependencies = [
371
+ "proc-macro2",
372
+ "quote",
373
+ "syn",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "digest"
378
+ version = "0.10.7"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
381
+ dependencies = [
382
+ "block-buffer",
383
+ "crypto-common",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "displaydoc"
388
+ version = "0.2.5"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
391
+ dependencies = [
392
+ "proc-macro2",
393
+ "quote",
394
+ "syn",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "divan"
399
+ version = "0.1.21"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "a405457ec78b8fe08b0e32b4a3570ab5dff6dd16eb9e76a5ee0a9d9cbd898933"
402
+ dependencies = [
403
+ "cfg-if",
404
+ "clap",
405
+ "condtype",
406
+ "divan-macros",
407
+ "libc",
408
+ "regex-lite",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "divan-macros"
413
+ version = "0.1.21"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "9556bc800956545d6420a640173e5ba7dfa82f38d3ea5a167eb555bc69ac3323"
416
+ dependencies = [
417
+ "proc-macro2",
418
+ "quote",
419
+ "syn",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "either"
424
+ version = "1.15.0"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
427
+
428
+ [[package]]
429
+ name = "encoding_rs"
430
+ version = "0.8.35"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
433
+ dependencies = [
434
+ "cfg-if",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "enum-map"
439
+ version = "2.7.3"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9"
442
+ dependencies = [
443
+ "enum-map-derive",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "enum-map-derive"
448
+ version = "0.17.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb"
451
+ dependencies = [
452
+ "proc-macro2",
453
+ "quote",
454
+ "syn",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "equivalent"
459
+ version = "1.0.2"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
462
+
463
+ [[package]]
464
+ name = "errno"
465
+ version = "0.3.13"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
468
+ dependencies = [
469
+ "libc",
470
+ "windows-sys 0.60.2",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "eyre"
475
+ version = "0.6.12"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
478
+ dependencies = [
479
+ "indenter",
480
+ "once_cell",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "fallible-iterator"
485
+ version = "0.3.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
488
+
489
+ [[package]]
490
+ name = "fallible-streaming-iterator"
491
+ version = "0.1.9"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
494
+
495
+ [[package]]
496
+ name = "fixedbitset"
497
+ version = "0.5.7"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
500
+
501
+ [[package]]
502
+ name = "foldhash"
503
+ version = "0.1.5"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
506
+
507
+ [[package]]
508
+ name = "form_urlencoded"
509
+ version = "1.2.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
512
+ dependencies = [
513
+ "percent-encoding",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "funty"
518
+ version = "2.0.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
521
+
522
+ [[package]]
523
+ name = "generic-array"
524
+ version = "0.14.7"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
527
+ dependencies = [
528
+ "typenum",
529
+ "version_check",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "getrandom"
534
+ version = "0.3.3"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
537
+ dependencies = [
538
+ "cfg-if",
539
+ "libc",
540
+ "r-efi",
541
+ "wasi",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "glob"
546
+ version = "0.3.2"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
549
+
550
+ [[package]]
551
+ name = "gqlitedb"
552
+ version = "0.5.3"
553
+ dependencies = [
554
+ "askama",
555
+ "ccutils",
556
+ "ciborium",
557
+ "divan",
558
+ "iai-callgrind",
559
+ "itertools 0.14.0",
560
+ "pest",
561
+ "pest_derive",
562
+ "pgrx",
563
+ "rand",
564
+ "redb",
565
+ "regex",
566
+ "rusqlite",
567
+ "serde",
568
+ "serde_json",
569
+ "thiserror",
570
+ "uuid",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "half"
575
+ version = "1.8.3"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403"
578
+
579
+ [[package]]
580
+ name = "half"
581
+ version = "2.6.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
584
+ dependencies = [
585
+ "cfg-if",
586
+ "crunchy",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "hash32"
591
+ version = "0.3.1"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
594
+ dependencies = [
595
+ "byteorder",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "hashbrown"
600
+ version = "0.15.4"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
603
+ dependencies = [
604
+ "allocator-api2",
605
+ "equivalent",
606
+ "foldhash",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "hashlink"
611
+ version = "0.10.0"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
614
+ dependencies = [
615
+ "hashbrown",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "heapless"
620
+ version = "0.8.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
623
+ dependencies = [
624
+ "hash32",
625
+ "stable_deref_trait",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "hermit-abi"
630
+ version = "0.5.2"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
633
+
634
+ [[package]]
635
+ name = "home"
636
+ version = "0.5.11"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
639
+ dependencies = [
640
+ "windows-sys 0.59.0",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "iai-callgrind"
645
+ version = "0.16.1"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "0b1e4910d3a9137442723dfb772c32dc10674c4181ca078d2fd227cd5dce9db0"
648
+ dependencies = [
649
+ "bincode",
650
+ "derive_more",
651
+ "iai-callgrind-macros",
652
+ "iai-callgrind-runner",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "iai-callgrind-macros"
657
+ version = "0.6.1"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "4d03775318d3f9f01b39ac6612b01464006dc397a654a89dd57df2fd34fb68c3"
660
+ dependencies = [
661
+ "derive_more",
662
+ "proc-macro-error2",
663
+ "proc-macro2",
664
+ "quote",
665
+ "serde",
666
+ "serde_json",
667
+ "syn",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "iai-callgrind-runner"
672
+ version = "0.16.1"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "b74c9743c00c3bca4aaffc69c87cae56837796cd362438daf354a3f785788c68"
675
+ dependencies = [
676
+ "serde",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "icu_collections"
681
+ version = "2.0.0"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
684
+ dependencies = [
685
+ "displaydoc",
686
+ "potential_utf",
687
+ "yoke",
688
+ "zerofrom",
689
+ "zerovec",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "icu_locale_core"
694
+ version = "2.0.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
697
+ dependencies = [
698
+ "displaydoc",
699
+ "litemap",
700
+ "tinystr",
701
+ "writeable",
702
+ "zerovec",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "icu_normalizer"
707
+ version = "2.0.0"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
710
+ dependencies = [
711
+ "displaydoc",
712
+ "icu_collections",
713
+ "icu_normalizer_data",
714
+ "icu_properties",
715
+ "icu_provider",
716
+ "smallvec",
717
+ "zerovec",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "icu_normalizer_data"
722
+ version = "2.0.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
725
+
726
+ [[package]]
727
+ name = "icu_properties"
728
+ version = "2.0.1"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
731
+ dependencies = [
732
+ "displaydoc",
733
+ "icu_collections",
734
+ "icu_locale_core",
735
+ "icu_properties_data",
736
+ "icu_provider",
737
+ "potential_utf",
738
+ "zerotrie",
739
+ "zerovec",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "icu_properties_data"
744
+ version = "2.0.1"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
747
+
748
+ [[package]]
749
+ name = "icu_provider"
750
+ version = "2.0.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
753
+ dependencies = [
754
+ "displaydoc",
755
+ "icu_locale_core",
756
+ "stable_deref_trait",
757
+ "tinystr",
758
+ "writeable",
759
+ "yoke",
760
+ "zerofrom",
761
+ "zerotrie",
762
+ "zerovec",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "idna"
767
+ version = "1.0.3"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
770
+ dependencies = [
771
+ "idna_adapter",
772
+ "smallvec",
773
+ "utf8_iter",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "idna_adapter"
778
+ version = "1.2.1"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
781
+ dependencies = [
782
+ "icu_normalizer",
783
+ "icu_properties",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "indenter"
788
+ version = "0.3.3"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
791
+
792
+ [[package]]
793
+ name = "indexmap"
794
+ version = "2.10.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
797
+ dependencies = [
798
+ "equivalent",
799
+ "hashbrown",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "is-terminal"
804
+ version = "0.4.16"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
807
+ dependencies = [
808
+ "hermit-abi",
809
+ "libc",
810
+ "windows-sys 0.59.0",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "is_ci"
815
+ version = "1.2.0"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
818
+
819
+ [[package]]
820
+ name = "itertools"
821
+ version = "0.13.0"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
824
+ dependencies = [
825
+ "either",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "itertools"
830
+ version = "0.14.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
833
+ dependencies = [
834
+ "either",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "itoa"
839
+ version = "1.0.15"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
842
+
843
+ [[package]]
844
+ name = "js-sys"
845
+ version = "0.3.77"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
848
+ dependencies = [
849
+ "once_cell",
850
+ "wasm-bindgen",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "libc"
855
+ version = "0.2.174"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
858
+
859
+ [[package]]
860
+ name = "libloading"
861
+ version = "0.8.8"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
864
+ dependencies = [
865
+ "cfg-if",
866
+ "windows-targets 0.53.3",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "libsqlite3-sys"
871
+ version = "0.35.0"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
874
+ dependencies = [
875
+ "pkg-config",
876
+ "vcpkg",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "linux-raw-sys"
881
+ version = "0.9.4"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
884
+
885
+ [[package]]
886
+ name = "litemap"
887
+ version = "0.8.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
890
+
891
+ [[package]]
892
+ name = "lock_api"
893
+ version = "0.4.13"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
896
+ dependencies = [
897
+ "autocfg",
898
+ "scopeguard",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "log"
903
+ version = "0.4.27"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
906
+
907
+ [[package]]
908
+ name = "memchr"
909
+ version = "2.7.5"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
912
+
913
+ [[package]]
914
+ name = "minimal-lexical"
915
+ version = "0.2.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
918
+
919
+ [[package]]
920
+ name = "nom"
921
+ version = "7.1.3"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
924
+ dependencies = [
925
+ "memchr",
926
+ "minimal-lexical",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "once_cell"
931
+ version = "1.21.3"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
934
+
935
+ [[package]]
936
+ name = "owo-colors"
937
+ version = "4.2.2"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
940
+ dependencies = [
941
+ "supports-color 2.1.0",
942
+ "supports-color 3.0.2",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "parking_lot"
947
+ version = "0.12.4"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
950
+ dependencies = [
951
+ "lock_api",
952
+ "parking_lot_core",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "parking_lot_core"
957
+ version = "0.9.11"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
960
+ dependencies = [
961
+ "cfg-if",
962
+ "libc",
963
+ "redox_syscall",
964
+ "smallvec",
965
+ "windows-targets 0.52.6",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "pathsearch"
970
+ version = "0.2.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "da983bc5e582ab17179c190b4b66c7d76c5943a69c6d34df2a2b6bf8a2977b05"
973
+ dependencies = [
974
+ "anyhow",
975
+ "libc",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "percent-encoding"
980
+ version = "2.3.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
983
+
984
+ [[package]]
985
+ name = "pest"
986
+ version = "2.8.1"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
989
+ dependencies = [
990
+ "memchr",
991
+ "thiserror",
992
+ "ucd-trie",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "pest_derive"
997
+ version = "2.8.1"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
1000
+ dependencies = [
1001
+ "pest",
1002
+ "pest_generator",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "pest_generator"
1007
+ version = "2.8.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
1010
+ dependencies = [
1011
+ "pest",
1012
+ "pest_meta",
1013
+ "proc-macro2",
1014
+ "quote",
1015
+ "syn",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "pest_meta"
1020
+ version = "2.8.1"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
1023
+ dependencies = [
1024
+ "pest",
1025
+ "sha2",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "petgraph"
1030
+ version = "0.8.2"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca"
1033
+ dependencies = [
1034
+ "fixedbitset",
1035
+ "hashbrown",
1036
+ "indexmap",
1037
+ "serde",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "pgrx"
1042
+ version = "0.15.0"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "bab5bc1d60d3bc3c966d307a3c7313b1ebfb49a0ec183be3f1a057df0bcc9988"
1045
+ dependencies = [
1046
+ "atomic-traits",
1047
+ "bitflags",
1048
+ "bitvec",
1049
+ "enum-map",
1050
+ "heapless",
1051
+ "libc",
1052
+ "once_cell",
1053
+ "pgrx-macros",
1054
+ "pgrx-pg-sys",
1055
+ "pgrx-sql-entity-graph",
1056
+ "seahash",
1057
+ "serde",
1058
+ "serde_cbor",
1059
+ "serde_json",
1060
+ "thiserror",
1061
+ "uuid",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "pgrx-bindgen"
1066
+ version = "0.15.0"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "9804b74c211a9edd550cd974718f8cc407dec50d8e9cafb906e0b042ba434af0"
1069
+ dependencies = [
1070
+ "bindgen",
1071
+ "cc",
1072
+ "clang-sys",
1073
+ "eyre",
1074
+ "pgrx-pg-config",
1075
+ "proc-macro2",
1076
+ "quote",
1077
+ "regex",
1078
+ "shlex",
1079
+ "syn",
1080
+ "walkdir",
1081
+ ]
1082
+
1083
+ [[package]]
1084
+ name = "pgrx-macros"
1085
+ version = "0.15.0"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "f230769493bf567f137de23264d604d267dd72b8a77c596528e43cf423c6208e"
1088
+ dependencies = [
1089
+ "pgrx-sql-entity-graph",
1090
+ "proc-macro2",
1091
+ "quote",
1092
+ "syn",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "pgrx-pg-config"
1097
+ version = "0.15.0"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "49b64c071c2a46a19ab4521120a25b02b598f4abf6e9b4b1769a7922edeee3de"
1100
+ dependencies = [
1101
+ "cargo_toml",
1102
+ "codepage",
1103
+ "encoding_rs",
1104
+ "eyre",
1105
+ "home",
1106
+ "owo-colors",
1107
+ "pathsearch",
1108
+ "serde",
1109
+ "serde_json",
1110
+ "thiserror",
1111
+ "toml 0.8.23",
1112
+ "url",
1113
+ "winapi",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "pgrx-pg-sys"
1118
+ version = "0.15.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "fcbfa98ec7a90252d13a78ac666541173dbb01a2fc1ba20131db6490c0711125"
1121
+ dependencies = [
1122
+ "cee-scape",
1123
+ "libc",
1124
+ "pgrx-bindgen",
1125
+ "pgrx-macros",
1126
+ "pgrx-sql-entity-graph",
1127
+ "serde",
1128
+ "sptr",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "pgrx-sql-entity-graph"
1133
+ version = "0.15.0"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "e79bbf5a33cff6cfdc6dda3a976cd931c995eaa2c073a7c59b8f8fe8f6faa073"
1136
+ dependencies = [
1137
+ "convert_case",
1138
+ "eyre",
1139
+ "petgraph",
1140
+ "proc-macro2",
1141
+ "quote",
1142
+ "syn",
1143
+ "thiserror",
1144
+ "unescape",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "pkg-config"
1149
+ version = "0.3.32"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1152
+
1153
+ [[package]]
1154
+ name = "potential_utf"
1155
+ version = "0.1.2"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1158
+ dependencies = [
1159
+ "zerovec",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "ppv-lite86"
1164
+ version = "0.2.21"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1167
+ dependencies = [
1168
+ "zerocopy",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "proc-macro-error-attr2"
1173
+ version = "2.0.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1176
+ dependencies = [
1177
+ "proc-macro2",
1178
+ "quote",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "proc-macro-error2"
1183
+ version = "2.0.1"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1186
+ dependencies = [
1187
+ "proc-macro-error-attr2",
1188
+ "proc-macro2",
1189
+ "quote",
1190
+ "syn",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "proc-macro2"
1195
+ version = "1.0.95"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1198
+ dependencies = [
1199
+ "unicode-ident",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "quote"
1204
+ version = "1.0.40"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1207
+ dependencies = [
1208
+ "proc-macro2",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "r-efi"
1213
+ version = "5.3.0"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1216
+
1217
+ [[package]]
1218
+ name = "radium"
1219
+ version = "0.7.0"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1222
+
1223
+ [[package]]
1224
+ name = "rand"
1225
+ version = "0.9.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1228
+ dependencies = [
1229
+ "rand_chacha",
1230
+ "rand_core",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "rand_chacha"
1235
+ version = "0.9.0"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1238
+ dependencies = [
1239
+ "ppv-lite86",
1240
+ "rand_core",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "rand_core"
1245
+ version = "0.9.3"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1248
+ dependencies = [
1249
+ "getrandom",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "redb"
1254
+ version = "2.6.2"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "59b38b05028f398f08bea4691640503ec25fcb60b82fb61ce1f8fd1f4fccd3f7"
1257
+ dependencies = [
1258
+ "libc",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "redox_syscall"
1263
+ version = "0.5.17"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1266
+ dependencies = [
1267
+ "bitflags",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "regex"
1272
+ version = "1.11.1"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1275
+ dependencies = [
1276
+ "aho-corasick",
1277
+ "memchr",
1278
+ "regex-automata",
1279
+ "regex-syntax",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "regex-automata"
1284
+ version = "0.4.9"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1287
+ dependencies = [
1288
+ "aho-corasick",
1289
+ "memchr",
1290
+ "regex-syntax",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "regex-lite"
1295
+ version = "0.1.6"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
1298
+
1299
+ [[package]]
1300
+ name = "regex-syntax"
1301
+ version = "0.8.5"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1304
+
1305
+ [[package]]
1306
+ name = "rusqlite"
1307
+ version = "0.37.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f"
1310
+ dependencies = [
1311
+ "bitflags",
1312
+ "fallible-iterator",
1313
+ "fallible-streaming-iterator",
1314
+ "hashlink",
1315
+ "libsqlite3-sys",
1316
+ "smallvec",
1317
+ "uuid",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "rustc-hash"
1322
+ version = "2.1.1"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1325
+
1326
+ [[package]]
1327
+ name = "rustc_version"
1328
+ version = "0.4.1"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1331
+ dependencies = [
1332
+ "semver",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "rustix"
1337
+ version = "1.0.8"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1340
+ dependencies = [
1341
+ "bitflags",
1342
+ "errno",
1343
+ "libc",
1344
+ "linux-raw-sys",
1345
+ "windows-sys 0.60.2",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "rustversion"
1350
+ version = "1.0.21"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1353
+
1354
+ [[package]]
1355
+ name = "ryu"
1356
+ version = "1.0.20"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1359
+
1360
+ [[package]]
1361
+ name = "same-file"
1362
+ version = "1.0.6"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1365
+ dependencies = [
1366
+ "winapi-util",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "scopeguard"
1371
+ version = "1.2.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1374
+
1375
+ [[package]]
1376
+ name = "seahash"
1377
+ version = "4.1.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1380
+
1381
+ [[package]]
1382
+ name = "semver"
1383
+ version = "1.0.26"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
1386
+
1387
+ [[package]]
1388
+ name = "serde"
1389
+ version = "1.0.219"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1392
+ dependencies = [
1393
+ "serde_derive",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "serde_cbor"
1398
+ version = "0.11.2"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
1401
+ dependencies = [
1402
+ "half 1.8.3",
1403
+ "serde",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "serde_derive"
1408
+ version = "1.0.219"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1411
+ dependencies = [
1412
+ "proc-macro2",
1413
+ "quote",
1414
+ "syn",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "serde_json"
1419
+ version = "1.0.142"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
1422
+ dependencies = [
1423
+ "itoa",
1424
+ "memchr",
1425
+ "ryu",
1426
+ "serde",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "serde_spanned"
1431
+ version = "0.6.9"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1434
+ dependencies = [
1435
+ "serde",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "serde_spanned"
1440
+ version = "1.0.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
1443
+ dependencies = [
1444
+ "serde",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "sha2"
1449
+ version = "0.10.9"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1452
+ dependencies = [
1453
+ "cfg-if",
1454
+ "cpufeatures",
1455
+ "digest",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "shlex"
1460
+ version = "1.3.0"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1463
+
1464
+ [[package]]
1465
+ name = "smallvec"
1466
+ version = "1.15.1"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1469
+
1470
+ [[package]]
1471
+ name = "sptr"
1472
+ version = "0.3.2"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
1475
+
1476
+ [[package]]
1477
+ name = "stable_deref_trait"
1478
+ version = "1.2.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1481
+
1482
+ [[package]]
1483
+ name = "supports-color"
1484
+ version = "2.1.0"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
1487
+ dependencies = [
1488
+ "is-terminal",
1489
+ "is_ci",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "supports-color"
1494
+ version = "3.0.2"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
1497
+ dependencies = [
1498
+ "is_ci",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "syn"
1503
+ version = "2.0.104"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1506
+ dependencies = [
1507
+ "proc-macro2",
1508
+ "quote",
1509
+ "unicode-ident",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "synstructure"
1514
+ version = "0.13.2"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1517
+ dependencies = [
1518
+ "proc-macro2",
1519
+ "quote",
1520
+ "syn",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "tap"
1525
+ version = "1.0.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1528
+
1529
+ [[package]]
1530
+ name = "terminal_size"
1531
+ version = "0.4.2"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
1534
+ dependencies = [
1535
+ "rustix",
1536
+ "windows-sys 0.59.0",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "thiserror"
1541
+ version = "2.0.12"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
1544
+ dependencies = [
1545
+ "thiserror-impl",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "thiserror-impl"
1550
+ version = "2.0.12"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
1553
+ dependencies = [
1554
+ "proc-macro2",
1555
+ "quote",
1556
+ "syn",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "tinystr"
1561
+ version = "0.8.1"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1564
+ dependencies = [
1565
+ "displaydoc",
1566
+ "zerovec",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "toml"
1571
+ version = "0.8.23"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1574
+ dependencies = [
1575
+ "serde",
1576
+ "serde_spanned 0.6.9",
1577
+ "toml_datetime 0.6.11",
1578
+ "toml_edit",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "toml"
1583
+ version = "0.9.4"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "41ae868b5a0f67631c14589f7e250c1ea2c574ee5ba21c6c8dd4b1485705a5a1"
1586
+ dependencies = [
1587
+ "indexmap",
1588
+ "serde",
1589
+ "serde_spanned 1.0.0",
1590
+ "toml_datetime 0.7.0",
1591
+ "toml_parser",
1592
+ "toml_writer",
1593
+ "winnow",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "toml_datetime"
1598
+ version = "0.6.11"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1601
+ dependencies = [
1602
+ "serde",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "toml_datetime"
1607
+ version = "0.7.0"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
1610
+ dependencies = [
1611
+ "serde",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "toml_edit"
1616
+ version = "0.22.27"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1619
+ dependencies = [
1620
+ "indexmap",
1621
+ "serde",
1622
+ "serde_spanned 0.6.9",
1623
+ "toml_datetime 0.6.11",
1624
+ "toml_write",
1625
+ "winnow",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "toml_parser"
1630
+ version = "1.0.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30"
1633
+ dependencies = [
1634
+ "winnow",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "toml_write"
1639
+ version = "0.1.2"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1642
+
1643
+ [[package]]
1644
+ name = "toml_writer"
1645
+ version = "1.0.2"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
1648
+
1649
+ [[package]]
1650
+ name = "typenum"
1651
+ version = "1.18.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1654
+
1655
+ [[package]]
1656
+ name = "ucd-trie"
1657
+ version = "0.1.7"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1660
+
1661
+ [[package]]
1662
+ name = "unescape"
1663
+ version = "0.1.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e"
1666
+
1667
+ [[package]]
1668
+ name = "unicode-ident"
1669
+ version = "1.0.18"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1672
+
1673
+ [[package]]
1674
+ name = "unicode-segmentation"
1675
+ version = "1.12.0"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1678
+
1679
+ [[package]]
1680
+ name = "unicode-width"
1681
+ version = "0.2.1"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
1684
+
1685
+ [[package]]
1686
+ name = "url"
1687
+ version = "2.5.4"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1690
+ dependencies = [
1691
+ "form_urlencoded",
1692
+ "idna",
1693
+ "percent-encoding",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "utf8_iter"
1698
+ version = "1.0.4"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1701
+
1702
+ [[package]]
1703
+ name = "uuid"
1704
+ version = "1.17.0"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
1707
+ dependencies = [
1708
+ "getrandom",
1709
+ "js-sys",
1710
+ "wasm-bindgen",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "vcpkg"
1715
+ version = "0.2.15"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1718
+
1719
+ [[package]]
1720
+ name = "version_check"
1721
+ version = "0.9.5"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1724
+
1725
+ [[package]]
1726
+ name = "walkdir"
1727
+ version = "2.5.0"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1730
+ dependencies = [
1731
+ "same-file",
1732
+ "winapi-util",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "wasi"
1737
+ version = "0.14.2+wasi-0.2.4"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1740
+ dependencies = [
1741
+ "wit-bindgen-rt",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "wasm-bindgen"
1746
+ version = "0.2.100"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1749
+ dependencies = [
1750
+ "cfg-if",
1751
+ "once_cell",
1752
+ "rustversion",
1753
+ "wasm-bindgen-macro",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "wasm-bindgen-backend"
1758
+ version = "0.2.100"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1761
+ dependencies = [
1762
+ "bumpalo",
1763
+ "log",
1764
+ "proc-macro2",
1765
+ "quote",
1766
+ "syn",
1767
+ "wasm-bindgen-shared",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "wasm-bindgen-macro"
1772
+ version = "0.2.100"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1775
+ dependencies = [
1776
+ "quote",
1777
+ "wasm-bindgen-macro-support",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "wasm-bindgen-macro-support"
1782
+ version = "0.2.100"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1785
+ dependencies = [
1786
+ "proc-macro2",
1787
+ "quote",
1788
+ "syn",
1789
+ "wasm-bindgen-backend",
1790
+ "wasm-bindgen-shared",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "wasm-bindgen-shared"
1795
+ version = "0.2.100"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1798
+ dependencies = [
1799
+ "unicode-ident",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "winapi"
1804
+ version = "0.3.9"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1807
+ dependencies = [
1808
+ "winapi-i686-pc-windows-gnu",
1809
+ "winapi-x86_64-pc-windows-gnu",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "winapi-i686-pc-windows-gnu"
1814
+ version = "0.4.0"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1817
+
1818
+ [[package]]
1819
+ name = "winapi-util"
1820
+ version = "0.1.9"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1823
+ dependencies = [
1824
+ "windows-sys 0.59.0",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "winapi-x86_64-pc-windows-gnu"
1829
+ version = "0.4.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1832
+
1833
+ [[package]]
1834
+ name = "windows-link"
1835
+ version = "0.1.3"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1838
+
1839
+ [[package]]
1840
+ name = "windows-sys"
1841
+ version = "0.59.0"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1844
+ dependencies = [
1845
+ "windows-targets 0.52.6",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "windows-sys"
1850
+ version = "0.60.2"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1853
+ dependencies = [
1854
+ "windows-targets 0.53.3",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "windows-targets"
1859
+ version = "0.52.6"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1862
+ dependencies = [
1863
+ "windows_aarch64_gnullvm 0.52.6",
1864
+ "windows_aarch64_msvc 0.52.6",
1865
+ "windows_i686_gnu 0.52.6",
1866
+ "windows_i686_gnullvm 0.52.6",
1867
+ "windows_i686_msvc 0.52.6",
1868
+ "windows_x86_64_gnu 0.52.6",
1869
+ "windows_x86_64_gnullvm 0.52.6",
1870
+ "windows_x86_64_msvc 0.52.6",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "windows-targets"
1875
+ version = "0.53.3"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
1878
+ dependencies = [
1879
+ "windows-link",
1880
+ "windows_aarch64_gnullvm 0.53.0",
1881
+ "windows_aarch64_msvc 0.53.0",
1882
+ "windows_i686_gnu 0.53.0",
1883
+ "windows_i686_gnullvm 0.53.0",
1884
+ "windows_i686_msvc 0.53.0",
1885
+ "windows_x86_64_gnu 0.53.0",
1886
+ "windows_x86_64_gnullvm 0.53.0",
1887
+ "windows_x86_64_msvc 0.53.0",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "windows_aarch64_gnullvm"
1892
+ version = "0.52.6"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1895
+
1896
+ [[package]]
1897
+ name = "windows_aarch64_gnullvm"
1898
+ version = "0.53.0"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
1901
+
1902
+ [[package]]
1903
+ name = "windows_aarch64_msvc"
1904
+ version = "0.52.6"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1907
+
1908
+ [[package]]
1909
+ name = "windows_aarch64_msvc"
1910
+ version = "0.53.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
1913
+
1914
+ [[package]]
1915
+ name = "windows_i686_gnu"
1916
+ version = "0.52.6"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1919
+
1920
+ [[package]]
1921
+ name = "windows_i686_gnu"
1922
+ version = "0.53.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
1925
+
1926
+ [[package]]
1927
+ name = "windows_i686_gnullvm"
1928
+ version = "0.52.6"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1931
+
1932
+ [[package]]
1933
+ name = "windows_i686_gnullvm"
1934
+ version = "0.53.0"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1937
+
1938
+ [[package]]
1939
+ name = "windows_i686_msvc"
1940
+ version = "0.52.6"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1943
+
1944
+ [[package]]
1945
+ name = "windows_i686_msvc"
1946
+ version = "0.53.0"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
1949
+
1950
+ [[package]]
1951
+ name = "windows_x86_64_gnu"
1952
+ version = "0.52.6"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1955
+
1956
+ [[package]]
1957
+ name = "windows_x86_64_gnu"
1958
+ version = "0.53.0"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
1961
+
1962
+ [[package]]
1963
+ name = "windows_x86_64_gnullvm"
1964
+ version = "0.52.6"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1967
+
1968
+ [[package]]
1969
+ name = "windows_x86_64_gnullvm"
1970
+ version = "0.53.0"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
1973
+
1974
+ [[package]]
1975
+ name = "windows_x86_64_msvc"
1976
+ version = "0.52.6"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1979
+
1980
+ [[package]]
1981
+ name = "windows_x86_64_msvc"
1982
+ version = "0.53.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
1985
+
1986
+ [[package]]
1987
+ name = "winnow"
1988
+ version = "0.7.12"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
1991
+ dependencies = [
1992
+ "memchr",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "wit-bindgen-rt"
1997
+ version = "0.39.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2000
+ dependencies = [
2001
+ "bitflags",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "writeable"
2006
+ version = "0.6.1"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2009
+
2010
+ [[package]]
2011
+ name = "wyz"
2012
+ version = "0.5.1"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2015
+ dependencies = [
2016
+ "tap",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "yoke"
2021
+ version = "0.8.0"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2024
+ dependencies = [
2025
+ "serde",
2026
+ "stable_deref_trait",
2027
+ "yoke-derive",
2028
+ "zerofrom",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "yoke-derive"
2033
+ version = "0.8.0"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2036
+ dependencies = [
2037
+ "proc-macro2",
2038
+ "quote",
2039
+ "syn",
2040
+ "synstructure",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "zerocopy"
2045
+ version = "0.8.26"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
2048
+ dependencies = [
2049
+ "zerocopy-derive",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "zerocopy-derive"
2054
+ version = "0.8.26"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2057
+ dependencies = [
2058
+ "proc-macro2",
2059
+ "quote",
2060
+ "syn",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "zerofrom"
2065
+ version = "0.1.6"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2068
+ dependencies = [
2069
+ "zerofrom-derive",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "zerofrom-derive"
2074
+ version = "0.1.6"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2077
+ dependencies = [
2078
+ "proc-macro2",
2079
+ "quote",
2080
+ "syn",
2081
+ "synstructure",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "zerotrie"
2086
+ version = "0.2.2"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2089
+ dependencies = [
2090
+ "displaydoc",
2091
+ "yoke",
2092
+ "zerofrom",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "zerovec"
2097
+ version = "0.11.2"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
2100
+ dependencies = [
2101
+ "yoke",
2102
+ "zerofrom",
2103
+ "zerovec-derive",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "zerovec-derive"
2108
+ version = "0.11.1"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2111
+ dependencies = [
2112
+ "proc-macro2",
2113
+ "quote",
2114
+ "syn",
2115
+ ]