reconcile-framework 0.1.0__tar.gz

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 (59) hide show
  1. reconcile_framework-0.1.0/Cargo.lock +2033 -0
  2. reconcile_framework-0.1.0/Cargo.toml +3 -0
  3. reconcile_framework-0.1.0/PKG-INFO +174 -0
  4. reconcile_framework-0.1.0/README.md +153 -0
  5. reconcile_framework-0.1.0/pyproject.toml +33 -0
  6. reconcile_framework-0.1.0/python/reconcile/__init__.py +35 -0
  7. reconcile_framework-0.1.0/python/reconcile/api/__init__.py +6 -0
  8. reconcile_framework-0.1.0/python/reconcile/api/app.py +199 -0
  9. reconcile_framework-0.1.0/python/reconcile/api/platform_app.py +129 -0
  10. reconcile_framework-0.1.0/python/reconcile/controller.py +29 -0
  11. reconcile_framework-0.1.0/python/reconcile/dsl.py +251 -0
  12. reconcile_framework-0.1.0/python/reconcile/examples/__init__.py +13 -0
  13. reconcile_framework-0.1.0/python/reconcile/examples/building_permit_system.py +651 -0
  14. reconcile_framework-0.1.0/python/reconcile/examples/clinical_trials_system.py +79 -0
  15. reconcile_framework-0.1.0/python/reconcile/examples/loan_operating_system.py +309 -0
  16. reconcile_framework-0.1.0/python/reconcile/examples/procurement_system.py +82 -0
  17. reconcile_framework-0.1.0/python/reconcile/llm.py +303 -0
  18. reconcile_framework-0.1.0/python/reconcile/platform.py +114 -0
  19. reconcile_framework-0.1.0/python/reconcile/subscriptions.py +102 -0
  20. reconcile_framework-0.1.0/python/reconcile/testing.py +43 -0
  21. reconcile_framework-0.1.0/rust/reconcile-core/Cargo.toml +11 -0
  22. reconcile_framework-0.1.0/rust/reconcile-core/src/agent.rs +263 -0
  23. reconcile_framework-0.1.0/rust/reconcile-core/src/audit_log.rs +97 -0
  24. reconcile_framework-0.1.0/rust/reconcile-core/src/circuit_breaker.rs +152 -0
  25. reconcile_framework-0.1.0/rust/reconcile-core/src/controller_scheduler.rs +167 -0
  26. reconcile_framework-0.1.0/rust/reconcile-core/src/decision.rs +282 -0
  27. reconcile_framework-0.1.0/rust/reconcile-core/src/errors.rs +71 -0
  28. reconcile_framework-0.1.0/rust/reconcile-core/src/event_log.rs +196 -0
  29. reconcile_framework-0.1.0/rust/reconcile-core/src/instance_graph.rs +421 -0
  30. reconcile_framework-0.1.0/rust/reconcile-core/src/invariant_checker.rs +308 -0
  31. reconcile_framework-0.1.0/rust/reconcile-core/src/lib.rs +26 -0
  32. reconcile_framework-0.1.0/rust/reconcile-core/src/policy_engine.rs +356 -0
  33. reconcile_framework-0.1.0/rust/reconcile-core/src/projection.rs +557 -0
  34. reconcile_framework-0.1.0/rust/reconcile-core/src/resource_registry.rs +96 -0
  35. reconcile_framework-0.1.0/rust/reconcile-core/src/roles.rs +239 -0
  36. reconcile_framework-0.1.0/rust/reconcile-core/src/saga.rs +80 -0
  37. reconcile_framework-0.1.0/rust/reconcile-core/src/schema_graph.rs +344 -0
  38. reconcile_framework-0.1.0/rust/reconcile-core/src/snapshot_store.rs +83 -0
  39. reconcile_framework-0.1.0/rust/reconcile-core/src/state_machine.rs +447 -0
  40. reconcile_framework-0.1.0/rust/reconcile-core/src/state_store.rs +156 -0
  41. reconcile_framework-0.1.0/rust/reconcile-core/src/storage.rs +76 -0
  42. reconcile_framework-0.1.0/rust/reconcile-core/src/temporal_graph.rs +273 -0
  43. reconcile_framework-0.1.0/rust/reconcile-core/src/tests.rs +1464 -0
  44. reconcile_framework-0.1.0/rust/reconcile-core/src/transaction.rs +1382 -0
  45. reconcile_framework-0.1.0/rust/reconcile-core/src/types.rs +285 -0
  46. reconcile_framework-0.1.0/rust/reconcile-core/src/workflow.rs +154 -0
  47. reconcile_framework-0.1.0/rust/reconcile-postgres/Cargo.toml +13 -0
  48. reconcile_framework-0.1.0/rust/reconcile-postgres/migrations/V1__init.sql +53 -0
  49. reconcile_framework-0.1.0/rust/reconcile-postgres/src/audit_log.rs +125 -0
  50. reconcile_framework-0.1.0/rust/reconcile-postgres/src/backend.rs +308 -0
  51. reconcile_framework-0.1.0/rust/reconcile-postgres/src/event_log.rs +103 -0
  52. reconcile_framework-0.1.0/rust/reconcile-postgres/src/lib.rs +38 -0
  53. reconcile_framework-0.1.0/rust/reconcile-postgres/src/snapshot_store.rs +63 -0
  54. reconcile_framework-0.1.0/rust/reconcile-postgres/src/state_store.rs +117 -0
  55. reconcile_framework-0.1.0/rust/reconcile-postgres/src/tests.rs +439 -0
  56. reconcile_framework-0.1.0/rust/reconcile-py/Cargo.toml +16 -0
  57. reconcile_framework-0.1.0/rust/reconcile-py/src/lib.rs +23 -0
  58. reconcile_framework-0.1.0/rust/reconcile-py/src/py_system.rs +727 -0
  59. reconcile_framework-0.1.0/rust/reconcile-py/src/py_types.rs +623 -0
