gqlite 1.1.0 → 1.2.2

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 (91) hide show
  1. checksums.yaml +4 -4
  2. data/ext/gqliterb/.cargo/config.toml +2 -0
  3. data/ext/gqliterb/Cargo.lock +1109 -0
  4. data/ext/gqliterb/Cargo.toml +43 -0
  5. data/ext/gqliterb/extconf.rb +4 -0
  6. data/ext/gqliterb/src/lib.rs +260 -0
  7. data/ext/gqliterb/vendor/gqlitedb/Cargo.lock +2060 -0
  8. data/ext/gqliterb/vendor/gqlitedb/Cargo.toml +132 -0
  9. data/ext/gqliterb/vendor/gqlitedb/askama.toml +3 -0
  10. data/ext/gqliterb/vendor/gqlitedb/benches/common/mod.rs +25 -0
  11. data/ext/gqliterb/vendor/gqlitedb/benches/common/pokec.rs +185 -0
  12. data/ext/gqliterb/vendor/gqlitedb/benches/pokec_divan.rs +137 -0
  13. data/ext/gqliterb/vendor/gqlitedb/benches/pokec_iai.rs +122 -0
  14. data/ext/gqliterb/vendor/gqlitedb/release.toml +7 -0
  15. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/arithmetic.rs +96 -0
  16. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/containers.rs +33 -0
  17. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/count.rs +35 -0
  18. data/ext/gqliterb/vendor/gqlitedb/src/aggregators/stats.rs +168 -0
  19. data/ext/gqliterb/vendor/gqlitedb/src/aggregators.rs +74 -0
  20. data/ext/gqliterb/vendor/gqlitedb/src/capi.rs +236 -0
  21. data/ext/gqliterb/vendor/gqlitedb/src/compiler/expression_analyser.rs +427 -0
  22. data/ext/gqliterb/vendor/gqlitedb/src/compiler/variables_manager.rs +620 -0
  23. data/ext/gqliterb/vendor/gqlitedb/src/compiler.rs +1106 -0
  24. data/ext/gqliterb/vendor/gqlitedb/src/connection.rs +208 -0
  25. data/ext/gqliterb/vendor/gqlitedb/src/consts.rs +10 -0
  26. data/ext/gqliterb/vendor/gqlitedb/src/error.rs +621 -0
  27. data/ext/gqliterb/vendor/gqlitedb/src/functions/containers.rs +115 -0
  28. data/ext/gqliterb/vendor/gqlitedb/src/functions/edge.rs +20 -0
  29. data/ext/gqliterb/vendor/gqlitedb/src/functions/math.rs +44 -0
  30. data/ext/gqliterb/vendor/gqlitedb/src/functions/node.rs +16 -0
  31. data/ext/gqliterb/vendor/gqlitedb/src/functions/path.rs +48 -0
  32. data/ext/gqliterb/vendor/gqlitedb/src/functions/scalar.rs +86 -0
  33. data/ext/gqliterb/vendor/gqlitedb/src/functions/string.rs +28 -0
  34. data/ext/gqliterb/vendor/gqlitedb/src/functions/value.rs +99 -0
  35. data/ext/gqliterb/vendor/gqlitedb/src/functions.rs +412 -0
  36. data/ext/gqliterb/vendor/gqlitedb/src/graph.rs +268 -0
  37. data/ext/gqliterb/vendor/gqlitedb/src/interpreter/evaluators.rs +1788 -0
  38. data/ext/gqliterb/vendor/gqlitedb/src/interpreter/instructions.rs +262 -0
  39. data/ext/gqliterb/vendor/gqlitedb/src/interpreter/mod.rs +4 -0
  40. data/ext/gqliterb/vendor/gqlitedb/src/lib.rs +42 -0
  41. data/ext/gqliterb/vendor/gqlitedb/src/parser/ast.rs +625 -0
  42. data/ext/gqliterb/vendor/gqlitedb/src/parser/gql.pest +191 -0
  43. data/ext/gqliterb/vendor/gqlitedb/src/parser/parser.rs +1153 -0
  44. data/ext/gqliterb/vendor/gqlitedb/src/parser.rs +4 -0
  45. data/ext/gqliterb/vendor/gqlitedb/src/prelude.rs +8 -0
  46. data/ext/gqliterb/vendor/gqlitedb/src/serialize_with.rs +94 -0
  47. data/ext/gqliterb/vendor/gqlitedb/src/store/pgql.rs +121 -0
  48. data/ext/gqliterb/vendor/gqlitedb/src/store/redb.rs +1250 -0
  49. data/ext/gqliterb/vendor/gqlitedb/src/store/sqlite.rs +994 -0
  50. data/ext/gqliterb/vendor/gqlitedb/src/store.rs +432 -0
  51. data/ext/gqliterb/vendor/gqlitedb/src/tests/compiler.rs +92 -0
  52. data/ext/gqliterb/vendor/gqlitedb/src/tests/evaluators.rs +227 -0
  53. data/ext/gqliterb/vendor/gqlitedb/src/tests/parser.rs +81 -0
  54. data/ext/gqliterb/vendor/gqlitedb/src/tests/store/redb.rs +39 -0
  55. data/ext/gqliterb/vendor/gqlitedb/src/tests/store/sqlite.rs +39 -0
  56. data/ext/gqliterb/vendor/gqlitedb/src/tests/store.rs +462 -0
  57. data/ext/gqliterb/vendor/gqlitedb/src/tests/templates/ast.rs +356 -0
  58. data/ext/gqliterb/vendor/gqlitedb/src/tests/templates/programs.rs +455 -0
  59. data/ext/gqliterb/vendor/gqlitedb/src/tests/templates.rs +2 -0
  60. data/ext/gqliterb/vendor/gqlitedb/src/tests.rs +39 -0
  61. data/ext/gqliterb/vendor/gqlitedb/src/utils.rs +28 -0
  62. data/ext/gqliterb/vendor/gqlitedb/src/value/compare.rs +212 -0
  63. data/ext/gqliterb/vendor/gqlitedb/src/value/contains.rs +47 -0
  64. data/ext/gqliterb/vendor/gqlitedb/src/value/value_map.rs +298 -0
  65. data/ext/gqliterb/vendor/gqlitedb/src/value.rs +559 -0
  66. data/ext/gqliterb/vendor/gqlitedb/src/value_table.rs +616 -0
  67. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/call_stats.sql +22 -0
  68. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_count_for_node.sql +3 -0
  69. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_create.sql +6 -0
  70. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_delete.sql +1 -0
  71. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_delete_by_nodes.sql +2 -0
  72. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_select.sql +139 -0
  73. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/edge_update.sql +4 -0
  74. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/graph_create.sql +16 -0
  75. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/graph_delete.sql +3 -0
  76. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/metadata_create_table.sql +1 -0
  77. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/metadata_get.sql +1 -0
  78. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/metadata_set.sql +1 -0
  79. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_create.sql +1 -0
  80. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_delete.sql +1 -0
  81. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_select.sql +42 -0
  82. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/node_update.sql +4 -0
  83. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/table_exists.sql +5 -0
  84. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/upgrade_from_1_01.sql +2 -0
  85. data/ext/gqliterb/vendor/gqlitedb/templates/sql/sqlite/upgrade_graph_from_1_01.sql +65 -0
  86. data/lib/gqlite.rb +1 -75
  87. metadata +118 -25
  88. data/ext/gqlite/extconf.rb +0 -21
  89. data/ext/gqlite/gqlite-amalgamate.cpp +0 -9599
  90. data/ext/gqlite/gqlite-c.h +0 -95
  91. data/ext/gqlite/gqlite.h +0 -141
