gqlite 1.2.3 → 1.3.0

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