@@ -0,0 +1,2033 @@
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.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anyhow"
25
+ version = "1.0.102"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
28
+
29
+ [[package]]
30
+ name = "async-trait"
31
+ version = "0.1.89"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
34
+ dependencies = [
35
+ "proc-macro2",
36
+ "quote",
37
+ "syn",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "autocfg"
42
+ version = "1.5.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
45
+
46
+ [[package]]
47
+ name = "base64"
48
+ version = "0.22.1"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
51
+
52
+ [[package]]
53
+ name = "bitflags"
54
+ version = "2.11.0"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
57
+
58
+ [[package]]
59
+ name = "block-buffer"
60
+ version = "0.10.4"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
63
+ dependencies = [
64
+ "generic-array",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "bumpalo"
69
+ version = "3.20.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
72
+
73
+ [[package]]
74
+ name = "byteorder"
75
+ version = "1.5.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
78
+
79
+ [[package]]
80
+ name = "bytes"
81
+ version = "1.11.1"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
84
+
85
+ [[package]]
86
+ name = "cc"
87
+ version = "1.2.57"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
90
+ dependencies = [
91
+ "find-msvc-tools",
92
+ "shlex",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "cfg-if"
97
+ version = "1.0.4"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
100
+
101
+ [[package]]
102
+ name = "chrono"
103
+ version = "0.4.44"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
106
+ dependencies = [
107
+ "iana-time-zone",
108
+ "js-sys",
109
+ "num-traits",
110
+ "serde",
111
+ "wasm-bindgen",
112
+ "windows-link",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "core-foundation"
117
+ version = "0.10.1"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
120
+ dependencies = [
121
+ "core-foundation-sys",
122
+ "libc",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "core-foundation-sys"
127
+ version = "0.8.7"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
130
+
131
+ [[package]]
132
+ name = "cpufeatures"
133
+ version = "0.2.17"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
136
+ dependencies = [
137
+ "libc",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "crypto-common"
142
+ version = "0.1.7"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
145
+ dependencies = [
146
+ "generic-array",
147
+ "typenum",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "deranged"
152
+ version = "0.5.8"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
155
+ dependencies = [
156
+ "powerfmt",
157
+ "serde_core",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "digest"
162
+ version = "0.10.7"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
165
+ dependencies = [
166
+ "block-buffer",
167
+ "crypto-common",
168
+ "subtle",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "displaydoc"
173
+ version = "0.2.5"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
176
+ dependencies = [
177
+ "proc-macro2",
178
+ "quote",
179
+ "syn",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "equivalent"
184
+ version = "1.0.2"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
187
+
188
+ [[package]]
189
+ name = "errno"
190
+ version = "0.3.14"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
193
+ dependencies = [
194
+ "libc",
195
+ "windows-sys",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "fallible-iterator"
200
+ version = "0.2.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
203
+
204
+ [[package]]
205
+ name = "fastrand"
206
+ version = "2.3.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
209
+
210
+ [[package]]
211
+ name = "find-msvc-tools"
212
+ version = "0.1.9"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
215
+
216
+ [[package]]
217
+ name = "foldhash"
218
+ version = "0.1.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
221
+
222
+ [[package]]
223
+ name = "foreign-types"
224
+ version = "0.3.2"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
227
+ dependencies = [
228
+ "foreign-types-shared",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "foreign-types-shared"
233
+ version = "0.1.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
236
+
237
+ [[package]]
238
+ name = "form_urlencoded"
239
+ version = "1.2.2"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
242
+ dependencies = [
243
+ "percent-encoding",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "futures-channel"
248
+ version = "0.3.32"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
251
+ dependencies = [
252
+ "futures-core",
253
+ "futures-sink",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "futures-core"
258
+ version = "0.3.32"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
261
+
262
+ [[package]]
263
+ name = "futures-sink"
264
+ version = "0.3.32"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
267
+
268
+ [[package]]
269
+ name = "futures-task"
270
+ version = "0.3.32"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
273
+
274
+ [[package]]
275
+ name = "futures-util"
276
+ version = "0.3.32"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
279
+ dependencies = [
280
+ "futures-core",
281
+ "futures-sink",
282
+ "futures-task",
283
+ "pin-project-lite",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "generic-array"
288
+ version = "0.14.7"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
291
+ dependencies = [
292
+ "typenum",
293
+ "version_check",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "getrandom"
298
+ version = "0.3.4"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
301
+ dependencies = [
302
+ "cfg-if",
303
+ "libc",
304
+ "r-efi 5.3.0",
305
+ "wasip2",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "getrandom"
310
+ version = "0.4.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
313
+ dependencies = [
314
+ "cfg-if",
315
+ "libc",
316
+ "r-efi 6.0.0",
317
+ "wasip2",
318
+ "wasip3",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "hashbrown"
323
+ version = "0.15.5"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
326
+ dependencies = [
327
+ "foldhash",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "hashbrown"
332
+ version = "0.16.1"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
335
+
336
+ [[package]]
337
+ name = "heck"
338
+ version = "0.5.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
341
+
342
+ [[package]]
343
+ name = "hmac"
344
+ version = "0.12.1"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
347
+ dependencies = [
348
+ "digest",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "iana-time-zone"
353
+ version = "0.1.65"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
356
+ dependencies = [
357
+ "android_system_properties",
358
+ "core-foundation-sys",
359
+ "iana-time-zone-haiku",
360
+ "js-sys",
361
+ "log",
362
+ "wasm-bindgen",
363
+ "windows-core",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "iana-time-zone-haiku"
368
+ version = "0.1.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
371
+ dependencies = [
372
+ "cc",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "icu_collections"
377
+ version = "2.1.1"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
380
+ dependencies = [
381
+ "displaydoc",
382
+ "potential_utf",
383
+ "yoke",
384
+ "zerofrom",
385
+ "zerovec",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "icu_locale_core"
390
+ version = "2.1.1"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
393
+ dependencies = [
394
+ "displaydoc",
395
+ "litemap",
396
+ "tinystr",
397
+ "writeable",
398
+ "zerovec",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "icu_normalizer"
403
+ version = "2.1.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
406
+ dependencies = [
407
+ "icu_collections",
408
+ "icu_normalizer_data",
409
+ "icu_properties",
410
+ "icu_provider",
411
+ "smallvec",
412
+ "zerovec",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "icu_normalizer_data"
417
+ version = "2.1.1"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
420
+
421
+ [[package]]
422
+ name = "icu_properties"
423
+ version = "2.1.2"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
426
+ dependencies = [
427
+ "icu_collections",
428
+ "icu_locale_core",
429
+ "icu_properties_data",
430
+ "icu_provider",
431
+ "zerotrie",
432
+ "zerovec",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "icu_properties_data"
437
+ version = "2.1.2"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
440
+
441
+ [[package]]
442
+ name = "icu_provider"
443
+ version = "2.1.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
446
+ dependencies = [
447
+ "displaydoc",
448
+ "icu_locale_core",
449
+ "writeable",
450
+ "yoke",
451
+ "zerofrom",
452
+ "zerotrie",
453
+ "zerovec",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "id-arena"
458
+ version = "2.3.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
461
+
462
+ [[package]]
463
+ name = "idna"
464
+ version = "1.1.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
467
+ dependencies = [
468
+ "idna_adapter",
469
+ "smallvec",
470
+ "utf8_iter",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "idna_adapter"
475
+ version = "1.2.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
478
+ dependencies = [
479
+ "icu_normalizer",
480
+ "icu_properties",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "indexmap"
485
+ version = "2.13.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
488
+ dependencies = [
489
+ "equivalent",
490
+ "hashbrown 0.16.1",
491
+ "serde",
492
+ "serde_core",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "indoc"
497
+ version = "2.0.7"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
500
+ dependencies = [
501
+ "rustversion",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "itoa"
506
+ version = "1.0.18"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
509
+
510
+ [[package]]
511
+ name = "js-sys"
512
+ version = "0.3.91"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
515
+ dependencies = [
516
+ "once_cell",
517
+ "wasm-bindgen",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "leb128fmt"
522
+ version = "0.1.0"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
525
+
526
+ [[package]]
527
+ name = "libc"
528
+ version = "0.2.183"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
531
+
532
+ [[package]]
533
+ name = "libredox"
534
+ version = "0.1.15"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
537
+ dependencies = [
538
+ "libc",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "linux-raw-sys"
543
+ version = "0.12.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
546
+
547
+ [[package]]
548
+ name = "litemap"
549
+ version = "0.8.1"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
552
+
553
+ [[package]]
554
+ name = "lock_api"
555
+ version = "0.4.14"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
558
+ dependencies = [
559
+ "scopeguard",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "log"
564
+ version = "0.4.29"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
567
+
568
+ [[package]]
569
+ name = "md-5"
570
+ version = "0.10.6"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
573
+ dependencies = [
574
+ "cfg-if",
575
+ "digest",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "memchr"
580
+ version = "2.8.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
583
+
584
+ [[package]]
585
+ name = "memoffset"
586
+ version = "0.9.1"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
589
+ dependencies = [
590
+ "autocfg",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "mio"
595
+ version = "1.1.1"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
598
+ dependencies = [
599
+ "libc",
600
+ "wasi 0.11.1+wasi-snapshot-preview1",
601
+ "windows-sys",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "native-tls"
606
+ version = "0.2.18"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
609
+ dependencies = [
610
+ "libc",
611
+ "log",
612
+ "openssl",
613
+ "openssl-probe",
614
+ "openssl-sys",
615
+ "schannel",
616
+ "security-framework",
617
+ "security-framework-sys",
618
+ "tempfile",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "num-conv"
623
+ version = "0.2.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
626
+
627
+ [[package]]
628
+ name = "num-traits"
629
+ version = "0.2.19"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
632
+ dependencies = [
633
+ "autocfg",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "objc2-core-foundation"
638
+ version = "0.3.2"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
641
+ dependencies = [
642
+ "bitflags",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "objc2-system-configuration"
647
+ version = "0.3.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
650
+ dependencies = [
651
+ "objc2-core-foundation",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "once_cell"
656
+ version = "1.21.4"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
659
+
660
+ [[package]]
661
+ name = "openssl"
662
+ version = "0.10.76"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
665
+ dependencies = [
666
+ "bitflags",
667
+ "cfg-if",
668
+ "foreign-types",
669
+ "libc",
670
+ "once_cell",
671
+ "openssl-macros",
672
+ "openssl-sys",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "openssl-macros"
677
+ version = "0.1.1"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
680
+ dependencies = [
681
+ "proc-macro2",
682
+ "quote",
683
+ "syn",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "openssl-probe"
688
+ version = "0.2.1"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
691
+
692
+ [[package]]
693
+ name = "openssl-sys"
694
+ version = "0.9.112"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
697
+ dependencies = [
698
+ "cc",
699
+ "libc",
700
+ "pkg-config",
701
+ "vcpkg",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "parking_lot"
706
+ version = "0.12.5"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
709
+ dependencies = [
710
+ "lock_api",
711
+ "parking_lot_core",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "parking_lot_core"
716
+ version = "0.9.12"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
719
+ dependencies = [
720
+ "cfg-if",
721
+ "libc",
722
+ "redox_syscall",
723
+ "smallvec",
724
+ "windows-link",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "percent-encoding"
729
+ version = "2.3.2"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
732
+
733
+ [[package]]
734
+ name = "phf"
735
+ version = "0.13.1"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
738
+ dependencies = [
739
+ "phf_shared",
740
+ "serde",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "phf_shared"
745
+ version = "0.13.1"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
748
+ dependencies = [
749
+ "siphasher",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "pin-project-lite"
754
+ version = "0.2.17"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
757
+
758
+ [[package]]
759
+ name = "pkg-config"
760
+ version = "0.3.32"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
763
+
764
+ [[package]]
765
+ name = "portable-atomic"
766
+ version = "1.13.1"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
769
+
770
+ [[package]]
771
+ name = "postgres"
772
+ version = "0.19.12"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "e7c48ece1c6cda0db61b058c1721378da76855140e9214339fa1317decacb176"
775
+ dependencies = [
776
+ "bytes",
777
+ "fallible-iterator",
778
+ "futures-util",
779
+ "log",
780
+ "tokio",
781
+ "tokio-postgres",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "postgres-native-tls"
786
+ version = "0.5.2"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "ac73153d92e4bde922bd6f1dfba7f1ab8132266c031153b55e20a1521cd36d49"
789
+ dependencies = [
790
+ "native-tls",
791
+ "tokio",
792
+ "tokio-native-tls",
793
+ "tokio-postgres",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "postgres-protocol"
798
+ version = "0.6.10"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491"
801
+ dependencies = [
802
+ "base64",
803
+ "byteorder",
804
+ "bytes",
805
+ "fallible-iterator",
806
+ "hmac",
807
+ "md-5",
808
+ "memchr",
809
+ "rand",
810
+ "sha2",
811
+ "stringprep",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "postgres-types"
816
+ version = "0.2.12"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20"
819
+ dependencies = [
820
+ "bytes",
821
+ "chrono",
822
+ "fallible-iterator",
823
+ "postgres-protocol",
824
+ "serde_core",
825
+ "serde_json",
826
+ "uuid",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "potential_utf"
831
+ version = "0.1.4"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
834
+ dependencies = [
835
+ "zerovec",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "powerfmt"
840
+ version = "0.2.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
843
+
844
+ [[package]]
845
+ name = "ppv-lite86"
846
+ version = "0.2.21"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
849
+ dependencies = [
850
+ "zerocopy",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "prettyplease"
855
+ version = "0.2.37"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
858
+ dependencies = [
859
+ "proc-macro2",
860
+ "syn",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "proc-macro2"
865
+ version = "1.0.106"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
868
+ dependencies = [
869
+ "unicode-ident",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "pyo3"
874
+ version = "0.23.5"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
877
+ dependencies = [
878
+ "cfg-if",
879
+ "indoc",
880
+ "libc",
881
+ "memoffset",
882
+ "once_cell",
883
+ "portable-atomic",
884
+ "pyo3-build-config",
885
+ "pyo3-ffi",
886
+ "pyo3-macros",
887
+ "unindent",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "pyo3-build-config"
892
+ version = "0.23.5"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
895
+ dependencies = [
896
+ "once_cell",
897
+ "target-lexicon",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "pyo3-ffi"
902
+ version = "0.23.5"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
905
+ dependencies = [
906
+ "libc",
907
+ "pyo3-build-config",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "pyo3-macros"
912
+ version = "0.23.5"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
915
+ dependencies = [
916
+ "proc-macro2",
917
+ "pyo3-macros-backend",
918
+ "quote",
919
+ "syn",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "pyo3-macros-backend"
924
+ version = "0.23.5"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
927
+ dependencies = [
928
+ "heck",
929
+ "proc-macro2",
930
+ "pyo3-build-config",
931
+ "quote",
932
+ "syn",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "quote"
937
+ version = "1.0.45"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
940
+ dependencies = [
941
+ "proc-macro2",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "r-efi"
946
+ version = "5.3.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
949
+
950
+ [[package]]
951
+ name = "r-efi"
952
+ version = "6.0.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
955
+
956
+ [[package]]
957
+ name = "rand"
958
+ version = "0.9.2"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
961
+ dependencies = [
962
+ "rand_chacha",
963
+ "rand_core",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "rand_chacha"
968
+ version = "0.9.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
971
+ dependencies = [
972
+ "ppv-lite86",
973
+ "rand_core",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "rand_core"
978
+ version = "0.9.5"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
981
+ dependencies = [
982
+ "getrandom 0.3.4",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "reconcile-core"
987
+ version = "0.1.0"
988
+ dependencies = [
989
+ "chrono",
990
+ "serde",
991
+ "serde_json",
992
+ "thiserror",
993
+ "uuid",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "reconcile-postgres"
998
+ version = "0.1.0"
999
+ dependencies = [
1000
+ "chrono",
1001
+ "postgres",
1002
+ "reconcile-core",
1003
+ "refinery",
1004
+ "serde",
1005
+ "serde_json",
1006
+ "uuid",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "reconcile-py"
1011
+ version = "0.1.0"
1012
+ dependencies = [
1013
+ "chrono",
1014
+ "pyo3",
1015
+ "reconcile-core",
1016
+ "reconcile-postgres",
1017
+ "serde_json",
1018
+ "uuid",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "redox_syscall"
1023
+ version = "0.5.18"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1026
+ dependencies = [
1027
+ "bitflags",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "refinery"
1032
+ version = "0.9.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "52c427f2572afe5c6cbfa2b1bf40071c89bf1a8539e958ea582842f6f38dcfae"
1035
+ dependencies = [
1036
+ "refinery-core",
1037
+ "refinery-macros",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "refinery-core"
1042
+ version = "0.9.0"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "702655abfc67f93a6f735e9fa4ace7d2e580633f8961f28acbfd7583ddce936c"
1045
+ dependencies = [
1046
+ "async-trait",
1047
+ "cfg-if",
1048
+ "log",
1049
+ "native-tls",
1050
+ "postgres",
1051
+ "postgres-native-tls",
1052
+ "regex",
1053
+ "serde",
1054
+ "siphasher",
1055
+ "thiserror",
1056
+ "time",
1057
+ "toml",
1058
+ "url",
1059
+ "walkdir",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "refinery-macros"
1064
+ version = "0.9.0"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "5145756cdf293b5089dc6b4f103f1a1229cc55d67082c866f8c8289531c4b983"
1067
+ dependencies = [
1068
+ "proc-macro2",
1069
+ "quote",
1070
+ "refinery-core",
1071
+ "regex",
1072
+ "syn",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "regex"
1077
+ version = "1.12.3"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1080
+ dependencies = [
1081
+ "aho-corasick",
1082
+ "memchr",
1083
+ "regex-automata",
1084
+ "regex-syntax",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "regex-automata"
1089
+ version = "0.4.14"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1092
+ dependencies = [
1093
+ "aho-corasick",
1094
+ "memchr",
1095
+ "regex-syntax",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "regex-syntax"
1100
+ version = "0.8.10"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1103
+
1104
+ [[package]]
1105
+ name = "rustix"
1106
+ version = "1.1.4"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1109
+ dependencies = [
1110
+ "bitflags",
1111
+ "errno",
1112
+ "libc",
1113
+ "linux-raw-sys",
1114
+ "windows-sys",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "rustversion"
1119
+ version = "1.0.22"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1122
+
1123
+ [[package]]
1124
+ name = "same-file"
1125
+ version = "1.0.6"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1128
+ dependencies = [
1129
+ "winapi-util",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "schannel"
1134
+ version = "0.1.29"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1137
+ dependencies = [
1138
+ "windows-sys",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "scopeguard"
1143
+ version = "1.2.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1146
+
1147
+ [[package]]
1148
+ name = "security-framework"
1149
+ version = "3.7.0"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1152
+ dependencies = [
1153
+ "bitflags",
1154
+ "core-foundation",
1155
+ "core-foundation-sys",
1156
+ "libc",
1157
+ "security-framework-sys",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "security-framework-sys"
1162
+ version = "2.17.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1165
+ dependencies = [
1166
+ "core-foundation-sys",
1167
+ "libc",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "semver"
1172
+ version = "1.0.27"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1175
+
1176
+ [[package]]
1177
+ name = "serde"
1178
+ version = "1.0.228"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1181
+ dependencies = [
1182
+ "serde_core",
1183
+ "serde_derive",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "serde_core"
1188
+ version = "1.0.228"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1191
+ dependencies = [
1192
+ "serde_derive",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "serde_derive"
1197
+ version = "1.0.228"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1200
+ dependencies = [
1201
+ "proc-macro2",
1202
+ "quote",
1203
+ "syn",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "serde_json"
1208
+ version = "1.0.149"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1211
+ dependencies = [
1212
+ "itoa",
1213
+ "memchr",
1214
+ "serde",
1215
+ "serde_core",
1216
+ "zmij",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "serde_spanned"
1221
+ version = "0.6.9"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1224
+ dependencies = [
1225
+ "serde",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "sha2"
1230
+ version = "0.10.9"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1233
+ dependencies = [
1234
+ "cfg-if",
1235
+ "cpufeatures",
1236
+ "digest",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "shlex"
1241
+ version = "1.3.0"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1244
+
1245
+ [[package]]
1246
+ name = "siphasher"
1247
+ version = "1.0.2"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1250
+
1251
+ [[package]]
1252
+ name = "smallvec"
1253
+ version = "1.15.1"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1256
+
1257
+ [[package]]
1258
+ name = "socket2"
1259
+ version = "0.6.3"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1262
+ dependencies = [
1263
+ "libc",
1264
+ "windows-sys",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "stable_deref_trait"
1269
+ version = "1.2.1"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1272
+
1273
+ [[package]]
1274
+ name = "stringprep"
1275
+ version = "0.1.5"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1278
+ dependencies = [
1279
+ "unicode-bidi",
1280
+ "unicode-normalization",
1281
+ "unicode-properties",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "subtle"
1286
+ version = "2.6.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1289
+
1290
+ [[package]]
1291
+ name = "syn"
1292
+ version = "2.0.117"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1295
+ dependencies = [
1296
+ "proc-macro2",
1297
+ "quote",
1298
+ "unicode-ident",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "synstructure"
1303
+ version = "0.13.2"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1306
+ dependencies = [
1307
+ "proc-macro2",
1308
+ "quote",
1309
+ "syn",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "target-lexicon"
1314
+ version = "0.12.16"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1317
+
1318
+ [[package]]
1319
+ name = "tempfile"
1320
+ version = "3.27.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1323
+ dependencies = [
1324
+ "fastrand",
1325
+ "getrandom 0.4.2",
1326
+ "once_cell",
1327
+ "rustix",
1328
+ "windows-sys",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "thiserror"
1333
+ version = "2.0.18"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1336
+ dependencies = [
1337
+ "thiserror-impl",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "thiserror-impl"
1342
+ version = "2.0.18"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1345
+ dependencies = [
1346
+ "proc-macro2",
1347
+ "quote",
1348
+ "syn",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "time"
1353
+ version = "0.3.47"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1356
+ dependencies = [
1357
+ "deranged",
1358
+ "itoa",
1359
+ "num-conv",
1360
+ "powerfmt",
1361
+ "serde_core",
1362
+ "time-core",
1363
+ "time-macros",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "time-core"
1368
+ version = "0.1.8"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1371
+
1372
+ [[package]]
1373
+ name = "time-macros"
1374
+ version = "0.2.27"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1377
+ dependencies = [
1378
+ "num-conv",
1379
+ "time-core",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "tinystr"
1384
+ version = "0.8.2"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1387
+ dependencies = [
1388
+ "displaydoc",
1389
+ "zerovec",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "tinyvec"
1394
+ version = "1.11.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1397
+ dependencies = [
1398
+ "tinyvec_macros",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "tinyvec_macros"
1403
+ version = "0.1.1"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1406
+
1407
+ [[package]]
1408
+ name = "tokio"
1409
+ version = "1.50.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1412
+ dependencies = [
1413
+ "bytes",
1414
+ "libc",
1415
+ "mio",
1416
+ "pin-project-lite",
1417
+ "socket2",
1418
+ "windows-sys",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "tokio-native-tls"
1423
+ version = "0.3.1"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1426
+ dependencies = [
1427
+ "native-tls",
1428
+ "tokio",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "tokio-postgres"
1433
+ version = "0.7.16"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42"
1436
+ dependencies = [
1437
+ "async-trait",
1438
+ "byteorder",
1439
+ "bytes",
1440
+ "fallible-iterator",
1441
+ "futures-channel",
1442
+ "futures-util",
1443
+ "log",
1444
+ "parking_lot",
1445
+ "percent-encoding",
1446
+ "phf",
1447
+ "pin-project-lite",
1448
+ "postgres-protocol",
1449
+ "postgres-types",
1450
+ "rand",
1451
+ "socket2",
1452
+ "tokio",
1453
+ "tokio-util",
1454
+ "whoami",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "tokio-util"
1459
+ version = "0.7.18"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1462
+ dependencies = [
1463
+ "bytes",
1464
+ "futures-core",
1465
+ "futures-sink",
1466
+ "pin-project-lite",
1467
+ "tokio",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "toml"
1472
+ version = "0.8.23"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1475
+ dependencies = [
1476
+ "serde",
1477
+ "serde_spanned",
1478
+ "toml_datetime",
1479
+ "toml_edit",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "toml_datetime"
1484
+ version = "0.6.11"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1487
+ dependencies = [
1488
+ "serde",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "toml_edit"
1493
+ version = "0.22.27"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1496
+ dependencies = [
1497
+ "indexmap",
1498
+ "serde",
1499
+ "serde_spanned",
1500
+ "toml_datetime",
1501
+ "toml_write",
1502
+ "winnow",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "toml_write"
1507
+ version = "0.1.2"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1510
+
1511
+ [[package]]
1512
+ name = "typenum"
1513
+ version = "1.19.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1516
+
1517
+ [[package]]
1518
+ name = "unicode-bidi"
1519
+ version = "0.3.18"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1522
+
1523
+ [[package]]
1524
+ name = "unicode-ident"
1525
+ version = "1.0.24"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1528
+
1529
+ [[package]]
1530
+ name = "unicode-normalization"
1531
+ version = "0.1.25"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1534
+ dependencies = [
1535
+ "tinyvec",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "unicode-properties"
1540
+ version = "0.1.4"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
1543
+
1544
+ [[package]]
1545
+ name = "unicode-xid"
1546
+ version = "0.2.6"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1549
+
1550
+ [[package]]
1551
+ name = "unindent"
1552
+ version = "0.2.4"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1555
+
1556
+ [[package]]
1557
+ name = "url"
1558
+ version = "2.5.8"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1561
+ dependencies = [
1562
+ "form_urlencoded",
1563
+ "idna",
1564
+ "percent-encoding",
1565
+ "serde",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "utf8_iter"
1570
+ version = "1.0.4"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1573
+
1574
+ [[package]]
1575
+ name = "uuid"
1576
+ version = "1.23.0"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
1579
+ dependencies = [
1580
+ "getrandom 0.4.2",
1581
+ "js-sys",
1582
+ "serde_core",
1583
+ "wasm-bindgen",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "vcpkg"
1588
+ version = "0.2.15"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1591
+
1592
+ [[package]]
1593
+ name = "version_check"
1594
+ version = "0.9.5"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1597
+
1598
+ [[package]]
1599
+ name = "walkdir"
1600
+ version = "2.5.0"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1603
+ dependencies = [
1604
+ "same-file",
1605
+ "winapi-util",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "wasi"
1610
+ version = "0.11.1+wasi-snapshot-preview1"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1613
+
1614
+ [[package]]
1615
+ name = "wasi"
1616
+ version = "0.14.7+wasi-0.2.4"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
1619
+ dependencies = [
1620
+ "wasip2",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "wasip2"
1625
+ version = "1.0.2+wasi-0.2.9"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1628
+ dependencies = [
1629
+ "wit-bindgen",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "wasip3"
1634
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1637
+ dependencies = [
1638
+ "wit-bindgen",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "wasite"
1643
+ version = "1.0.2"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
1646
+ dependencies = [
1647
+ "wasi 0.14.7+wasi-0.2.4",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "wasm-bindgen"
1652
+ version = "0.2.114"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1655
+ dependencies = [
1656
+ "cfg-if",
1657
+ "once_cell",
1658
+ "rustversion",
1659
+ "wasm-bindgen-macro",
1660
+ "wasm-bindgen-shared",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "wasm-bindgen-macro"
1665
+ version = "0.2.114"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
1668
+ dependencies = [
1669
+ "quote",
1670
+ "wasm-bindgen-macro-support",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "wasm-bindgen-macro-support"
1675
+ version = "0.2.114"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
1678
+ dependencies = [
1679
+ "bumpalo",
1680
+ "proc-macro2",
1681
+ "quote",
1682
+ "syn",
1683
+ "wasm-bindgen-shared",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "wasm-bindgen-shared"
1688
+ version = "0.2.114"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
1691
+ dependencies = [
1692
+ "unicode-ident",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "wasm-encoder"
1697
+ version = "0.244.0"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1700
+ dependencies = [
1701
+ "leb128fmt",
1702
+ "wasmparser",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "wasm-metadata"
1707
+ version = "0.244.0"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1710
+ dependencies = [
1711
+ "anyhow",
1712
+ "indexmap",
1713
+ "wasm-encoder",
1714
+ "wasmparser",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "wasmparser"
1719
+ version = "0.244.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1722
+ dependencies = [
1723
+ "bitflags",
1724
+ "hashbrown 0.15.5",
1725
+ "indexmap",
1726
+ "semver",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "web-sys"
1731
+ version = "0.3.91"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
1734
+ dependencies = [
1735
+ "js-sys",
1736
+ "wasm-bindgen",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "whoami"
1741
+ version = "2.1.1"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d"
1744
+ dependencies = [
1745
+ "libc",
1746
+ "libredox",
1747
+ "objc2-system-configuration",
1748
+ "wasite",
1749
+ "web-sys",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "winapi-util"
1754
+ version = "0.1.11"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1757
+ dependencies = [
1758
+ "windows-sys",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "windows-core"
1763
+ version = "0.62.2"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1766
+ dependencies = [
1767
+ "windows-implement",
1768
+ "windows-interface",
1769
+ "windows-link",
1770
+ "windows-result",
1771
+ "windows-strings",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "windows-implement"
1776
+ version = "0.60.2"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1779
+ dependencies = [
1780
+ "proc-macro2",
1781
+ "quote",
1782
+ "syn",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "windows-interface"
1787
+ version = "0.59.3"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1790
+ dependencies = [
1791
+ "proc-macro2",
1792
+ "quote",
1793
+ "syn",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "windows-link"
1798
+ version = "0.2.1"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1801
+
1802
+ [[package]]
1803
+ name = "windows-result"
1804
+ version = "0.4.1"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1807
+ dependencies = [
1808
+ "windows-link",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "windows-strings"
1813
+ version = "0.5.1"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1816
+ dependencies = [
1817
+ "windows-link",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "windows-sys"
1822
+ version = "0.61.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1825
+ dependencies = [
1826
+ "windows-link",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "winnow"
1831
+ version = "0.7.15"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1834
+ dependencies = [
1835
+ "memchr",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "wit-bindgen"
1840
+ version = "0.51.0"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1843
+ dependencies = [
1844
+ "wit-bindgen-rust-macro",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "wit-bindgen-core"
1849
+ version = "0.51.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1852
+ dependencies = [
1853
+ "anyhow",
1854
+ "heck",
1855
+ "wit-parser",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "wit-bindgen-rust"
1860
+ version = "0.51.0"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1863
+ dependencies = [
1864
+ "anyhow",
1865
+ "heck",
1866
+ "indexmap",
1867
+ "prettyplease",
1868
+ "syn",
1869
+ "wasm-metadata",
1870
+ "wit-bindgen-core",
1871
+ "wit-component",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "wit-bindgen-rust-macro"
1876
+ version = "0.51.0"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1879
+ dependencies = [
1880
+ "anyhow",
1881
+ "prettyplease",
1882
+ "proc-macro2",
1883
+ "quote",
1884
+ "syn",
1885
+ "wit-bindgen-core",
1886
+ "wit-bindgen-rust",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "wit-component"
1891
+ version = "0.244.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1894
+ dependencies = [
1895
+ "anyhow",
1896
+ "bitflags",
1897
+ "indexmap",
1898
+ "log",
1899
+ "serde",
1900
+ "serde_derive",
1901
+ "serde_json",
1902
+ "wasm-encoder",
1903
+ "wasm-metadata",
1904
+ "wasmparser",
1905
+ "wit-parser",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "wit-parser"
1910
+ version = "0.244.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1913
+ dependencies = [
1914
+ "anyhow",
1915
+ "id-arena",
1916
+ "indexmap",
1917
+ "log",
1918
+ "semver",
1919
+ "serde",
1920
+ "serde_derive",
1921
+ "serde_json",
1922
+ "unicode-xid",
1923
+ "wasmparser",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "writeable"
1928
+ version = "0.6.2"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1931
+
1932
+ [[package]]
1933
+ name = "yoke"
1934
+ version = "0.8.1"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1937
+ dependencies = [
1938
+ "stable_deref_trait",
1939
+ "yoke-derive",
1940
+ "zerofrom",
1941
+ ]
1942
+
1943
+ [[package]]
1944
+ name = "yoke-derive"
1945
+ version = "0.8.1"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1948
+ dependencies = [
1949
+ "proc-macro2",
1950
+ "quote",
1951
+ "syn",
1952
+ "synstructure",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "zerocopy"
1957
+ version = "0.8.47"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
1960
+ dependencies = [
1961
+ "zerocopy-derive",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "zerocopy-derive"
1966
+ version = "0.8.47"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
1969
+ dependencies = [
1970
+ "proc-macro2",
1971
+ "quote",
1972
+ "syn",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "zerofrom"
1977
+ version = "0.1.6"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1980
+ dependencies = [
1981
+ "zerofrom-derive",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "zerofrom-derive"
1986
+ version = "0.1.6"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1989
+ dependencies = [
1990
+ "proc-macro2",
1991
+ "quote",
1992
+ "syn",
1993
+ "synstructure",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "zerotrie"
1998
+ version = "0.2.3"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2001
+ dependencies = [
2002
+ "displaydoc",
2003
+ "yoke",
2004
+ "zerofrom",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "zerovec"
2009
+ version = "0.11.5"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2012
+ dependencies = [
2013
+ "yoke",
2014
+ "zerofrom",
2015
+ "zerovec-derive",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "zerovec-derive"
2020
+ version = "0.11.2"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2023
+ dependencies = [
2024
+ "proc-macro2",
2025
+ "quote",
2026
+ "syn",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "zmij"
2031
+ version = "1.0.21"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"