@@ -0,0 +1,2060 @@
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.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257"
192
+ dependencies = [
193
+ "serde",
194
+ "toml",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "cc"
199
+ version = "1.2.29"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
202
+ dependencies = [
203
+ "shlex",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "ccutils"
208
+ version = "0.3.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "de41bba6534d5bcef782943f9c9d27fe69e00fa0530a4426d7aec02300cf454b"
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.41"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
286
+ dependencies = [
287
+ "clap_builder",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "clap_builder"
292
+ version = "4.5.41"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
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.2"
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.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "6c358f67cf086a3a890a72c390dadc371e9151129b1e9b75acc705d30a77197f"
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.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "6248b44a281f0c22ba57fe41b56f718a8c2cc682a99f270f667503819d758004"
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.2",
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",
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.1"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
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.0"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "cef6a6d3a65ea334d6cdfb31fa2525c20184b7aa7bd1ad1e2e37502610d4609f"
1257
+ dependencies = [
1258
+ "libc",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "redox_syscall"
1263
+ version = "0.5.13"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
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.140"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
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 = "sha2"
1440
+ version = "0.10.9"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1443
+ dependencies = [
1444
+ "cfg-if",
1445
+ "cpufeatures",
1446
+ "digest",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "shlex"
1451
+ version = "1.3.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1454
+
1455
+ [[package]]
1456
+ name = "smallvec"
1457
+ version = "1.15.1"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1460
+
1461
+ [[package]]
1462
+ name = "sptr"
1463
+ version = "0.3.2"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
1466
+
1467
+ [[package]]
1468
+ name = "stable_deref_trait"
1469
+ version = "1.2.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1472
+
1473
+ [[package]]
1474
+ name = "supports-color"
1475
+ version = "2.1.0"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
1478
+ dependencies = [
1479
+ "is-terminal",
1480
+ "is_ci",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "supports-color"
1485
+ version = "3.0.2"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
1488
+ dependencies = [
1489
+ "is_ci",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "syn"
1494
+ version = "2.0.104"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1497
+ dependencies = [
1498
+ "proc-macro2",
1499
+ "quote",
1500
+ "unicode-ident",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "synstructure"
1505
+ version = "0.13.2"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1508
+ dependencies = [
1509
+ "proc-macro2",
1510
+ "quote",
1511
+ "syn",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "tap"
1516
+ version = "1.0.1"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1519
+
1520
+ [[package]]
1521
+ name = "terminal_size"
1522
+ version = "0.4.2"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
1525
+ dependencies = [
1526
+ "rustix",
1527
+ "windows-sys 0.59.0",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "thiserror"
1532
+ version = "2.0.12"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
1535
+ dependencies = [
1536
+ "thiserror-impl",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "thiserror-impl"
1541
+ version = "2.0.12"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
1544
+ dependencies = [
1545
+ "proc-macro2",
1546
+ "quote",
1547
+ "syn",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "tinystr"
1552
+ version = "0.8.1"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1555
+ dependencies = [
1556
+ "displaydoc",
1557
+ "zerovec",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "toml"
1562
+ version = "0.8.23"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1565
+ dependencies = [
1566
+ "serde",
1567
+ "serde_spanned",
1568
+ "toml_datetime",
1569
+ "toml_edit",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "toml_datetime"
1574
+ version = "0.6.11"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1577
+ dependencies = [
1578
+ "serde",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "toml_edit"
1583
+ version = "0.22.27"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1586
+ dependencies = [
1587
+ "indexmap",
1588
+ "serde",
1589
+ "serde_spanned",
1590
+ "toml_datetime",
1591
+ "toml_write",
1592
+ "winnow",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "toml_write"
1597
+ version = "0.1.2"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1600
+
1601
+ [[package]]
1602
+ name = "typenum"
1603
+ version = "1.18.0"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1606
+
1607
+ [[package]]
1608
+ name = "ucd-trie"
1609
+ version = "0.1.7"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1612
+
1613
+ [[package]]
1614
+ name = "unescape"
1615
+ version = "0.1.0"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e"
1618
+
1619
+ [[package]]
1620
+ name = "unicode-ident"
1621
+ version = "1.0.18"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1624
+
1625
+ [[package]]
1626
+ name = "unicode-segmentation"
1627
+ version = "1.12.0"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1630
+
1631
+ [[package]]
1632
+ name = "unicode-width"
1633
+ version = "0.2.1"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
1636
+
1637
+ [[package]]
1638
+ name = "url"
1639
+ version = "2.5.4"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1642
+ dependencies = [
1643
+ "form_urlencoded",
1644
+ "idna",
1645
+ "percent-encoding",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "utf8_iter"
1650
+ version = "1.0.4"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1653
+
1654
+ [[package]]
1655
+ name = "uuid"
1656
+ version = "1.17.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
1659
+ dependencies = [
1660
+ "getrandom",
1661
+ "js-sys",
1662
+ "wasm-bindgen",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "vcpkg"
1667
+ version = "0.2.15"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1670
+
1671
+ [[package]]
1672
+ name = "version_check"
1673
+ version = "0.9.5"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1676
+
1677
+ [[package]]
1678
+ name = "walkdir"
1679
+ version = "2.5.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1682
+ dependencies = [
1683
+ "same-file",
1684
+ "winapi-util",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "wasi"
1689
+ version = "0.14.2+wasi-0.2.4"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1692
+ dependencies = [
1693
+ "wit-bindgen-rt",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "wasm-bindgen"
1698
+ version = "0.2.100"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1701
+ dependencies = [
1702
+ "cfg-if",
1703
+ "once_cell",
1704
+ "rustversion",
1705
+ "wasm-bindgen-macro",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "wasm-bindgen-backend"
1710
+ version = "0.2.100"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1713
+ dependencies = [
1714
+ "bumpalo",
1715
+ "log",
1716
+ "proc-macro2",
1717
+ "quote",
1718
+ "syn",
1719
+ "wasm-bindgen-shared",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "wasm-bindgen-macro"
1724
+ version = "0.2.100"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1727
+ dependencies = [
1728
+ "quote",
1729
+ "wasm-bindgen-macro-support",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "wasm-bindgen-macro-support"
1734
+ version = "0.2.100"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1737
+ dependencies = [
1738
+ "proc-macro2",
1739
+ "quote",
1740
+ "syn",
1741
+ "wasm-bindgen-backend",
1742
+ "wasm-bindgen-shared",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "wasm-bindgen-shared"
1747
+ version = "0.2.100"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1750
+ dependencies = [
1751
+ "unicode-ident",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "winapi"
1756
+ version = "0.3.9"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1759
+ dependencies = [
1760
+ "winapi-i686-pc-windows-gnu",
1761
+ "winapi-x86_64-pc-windows-gnu",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "winapi-i686-pc-windows-gnu"
1766
+ version = "0.4.0"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1769
+
1770
+ [[package]]
1771
+ name = "winapi-util"
1772
+ version = "0.1.9"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1775
+ dependencies = [
1776
+ "windows-sys 0.59.0",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "winapi-x86_64-pc-windows-gnu"
1781
+ version = "0.4.0"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1784
+
1785
+ [[package]]
1786
+ name = "windows-sys"
1787
+ version = "0.59.0"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1790
+ dependencies = [
1791
+ "windows-targets 0.52.6",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "windows-sys"
1796
+ version = "0.60.2"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1799
+ dependencies = [
1800
+ "windows-targets 0.53.2",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "windows-targets"
1805
+ version = "0.52.6"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1808
+ dependencies = [
1809
+ "windows_aarch64_gnullvm 0.52.6",
1810
+ "windows_aarch64_msvc 0.52.6",
1811
+ "windows_i686_gnu 0.52.6",
1812
+ "windows_i686_gnullvm 0.52.6",
1813
+ "windows_i686_msvc 0.52.6",
1814
+ "windows_x86_64_gnu 0.52.6",
1815
+ "windows_x86_64_gnullvm 0.52.6",
1816
+ "windows_x86_64_msvc 0.52.6",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "windows-targets"
1821
+ version = "0.53.2"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
1824
+ dependencies = [
1825
+ "windows_aarch64_gnullvm 0.53.0",
1826
+ "windows_aarch64_msvc 0.53.0",
1827
+ "windows_i686_gnu 0.53.0",
1828
+ "windows_i686_gnullvm 0.53.0",
1829
+ "windows_i686_msvc 0.53.0",
1830
+ "windows_x86_64_gnu 0.53.0",
1831
+ "windows_x86_64_gnullvm 0.53.0",
1832
+ "windows_x86_64_msvc 0.53.0",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "windows_aarch64_gnullvm"
1837
+ version = "0.52.6"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1840
+
1841
+ [[package]]
1842
+ name = "windows_aarch64_gnullvm"
1843
+ version = "0.53.0"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
1846
+
1847
+ [[package]]
1848
+ name = "windows_aarch64_msvc"
1849
+ version = "0.52.6"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1852
+
1853
+ [[package]]
1854
+ name = "windows_aarch64_msvc"
1855
+ version = "0.53.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
1858
+
1859
+ [[package]]
1860
+ name = "windows_i686_gnu"
1861
+ version = "0.52.6"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1864
+
1865
+ [[package]]
1866
+ name = "windows_i686_gnu"
1867
+ version = "0.53.0"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
1870
+
1871
+ [[package]]
1872
+ name = "windows_i686_gnullvm"
1873
+ version = "0.52.6"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1876
+
1877
+ [[package]]
1878
+ name = "windows_i686_gnullvm"
1879
+ version = "0.53.0"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1882
+
1883
+ [[package]]
1884
+ name = "windows_i686_msvc"
1885
+ version = "0.52.6"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1888
+
1889
+ [[package]]
1890
+ name = "windows_i686_msvc"
1891
+ version = "0.53.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
1894
+
1895
+ [[package]]
1896
+ name = "windows_x86_64_gnu"
1897
+ version = "0.52.6"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1900
+
1901
+ [[package]]
1902
+ name = "windows_x86_64_gnu"
1903
+ version = "0.53.0"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
1906
+
1907
+ [[package]]
1908
+ name = "windows_x86_64_gnullvm"
1909
+ version = "0.52.6"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1912
+
1913
+ [[package]]
1914
+ name = "windows_x86_64_gnullvm"
1915
+ version = "0.53.0"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
1918
+
1919
+ [[package]]
1920
+ name = "windows_x86_64_msvc"
1921
+ version = "0.52.6"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1924
+
1925
+ [[package]]
1926
+ name = "windows_x86_64_msvc"
1927
+ version = "0.53.0"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
1930
+
1931
+ [[package]]
1932
+ name = "winnow"
1933
+ version = "0.7.12"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
1936
+ dependencies = [
1937
+ "memchr",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "wit-bindgen-rt"
1942
+ version = "0.39.0"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1945
+ dependencies = [
1946
+ "bitflags",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "writeable"
1951
+ version = "0.6.1"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
1954
+
1955
+ [[package]]
1956
+ name = "wyz"
1957
+ version = "0.5.1"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1960
+ dependencies = [
1961
+ "tap",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "yoke"
1966
+ version = "0.8.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
1969
+ dependencies = [
1970
+ "serde",
1971
+ "stable_deref_trait",
1972
+ "yoke-derive",
1973
+ "zerofrom",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "yoke-derive"
1978
+ version = "0.8.0"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
1981
+ dependencies = [
1982
+ "proc-macro2",
1983
+ "quote",
1984
+ "syn",
1985
+ "synstructure",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "zerocopy"
1990
+ version = "0.8.26"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
1993
+ dependencies = [
1994
+ "zerocopy-derive",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "zerocopy-derive"
1999
+ version = "0.8.26"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2002
+ dependencies = [
2003
+ "proc-macro2",
2004
+ "quote",
2005
+ "syn",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "zerofrom"
2010
+ version = "0.1.6"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2013
+ dependencies = [
2014
+ "zerofrom-derive",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "zerofrom-derive"
2019
+ version = "0.1.6"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2022
+ dependencies = [
2023
+ "proc-macro2",
2024
+ "quote",
2025
+ "syn",
2026
+ "synstructure",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "zerotrie"
2031
+ version = "0.2.2"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2034
+ dependencies = [
2035
+ "displaydoc",
2036
+ "yoke",
2037
+ "zerofrom",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "zerovec"
2042
+ version = "0.11.2"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
2045
+ dependencies = [
2046
+ "yoke",
2047
+ "zerofrom",
2048
+ "zerovec-derive",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "zerovec-derive"
2053
+ version = "0.11.1"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2056
+ dependencies = [
2057
+ "proc-macro2",
2058
+ "quote",
2059
+ "syn",
2060
+ ]