mempill 0.2.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 (108) hide show
  1. mempill-0.2.0/Cargo.lock +3251 -0
  2. mempill-0.2.0/Cargo.toml +24 -0
  3. mempill-0.2.0/PKG-INFO +6 -0
  4. mempill-0.2.0/mempill-core/Cargo.toml +31 -0
  5. mempill-0.2.0/mempill-core/LICENSE +202 -0
  6. mempill-0.2.0/mempill-core/README.md +50 -0
  7. mempill-0.2.0/mempill-core/src/application/audit.rs +155 -0
  8. mempill-0.2.0/mempill-core/src/application/dto.rs +168 -0
  9. mempill-0.2.0/mempill-core/src/application/ingest_claim.rs +989 -0
  10. mempill-0.2.0/mempill-core/src/application/mod.rs +25 -0
  11. mempill-0.2.0/mempill-core/src/application/query_history.rs +636 -0
  12. mempill-0.2.0/mempill-core/src/application/query_memory.rs +278 -0
  13. mempill-0.2.0/mempill-core/src/application/reconcile.rs +286 -0
  14. mempill-0.2.0/mempill-core/src/application/submit_adjudication.rs +1075 -0
  15. mempill-0.2.0/mempill-core/src/application/sweep_adjudications.rs +215 -0
  16. mempill-0.2.0/mempill-core/src/concurrency/agent_lock.rs +203 -0
  17. mempill-0.2.0/mempill-core/src/concurrency/mod.rs +7 -0
  18. mempill-0.2.0/mempill-core/src/config.rs +155 -0
  19. mempill-0.2.0/mempill-core/src/engine/audit_ledger.rs +365 -0
  20. mempill-0.2.0/mempill-core/src/engine/firewall.rs +501 -0
  21. mempill-0.2.0/mempill-core/src/engine/gate.rs +1377 -0
  22. mempill-0.2.0/mempill-core/src/engine/gateway.rs +304 -0
  23. mempill-0.2.0/mempill-core/src/engine/mod.rs +23 -0
  24. mempill-0.2.0/mempill-core/src/engine/projection.rs +531 -0
  25. mempill-0.2.0/mempill-core/src/engine/reconciler.rs +538 -0
  26. mempill-0.2.0/mempill-core/src/engine/supersession.rs +1209 -0
  27. mempill-0.2.0/mempill-core/src/engine/truth_engine.rs +723 -0
  28. mempill-0.2.0/mempill-core/src/engine/valid_time_helpers.rs +345 -0
  29. mempill-0.2.0/mempill-core/src/engine_handle.rs +576 -0
  30. mempill-0.2.0/mempill-core/src/error.rs +260 -0
  31. mempill-0.2.0/mempill-core/src/lib.rs +57 -0
  32. mempill-0.2.0/mempill-core/src/noop.rs +238 -0
  33. mempill-0.2.0/mempill-core/src/ports/embedding.rs +54 -0
  34. mempill-0.2.0/mempill-core/src/ports/extractor.rs +21 -0
  35. mempill-0.2.0/mempill-core/src/ports/mod.rs +20 -0
  36. mempill-0.2.0/mempill-core/src/ports/model.rs +6 -0
  37. mempill-0.2.0/mempill-core/src/ports/oracle.rs +35 -0
  38. mempill-0.2.0/mempill-core/src/ports/pending_adjudication.rs +165 -0
  39. mempill-0.2.0/mempill-core/src/ports/persistence.rs +133 -0
  40. mempill-0.2.0/mempill-core/src/testing/conformance.rs +1258 -0
  41. mempill-0.2.0/mempill-core/src/testing/mod.rs +10 -0
  42. mempill-0.2.0/mempill-core/src/testing/oracle_conformance.rs +809 -0
  43. mempill-0.2.0/mempill-python/Cargo.toml +29 -0
  44. mempill-0.2.0/mempill-python/README.md +96 -0
  45. mempill-0.2.0/mempill-python/src/engine.rs +280 -0
  46. mempill-0.2.0/mempill-python/src/errors.rs +90 -0
  47. mempill-0.2.0/mempill-python/src/lib.rs +45 -0
  48. mempill-0.2.0/mempill-python/src/oracle.rs +462 -0
  49. mempill-0.2.0/mempill-python/tests/__init__.py +0 -0
  50. mempill-0.2.0/mempill-python/tests/conftest.py +38 -0
  51. mempill-0.2.0/mempill-python/tests/test_audit.py +127 -0
  52. mempill-0.2.0/mempill-python/tests/test_contested.py +85 -0
  53. mempill-0.2.0/mempill-python/tests/test_enum_mapping.py +160 -0
  54. mempill-0.2.0/mempill-python/tests/test_ergonomic.py +372 -0
  55. mempill-0.2.0/mempill-python/tests/test_error_mapping.py +176 -0
  56. mempill-0.2.0/mempill-python/tests/test_history.py +278 -0
  57. mempill-0.2.0/mempill-python/tests/test_ingest_query.py +66 -0
  58. mempill-0.2.0/mempill-python/tests/test_oracle.py +359 -0
  59. mempill-0.2.0/mempill-python/tests/test_reconcile.py +104 -0
  60. mempill-0.2.0/mempill-python/tests/test_thread_safety.py +264 -0
  61. mempill-0.2.0/mempill-sqlite/Cargo.toml +27 -0
  62. mempill-0.2.0/mempill-sqlite/LICENSE +202 -0
  63. mempill-0.2.0/mempill-sqlite/README.md +64 -0
  64. mempill-0.2.0/mempill-sqlite/src/connection.rs +174 -0
  65. mempill-0.2.0/mempill-sqlite/src/lib.rs +264 -0
  66. mempill-0.2.0/mempill-sqlite/src/migrations.rs +397 -0
  67. mempill-0.2.0/mempill-sqlite/src/schema/indexes.sql +26 -0
  68. mempill-0.2.0/mempill-sqlite/src/schema/v1_initial.sql +100 -0
  69. mempill-0.2.0/mempill-sqlite/src/schema/v2_pending_adjudications.sql +15 -0
  70. mempill-0.2.0/mempill-sqlite/src/store.rs +2448 -0
  71. mempill-0.2.0/mempill-sqlite/src/txn.rs +92 -0
  72. mempill-0.2.0/mempill-sqlite/tests/acid_allergy_retained.rs +445 -0
  73. mempill-0.2.0/mempill-sqlite/tests/acid_amplification.rs +312 -0
  74. mempill-0.2.0/mempill-sqlite/tests/acid_atomic_commit.rs +417 -0
  75. mempill-0.2.0/mempill-sqlite/tests/acid_b11_contested.rs +221 -0
  76. mempill-0.2.0/mempill-sqlite/tests/acid_b7_coherence.rs +386 -0
  77. mempill-0.2.0/mempill-sqlite/tests/acid_g1_replay.rs +437 -0
  78. mempill-0.2.0/mempill-sqlite/tests/concurrent_writes.rs +88 -0
  79. mempill-0.2.0/mempill-sqlite/tests/history_qa.rs +318 -0
  80. mempill-0.2.0/mempill-sqlite/tests/oracle_belief_surfacing_qa.rs +480 -0
  81. mempill-0.2.0/mempill-sqlite/tests/oracle_constructor_e2e.rs +195 -0
  82. mempill-0.2.0/mempill-sqlite/tests/oracle_resolution_e2e.rs +292 -0
  83. mempill-0.2.0/mempill-sqlite/tests/oracle_ttl_sweep_qa.rs +521 -0
  84. mempill-0.2.0/mempill-sqlite/tests/sqlite_conformance.rs +28 -0
  85. mempill-0.2.0/mempill-sqlite/tests/sqlite_oracle_conformance.rs +353 -0
  86. mempill-0.2.0/mempill-sqlite/tests/temporal_succession_qa.rs +469 -0
  87. mempill-0.2.0/mempill-sqlite/tests/temporal_succession_task11.rs +569 -0
  88. mempill-0.2.0/mempill-types/Cargo.toml +22 -0
  89. mempill-0.2.0/mempill-types/LICENSE +202 -0
  90. mempill-0.2.0/mempill-types/README.md +25 -0
  91. mempill-0.2.0/mempill-types/src/belief.rs +216 -0
  92. mempill-0.2.0/mempill-types/src/claim.rs +220 -0
  93. mempill-0.2.0/mempill-types/src/disposition.rs +111 -0
  94. mempill-0.2.0/mempill-types/src/edge.rs +85 -0
  95. mempill-0.2.0/mempill-types/src/identity.rs +86 -0
  96. mempill-0.2.0/mempill-types/src/ledger.rs +114 -0
  97. mempill-0.2.0/mempill-types/src/lib.rs +50 -0
  98. mempill-0.2.0/mempill-types/src/proposal.rs +177 -0
  99. mempill-0.2.0/mempill-types/src/provenance.rs +150 -0
  100. mempill-0.2.0/mempill-types/src/time.rs +132 -0
  101. mempill-0.2.0/mempill-types/src/validity.rs +77 -0
  102. mempill-0.2.0/pyproject.toml +16 -0
  103. mempill-0.2.0/python/mempill/__init__.py +171 -0
  104. mempill-0.2.0/python/mempill/_mempill.pyi +173 -0
  105. mempill-0.2.0/python/mempill/ergonomic.py +587 -0
  106. mempill-0.2.0/python/mempill/py.typed +0 -0
  107. mempill-0.2.0/python/mempill/quickstart.py +83 -0
  108. mempill-0.2.0/python/mempill/types.py +172 -0
@@ -0,0 +1,3251 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anyhow"
37
+ version = "1.0.102"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
40
+
41
+ [[package]]
42
+ name = "astral-tokio-tar"
43
+ version = "0.6.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "cb50a7aae84a03bf55b067832bc376f4961b790c97e64d3eacee97d389b90277"
46
+ dependencies = [
47
+ "filetime",
48
+ "futures-core",
49
+ "libc",
50
+ "portable-atomic",
51
+ "rustc-hash",
52
+ "tokio",
53
+ "tokio-stream",
54
+ "xattr",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "async-stream"
59
+ version = "0.3.6"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
62
+ dependencies = [
63
+ "async-stream-impl",
64
+ "futures-core",
65
+ "pin-project-lite",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "async-stream-impl"
70
+ version = "0.3.6"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
73
+ dependencies = [
74
+ "proc-macro2",
75
+ "quote",
76
+ "syn",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "async-trait"
81
+ version = "0.1.89"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
84
+ dependencies = [
85
+ "proc-macro2",
86
+ "quote",
87
+ "syn",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "atomic-waker"
92
+ version = "1.1.2"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
95
+
96
+ [[package]]
97
+ name = "autocfg"
98
+ version = "1.5.1"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
101
+
102
+ [[package]]
103
+ name = "axum"
104
+ version = "0.8.9"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
107
+ dependencies = [
108
+ "axum-core",
109
+ "bytes",
110
+ "futures-util",
111
+ "http",
112
+ "http-body",
113
+ "http-body-util",
114
+ "itoa",
115
+ "matchit",
116
+ "memchr",
117
+ "mime",
118
+ "percent-encoding",
119
+ "pin-project-lite",
120
+ "serde_core",
121
+ "sync_wrapper",
122
+ "tower",
123
+ "tower-layer",
124
+ "tower-service",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "axum-core"
129
+ version = "0.5.6"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
132
+ dependencies = [
133
+ "bytes",
134
+ "futures-core",
135
+ "http",
136
+ "http-body",
137
+ "http-body-util",
138
+ "mime",
139
+ "pin-project-lite",
140
+ "sync_wrapper",
141
+ "tower-layer",
142
+ "tower-service",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "base64"
147
+ version = "0.22.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
150
+
151
+ [[package]]
152
+ name = "bitflags"
153
+ version = "2.13.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
156
+
157
+ [[package]]
158
+ name = "block-buffer"
159
+ version = "0.12.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
162
+ dependencies = [
163
+ "hybrid-array",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "bollard"
168
+ version = "0.20.2"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "ee04c4c84f1f811b017f2fbb7dd8815c976e7ca98593de9c1e2afad0f636bff4"
171
+ dependencies = [
172
+ "async-stream",
173
+ "base64",
174
+ "bitflags",
175
+ "bollard-buildkit-proto",
176
+ "bollard-stubs",
177
+ "bytes",
178
+ "futures-core",
179
+ "futures-util",
180
+ "hex",
181
+ "home",
182
+ "http",
183
+ "http-body-util",
184
+ "hyper",
185
+ "hyper-named-pipe",
186
+ "hyper-rustls",
187
+ "hyper-util",
188
+ "hyperlocal",
189
+ "log",
190
+ "num",
191
+ "pin-project-lite",
192
+ "rand 0.9.4",
193
+ "rustls",
194
+ "rustls-native-certs",
195
+ "rustls-pki-types",
196
+ "serde",
197
+ "serde_derive",
198
+ "serde_json",
199
+ "serde_urlencoded",
200
+ "thiserror 2.0.18",
201
+ "time",
202
+ "tokio",
203
+ "tokio-stream",
204
+ "tokio-util",
205
+ "tonic",
206
+ "tower-service",
207
+ "url",
208
+ "winapi",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "bollard-buildkit-proto"
213
+ version = "0.7.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "85a885520bf6249ab931a764ffdb87b0ceef48e6e7d807cfdb21b751e086e1ad"
216
+ dependencies = [
217
+ "prost",
218
+ "prost-types",
219
+ "tonic",
220
+ "tonic-prost",
221
+ "ureq",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "bollard-stubs"
226
+ version = "1.52.1-rc.29.1.3"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "0f0a8ca8799131c1837d1282c3f81f31e76ceb0ce426e04a7fe1ccee3287c066"
229
+ dependencies = [
230
+ "base64",
231
+ "bollard-buildkit-proto",
232
+ "bytes",
233
+ "prost",
234
+ "serde",
235
+ "serde_json",
236
+ "serde_repr",
237
+ "time",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "bs58"
242
+ version = "0.5.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
245
+ dependencies = [
246
+ "tinyvec",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "bumpalo"
251
+ version = "3.20.3"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
254
+
255
+ [[package]]
256
+ name = "byteorder"
257
+ version = "1.5.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
260
+
261
+ [[package]]
262
+ name = "bytes"
263
+ version = "1.12.0"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
266
+
267
+ [[package]]
268
+ name = "cc"
269
+ version = "1.2.65"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
272
+ dependencies = [
273
+ "find-msvc-tools",
274
+ "shlex",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "cfg-if"
279
+ version = "1.0.4"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
282
+
283
+ [[package]]
284
+ name = "chacha20"
285
+ version = "0.10.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
288
+ dependencies = [
289
+ "cfg-if",
290
+ "cpufeatures",
291
+ "rand_core 0.10.1",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "chrono"
296
+ version = "0.4.45"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
299
+ dependencies = [
300
+ "iana-time-zone",
301
+ "js-sys",
302
+ "num-traits",
303
+ "serde",
304
+ "wasm-bindgen",
305
+ "windows-link",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "cmov"
310
+ version = "0.5.4"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
313
+
314
+ [[package]]
315
+ name = "conquer-once"
316
+ version = "0.4.0"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "5d008a441c0f269f36ca13712528069a86a3e60dffee1d98b976eb3b0b2160b4"
319
+ dependencies = [
320
+ "conquer-util",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "conquer-util"
325
+ version = "0.3.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "e763eef8846b13b380f37dfecda401770b0ca4e56e95170237bd7c25c7db3582"
328
+
329
+ [[package]]
330
+ name = "const-oid"
331
+ version = "0.10.2"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
334
+
335
+ [[package]]
336
+ name = "core-foundation"
337
+ version = "0.10.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
340
+ dependencies = [
341
+ "core-foundation-sys",
342
+ "libc",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "core-foundation-sys"
347
+ version = "0.8.7"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
350
+
351
+ [[package]]
352
+ name = "cpufeatures"
353
+ version = "0.3.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
356
+ dependencies = [
357
+ "libc",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "crypto-common"
362
+ version = "0.2.2"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
365
+ dependencies = [
366
+ "hybrid-array",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "ctutils"
371
+ version = "0.4.2"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
374
+ dependencies = [
375
+ "cmov",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "darling"
380
+ version = "0.23.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
383
+ dependencies = [
384
+ "darling_core",
385
+ "darling_macro",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "darling_core"
390
+ version = "0.23.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
393
+ dependencies = [
394
+ "ident_case",
395
+ "proc-macro2",
396
+ "quote",
397
+ "strsim",
398
+ "syn",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "darling_macro"
403
+ version = "0.23.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
406
+ dependencies = [
407
+ "darling_core",
408
+ "quote",
409
+ "syn",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "deranged"
414
+ version = "0.5.8"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
417
+ dependencies = [
418
+ "serde_core",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "digest"
423
+ version = "0.11.3"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
426
+ dependencies = [
427
+ "block-buffer",
428
+ "const-oid",
429
+ "crypto-common",
430
+ "ctutils",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "displaydoc"
435
+ version = "0.2.6"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
438
+ dependencies = [
439
+ "proc-macro2",
440
+ "quote",
441
+ "syn",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "docker_credential"
446
+ version = "1.4.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "29547a1dc60885a552306986316bc9701ba120c1a8db6769fa68691529ad373d"
449
+ dependencies = [
450
+ "base64",
451
+ "serde",
452
+ "serde_json",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "dyn-clone"
457
+ version = "1.0.20"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
460
+
461
+ [[package]]
462
+ name = "either"
463
+ version = "1.16.0"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
466
+
467
+ [[package]]
468
+ name = "equivalent"
469
+ version = "1.0.2"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
472
+
473
+ [[package]]
474
+ name = "errno"
475
+ version = "0.3.14"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
478
+ dependencies = [
479
+ "libc",
480
+ "windows-sys 0.61.2",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "etcetera"
485
+ version = "0.11.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
488
+ dependencies = [
489
+ "cfg-if",
490
+ "windows-sys 0.61.2",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "fallible-iterator"
495
+ version = "0.2.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
498
+
499
+ [[package]]
500
+ name = "fallible-iterator"
501
+ version = "0.3.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
504
+
505
+ [[package]]
506
+ name = "fallible-streaming-iterator"
507
+ version = "0.1.9"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
510
+
511
+ [[package]]
512
+ name = "fastrand"
513
+ version = "2.4.1"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
516
+
517
+ [[package]]
518
+ name = "ferroid"
519
+ version = "2.0.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "ee93edf3c501f0035bbeffeccfed0b79e14c311f12195ec0e661e114a0f60da4"
522
+ dependencies = [
523
+ "portable-atomic",
524
+ "rand 0.10.1",
525
+ "web-time",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "filetime"
530
+ version = "0.2.29"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
533
+ dependencies = [
534
+ "cfg-if",
535
+ "libc",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "find-msvc-tools"
540
+ version = "0.1.9"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
543
+
544
+ [[package]]
545
+ name = "fnv"
546
+ version = "1.0.7"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
549
+
550
+ [[package]]
551
+ name = "form_urlencoded"
552
+ version = "1.2.2"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
555
+ dependencies = [
556
+ "percent-encoding",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "futures"
561
+ version = "0.3.32"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
564
+ dependencies = [
565
+ "futures-channel",
566
+ "futures-core",
567
+ "futures-executor",
568
+ "futures-io",
569
+ "futures-sink",
570
+ "futures-task",
571
+ "futures-util",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "futures-channel"
576
+ version = "0.3.32"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
579
+ dependencies = [
580
+ "futures-core",
581
+ "futures-sink",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "futures-core"
586
+ version = "0.3.32"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
589
+
590
+ [[package]]
591
+ name = "futures-executor"
592
+ version = "0.3.32"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
595
+ dependencies = [
596
+ "futures-core",
597
+ "futures-task",
598
+ "futures-util",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "futures-io"
603
+ version = "0.3.32"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
606
+
607
+ [[package]]
608
+ name = "futures-macro"
609
+ version = "0.3.32"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
612
+ dependencies = [
613
+ "proc-macro2",
614
+ "quote",
615
+ "syn",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "futures-sink"
620
+ version = "0.3.32"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
623
+
624
+ [[package]]
625
+ name = "futures-task"
626
+ version = "0.3.32"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
629
+
630
+ [[package]]
631
+ name = "futures-util"
632
+ version = "0.3.32"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
635
+ dependencies = [
636
+ "futures-channel",
637
+ "futures-core",
638
+ "futures-io",
639
+ "futures-macro",
640
+ "futures-sink",
641
+ "futures-task",
642
+ "memchr",
643
+ "pin-project-lite",
644
+ "slab",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "getrandom"
649
+ version = "0.2.17"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
652
+ dependencies = [
653
+ "cfg-if",
654
+ "libc",
655
+ "wasi 0.11.1+wasi-snapshot-preview1",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "getrandom"
660
+ version = "0.3.4"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
663
+ dependencies = [
664
+ "cfg-if",
665
+ "libc",
666
+ "r-efi 5.3.0",
667
+ "wasip2",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "getrandom"
672
+ version = "0.4.3"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
675
+ dependencies = [
676
+ "cfg-if",
677
+ "libc",
678
+ "r-efi 6.0.0",
679
+ "rand_core 0.10.1",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "h2"
684
+ version = "0.4.15"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
687
+ dependencies = [
688
+ "atomic-waker",
689
+ "bytes",
690
+ "fnv",
691
+ "futures-core",
692
+ "futures-sink",
693
+ "http",
694
+ "indexmap 2.14.0",
695
+ "slab",
696
+ "tokio",
697
+ "tokio-util",
698
+ "tracing",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "hashbrown"
703
+ version = "0.12.3"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
706
+
707
+ [[package]]
708
+ name = "hashbrown"
709
+ version = "0.14.5"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
712
+ dependencies = [
713
+ "ahash",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "hashbrown"
718
+ version = "0.17.1"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
721
+
722
+ [[package]]
723
+ name = "hashlink"
724
+ version = "0.9.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
727
+ dependencies = [
728
+ "hashbrown 0.14.5",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "heck"
733
+ version = "0.5.0"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
736
+
737
+ [[package]]
738
+ name = "hex"
739
+ version = "0.4.3"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
742
+
743
+ [[package]]
744
+ name = "hmac"
745
+ version = "0.13.0"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
748
+ dependencies = [
749
+ "digest",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "home"
754
+ version = "0.5.12"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
757
+ dependencies = [
758
+ "windows-sys 0.61.2",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "http"
763
+ version = "1.4.2"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
766
+ dependencies = [
767
+ "bytes",
768
+ "itoa",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "http-body"
773
+ version = "1.0.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
776
+ dependencies = [
777
+ "bytes",
778
+ "http",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "http-body-util"
783
+ version = "0.1.3"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
786
+ dependencies = [
787
+ "bytes",
788
+ "futures-core",
789
+ "http",
790
+ "http-body",
791
+ "pin-project-lite",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "httparse"
796
+ version = "1.10.1"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
799
+
800
+ [[package]]
801
+ name = "httpdate"
802
+ version = "1.0.3"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
805
+
806
+ [[package]]
807
+ name = "hybrid-array"
808
+ version = "0.4.12"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
811
+ dependencies = [
812
+ "typenum",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "hyper"
817
+ version = "1.10.1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
820
+ dependencies = [
821
+ "atomic-waker",
822
+ "bytes",
823
+ "futures-channel",
824
+ "futures-core",
825
+ "h2",
826
+ "http",
827
+ "http-body",
828
+ "httparse",
829
+ "httpdate",
830
+ "itoa",
831
+ "pin-project-lite",
832
+ "smallvec",
833
+ "tokio",
834
+ "want",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "hyper-named-pipe"
839
+ version = "0.1.0"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "73b7d8abf35697b81a825e386fc151e0d503e8cb5fcb93cc8669c376dfd6f278"
842
+ dependencies = [
843
+ "hex",
844
+ "hyper",
845
+ "hyper-util",
846
+ "pin-project-lite",
847
+ "tokio",
848
+ "tower-service",
849
+ "winapi",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "hyper-rustls"
854
+ version = "0.27.9"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
857
+ dependencies = [
858
+ "http",
859
+ "hyper",
860
+ "hyper-util",
861
+ "rustls",
862
+ "tokio",
863
+ "tokio-rustls",
864
+ "tower-service",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "hyper-timeout"
869
+ version = "0.5.2"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
872
+ dependencies = [
873
+ "hyper",
874
+ "hyper-util",
875
+ "pin-project-lite",
876
+ "tokio",
877
+ "tower-service",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "hyper-util"
882
+ version = "0.1.20"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
885
+ dependencies = [
886
+ "bytes",
887
+ "futures-channel",
888
+ "futures-util",
889
+ "http",
890
+ "http-body",
891
+ "hyper",
892
+ "libc",
893
+ "pin-project-lite",
894
+ "socket2",
895
+ "tokio",
896
+ "tower-service",
897
+ "tracing",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "hyperlocal"
902
+ version = "0.9.1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "986c5ce3b994526b3cd75578e62554abd09f0899d6206de48b3e96ab34ccc8c7"
905
+ dependencies = [
906
+ "hex",
907
+ "http-body-util",
908
+ "hyper",
909
+ "hyper-util",
910
+ "pin-project-lite",
911
+ "tokio",
912
+ "tower-service",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "iana-time-zone"
917
+ version = "0.1.65"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
920
+ dependencies = [
921
+ "android_system_properties",
922
+ "core-foundation-sys",
923
+ "iana-time-zone-haiku",
924
+ "js-sys",
925
+ "log",
926
+ "wasm-bindgen",
927
+ "windows-core",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "iana-time-zone-haiku"
932
+ version = "0.1.2"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
935
+ dependencies = [
936
+ "cc",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "icu_collections"
941
+ version = "2.2.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
944
+ dependencies = [
945
+ "displaydoc",
946
+ "potential_utf",
947
+ "utf8_iter",
948
+ "yoke",
949
+ "zerofrom",
950
+ "zerovec",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "icu_locale_core"
955
+ version = "2.2.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
958
+ dependencies = [
959
+ "displaydoc",
960
+ "litemap",
961
+ "tinystr",
962
+ "writeable",
963
+ "zerovec",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "icu_normalizer"
968
+ version = "2.2.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
971
+ dependencies = [
972
+ "icu_collections",
973
+ "icu_normalizer_data",
974
+ "icu_properties",
975
+ "icu_provider",
976
+ "smallvec",
977
+ "zerovec",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "icu_normalizer_data"
982
+ version = "2.2.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
985
+
986
+ [[package]]
987
+ name = "icu_properties"
988
+ version = "2.2.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
991
+ dependencies = [
992
+ "icu_collections",
993
+ "icu_locale_core",
994
+ "icu_properties_data",
995
+ "icu_provider",
996
+ "zerotrie",
997
+ "zerovec",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "icu_properties_data"
1002
+ version = "2.2.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1005
+
1006
+ [[package]]
1007
+ name = "icu_provider"
1008
+ version = "2.2.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1011
+ dependencies = [
1012
+ "displaydoc",
1013
+ "icu_locale_core",
1014
+ "writeable",
1015
+ "yoke",
1016
+ "zerofrom",
1017
+ "zerotrie",
1018
+ "zerovec",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "ident_case"
1023
+ version = "1.0.1"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1026
+
1027
+ [[package]]
1028
+ name = "idna"
1029
+ version = "1.1.0"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1032
+ dependencies = [
1033
+ "idna_adapter",
1034
+ "smallvec",
1035
+ "utf8_iter",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "idna_adapter"
1040
+ version = "1.2.2"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1043
+ dependencies = [
1044
+ "icu_normalizer",
1045
+ "icu_properties",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "indexmap"
1050
+ version = "1.9.3"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1053
+ dependencies = [
1054
+ "autocfg",
1055
+ "hashbrown 0.12.3",
1056
+ "serde",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "indexmap"
1061
+ version = "2.14.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1064
+ dependencies = [
1065
+ "equivalent",
1066
+ "hashbrown 0.17.1",
1067
+ "serde",
1068
+ "serde_core",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "itertools"
1073
+ version = "0.14.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1076
+ dependencies = [
1077
+ "either",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "itoa"
1082
+ version = "1.0.18"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1085
+
1086
+ [[package]]
1087
+ name = "js-sys"
1088
+ version = "0.3.102"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
1091
+ dependencies = [
1092
+ "cfg-if",
1093
+ "futures-util",
1094
+ "wasm-bindgen",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "libc"
1099
+ version = "0.2.186"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1102
+
1103
+ [[package]]
1104
+ name = "libredox"
1105
+ version = "0.1.17"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
1108
+ dependencies = [
1109
+ "libc",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "libsqlite3-sys"
1114
+ version = "0.28.0"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
1117
+ dependencies = [
1118
+ "cc",
1119
+ "pkg-config",
1120
+ "vcpkg",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "linux-raw-sys"
1125
+ version = "0.12.1"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1128
+
1129
+ [[package]]
1130
+ name = "litemap"
1131
+ version = "0.8.2"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1134
+
1135
+ [[package]]
1136
+ name = "lock_api"
1137
+ version = "0.4.14"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1140
+ dependencies = [
1141
+ "scopeguard",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "log"
1146
+ version = "0.4.33"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1149
+
1150
+ [[package]]
1151
+ name = "matchit"
1152
+ version = "0.8.4"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1155
+
1156
+ [[package]]
1157
+ name = "md-5"
1158
+ version = "0.11.0"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1161
+ dependencies = [
1162
+ "cfg-if",
1163
+ "digest",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "memchr"
1168
+ version = "2.8.2"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1171
+
1172
+ [[package]]
1173
+ name = "mempill"
1174
+ version = "0.2.0"
1175
+ dependencies = [
1176
+ "async-trait",
1177
+ "chrono",
1178
+ "mempill-core",
1179
+ "mempill-postgres",
1180
+ "mempill-sqlite",
1181
+ "mempill-types",
1182
+ "serde",
1183
+ "serde_json",
1184
+ "thiserror 1.0.69",
1185
+ "tokio",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "mempill-core"
1190
+ version = "0.2.0"
1191
+ dependencies = [
1192
+ "chrono",
1193
+ "futures",
1194
+ "mempill-types",
1195
+ "serde",
1196
+ "serde_json",
1197
+ "thiserror 1.0.69",
1198
+ "tokio",
1199
+ "uuid",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "mempill-postgres"
1204
+ version = "0.2.0"
1205
+ dependencies = [
1206
+ "chrono",
1207
+ "mempill-core",
1208
+ "mempill-types",
1209
+ "postgres",
1210
+ "r2d2",
1211
+ "r2d2_postgres",
1212
+ "refinery",
1213
+ "serde_json",
1214
+ "testcontainers-modules",
1215
+ "thiserror 1.0.69",
1216
+ "tokio",
1217
+ "uuid",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "mempill-python"
1222
+ version = "0.2.0"
1223
+ dependencies = [
1224
+ "mempill-core",
1225
+ "mempill-sqlite",
1226
+ "mempill-types",
1227
+ "pyo3",
1228
+ "pythonize",
1229
+ "serde_json",
1230
+ "thiserror 1.0.69",
1231
+ "tokio",
1232
+ "uuid",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "mempill-sqlite"
1237
+ version = "0.2.0"
1238
+ dependencies = [
1239
+ "chrono",
1240
+ "mempill-core",
1241
+ "mempill-types",
1242
+ "rusqlite",
1243
+ "serde_json",
1244
+ "tempfile",
1245
+ "thiserror 1.0.69",
1246
+ "tokio",
1247
+ "uuid",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "mempill-ts"
1252
+ version = "0.2.0"
1253
+ dependencies = [
1254
+ "mempill-core",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "mempill-types"
1259
+ version = "0.2.0"
1260
+ dependencies = [
1261
+ "chrono",
1262
+ "serde",
1263
+ "serde_json",
1264
+ "uuid",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "mime"
1269
+ version = "0.3.17"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1272
+
1273
+ [[package]]
1274
+ name = "mio"
1275
+ version = "1.2.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1278
+ dependencies = [
1279
+ "libc",
1280
+ "wasi 0.11.1+wasi-snapshot-preview1",
1281
+ "windows-sys 0.61.2",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "num"
1286
+ version = "0.4.3"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1289
+ dependencies = [
1290
+ "num-bigint",
1291
+ "num-complex",
1292
+ "num-integer",
1293
+ "num-iter",
1294
+ "num-rational",
1295
+ "num-traits",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "num-bigint"
1300
+ version = "0.4.6"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1303
+ dependencies = [
1304
+ "num-integer",
1305
+ "num-traits",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "num-complex"
1310
+ version = "0.4.6"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1313
+ dependencies = [
1314
+ "num-traits",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "num-conv"
1319
+ version = "0.2.2"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1322
+
1323
+ [[package]]
1324
+ name = "num-integer"
1325
+ version = "0.1.46"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1328
+ dependencies = [
1329
+ "num-traits",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "num-iter"
1334
+ version = "0.1.45"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1337
+ dependencies = [
1338
+ "autocfg",
1339
+ "num-integer",
1340
+ "num-traits",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "num-rational"
1345
+ version = "0.4.2"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1348
+ dependencies = [
1349
+ "num-bigint",
1350
+ "num-integer",
1351
+ "num-traits",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "num-traits"
1356
+ version = "0.2.19"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1359
+ dependencies = [
1360
+ "autocfg",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "objc2-core-foundation"
1365
+ version = "0.3.2"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1368
+ dependencies = [
1369
+ "bitflags",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "objc2-system-configuration"
1374
+ version = "0.3.2"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
1377
+ dependencies = [
1378
+ "objc2-core-foundation",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "once_cell"
1383
+ version = "1.21.4"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1386
+
1387
+ [[package]]
1388
+ name = "openssl-probe"
1389
+ version = "0.2.1"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1392
+
1393
+ [[package]]
1394
+ name = "parking_lot"
1395
+ version = "0.12.5"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1398
+ dependencies = [
1399
+ "lock_api",
1400
+ "parking_lot_core",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "parking_lot_core"
1405
+ version = "0.9.12"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1408
+ dependencies = [
1409
+ "cfg-if",
1410
+ "libc",
1411
+ "redox_syscall",
1412
+ "smallvec",
1413
+ "windows-link",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "parse-display"
1418
+ version = "0.9.1"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "914a1c2265c98e2446911282c6ac86d8524f495792c38c5bd884f80499c7538a"
1421
+ dependencies = [
1422
+ "parse-display-derive",
1423
+ "regex",
1424
+ "regex-syntax",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "parse-display-derive"
1429
+ version = "0.9.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "2ae7800a4c974efd12df917266338e79a7a74415173caf7e70aa0a0707345281"
1432
+ dependencies = [
1433
+ "proc-macro2",
1434
+ "quote",
1435
+ "regex",
1436
+ "regex-syntax",
1437
+ "structmeta",
1438
+ "syn",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "percent-encoding"
1443
+ version = "2.3.2"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1446
+
1447
+ [[package]]
1448
+ name = "phf"
1449
+ version = "0.13.1"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1452
+ dependencies = [
1453
+ "phf_shared",
1454
+ "serde",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "phf_shared"
1459
+ version = "0.13.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1462
+ dependencies = [
1463
+ "siphasher",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "pin-project"
1468
+ version = "1.1.13"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
1471
+ dependencies = [
1472
+ "pin-project-internal",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "pin-project-internal"
1477
+ version = "1.1.13"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
1480
+ dependencies = [
1481
+ "proc-macro2",
1482
+ "quote",
1483
+ "syn",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "pin-project-lite"
1488
+ version = "0.2.17"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1491
+
1492
+ [[package]]
1493
+ name = "pkg-config"
1494
+ version = "0.3.33"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1497
+
1498
+ [[package]]
1499
+ name = "portable-atomic"
1500
+ version = "1.13.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1503
+
1504
+ [[package]]
1505
+ name = "postgres"
1506
+ version = "0.19.14"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "33ad20e0aa0b24f5a394eab4f78c781d248982b22b25cecc7e3aa46a681605bd"
1509
+ dependencies = [
1510
+ "bytes",
1511
+ "fallible-iterator 0.2.0",
1512
+ "futures-util",
1513
+ "log",
1514
+ "tokio",
1515
+ "tokio-postgres",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "postgres-protocol"
1520
+ version = "0.6.12"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "08808e3c483c46e999108051c78334f473d5adb59d78bb80a1268c7e6aa6c514"
1523
+ dependencies = [
1524
+ "base64",
1525
+ "byteorder",
1526
+ "bytes",
1527
+ "fallible-iterator 0.2.0",
1528
+ "hmac",
1529
+ "md-5",
1530
+ "memchr",
1531
+ "rand 0.10.1",
1532
+ "sha2",
1533
+ "stringprep",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "postgres-types"
1538
+ version = "0.2.14"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "851ca9db4932932d69f3ea811b1abe63087a0f740a47692619dd40d4899b68be"
1541
+ dependencies = [
1542
+ "bytes",
1543
+ "chrono",
1544
+ "fallible-iterator 0.2.0",
1545
+ "postgres-protocol",
1546
+ "serde_core",
1547
+ "serde_json",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "potential_utf"
1552
+ version = "0.1.5"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1555
+ dependencies = [
1556
+ "zerovec",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "powerfmt"
1561
+ version = "0.2.0"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1564
+
1565
+ [[package]]
1566
+ name = "ppv-lite86"
1567
+ version = "0.2.21"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1570
+ dependencies = [
1571
+ "zerocopy",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "proc-macro2"
1576
+ version = "1.0.106"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1579
+ dependencies = [
1580
+ "unicode-ident",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "prost"
1585
+ version = "0.14.4"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
1588
+ dependencies = [
1589
+ "bytes",
1590
+ "prost-derive",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "prost-derive"
1595
+ version = "0.14.4"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
1598
+ dependencies = [
1599
+ "anyhow",
1600
+ "itertools",
1601
+ "proc-macro2",
1602
+ "quote",
1603
+ "syn",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "prost-types"
1608
+ version = "0.14.4"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
1611
+ dependencies = [
1612
+ "prost",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "pyo3"
1617
+ version = "0.29.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1620
+ dependencies = [
1621
+ "libc",
1622
+ "once_cell",
1623
+ "portable-atomic",
1624
+ "pyo3-build-config",
1625
+ "pyo3-ffi",
1626
+ "pyo3-macros",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "pyo3-build-config"
1631
+ version = "0.29.0"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1634
+ dependencies = [
1635
+ "target-lexicon",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "pyo3-ffi"
1640
+ version = "0.29.0"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1643
+ dependencies = [
1644
+ "libc",
1645
+ "pyo3-build-config",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "pyo3-macros"
1650
+ version = "0.29.0"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1653
+ dependencies = [
1654
+ "proc-macro2",
1655
+ "pyo3-macros-backend",
1656
+ "quote",
1657
+ "syn",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "pyo3-macros-backend"
1662
+ version = "0.29.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1665
+ dependencies = [
1666
+ "heck",
1667
+ "proc-macro2",
1668
+ "quote",
1669
+ "syn",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "pythonize"
1674
+ version = "0.29.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
1677
+ dependencies = [
1678
+ "pyo3",
1679
+ "serde",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "quote"
1684
+ version = "1.0.46"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1687
+ dependencies = [
1688
+ "proc-macro2",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "r-efi"
1693
+ version = "5.3.0"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1696
+
1697
+ [[package]]
1698
+ name = "r-efi"
1699
+ version = "6.0.0"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1702
+
1703
+ [[package]]
1704
+ name = "r2d2"
1705
+ version = "0.8.10"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
1708
+ dependencies = [
1709
+ "log",
1710
+ "parking_lot",
1711
+ "scheduled-thread-pool",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "r2d2_postgres"
1716
+ version = "0.18.2"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "efd4b47636dbca581cd057e2f27a5d39be741ea4f85fd3c29e415c55f71c7595"
1719
+ dependencies = [
1720
+ "postgres",
1721
+ "r2d2",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "rand"
1726
+ version = "0.9.4"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1729
+ dependencies = [
1730
+ "rand_chacha",
1731
+ "rand_core 0.9.5",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "rand"
1736
+ version = "0.10.1"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
1739
+ dependencies = [
1740
+ "chacha20",
1741
+ "getrandom 0.4.3",
1742
+ "rand_core 0.10.1",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "rand_chacha"
1747
+ version = "0.9.0"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1750
+ dependencies = [
1751
+ "ppv-lite86",
1752
+ "rand_core 0.9.5",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "rand_core"
1757
+ version = "0.9.5"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1760
+ dependencies = [
1761
+ "getrandom 0.3.4",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "rand_core"
1766
+ version = "0.10.1"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1769
+
1770
+ [[package]]
1771
+ name = "redox_syscall"
1772
+ version = "0.5.18"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1775
+ dependencies = [
1776
+ "bitflags",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "ref-cast"
1781
+ version = "1.0.25"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1784
+ dependencies = [
1785
+ "ref-cast-impl",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "ref-cast-impl"
1790
+ version = "1.0.25"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1793
+ dependencies = [
1794
+ "proc-macro2",
1795
+ "quote",
1796
+ "syn",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "refinery"
1801
+ version = "0.9.2"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "6e2a344cdb48871e27addeafbbaffab8828cc12cec2b9041119e9bea0c0f551a"
1804
+ dependencies = [
1805
+ "refinery-core",
1806
+ "refinery-macros",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "refinery-core"
1811
+ version = "0.9.2"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "24eeafd893124f29183dd6afa9137a27e7bef59250223b8b660005279c60aea4"
1814
+ dependencies = [
1815
+ "async-trait",
1816
+ "cfg-if",
1817
+ "log",
1818
+ "postgres",
1819
+ "regex",
1820
+ "serde",
1821
+ "siphasher",
1822
+ "thiserror 2.0.18",
1823
+ "time",
1824
+ "toml",
1825
+ "url",
1826
+ "walkdir",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "refinery-macros"
1831
+ version = "0.9.2"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "a90cea6d11a9a4e8a85a884b6305461004101b28ca65dd35ec028e009a898e16"
1834
+ dependencies = [
1835
+ "proc-macro2",
1836
+ "quote",
1837
+ "refinery-core",
1838
+ "regex",
1839
+ "syn",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "regex"
1844
+ version = "1.12.4"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1847
+ dependencies = [
1848
+ "aho-corasick",
1849
+ "memchr",
1850
+ "regex-automata",
1851
+ "regex-syntax",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "regex-automata"
1856
+ version = "0.4.14"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1859
+ dependencies = [
1860
+ "aho-corasick",
1861
+ "memchr",
1862
+ "regex-syntax",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "regex-syntax"
1867
+ version = "0.8.11"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1870
+
1871
+ [[package]]
1872
+ name = "ring"
1873
+ version = "0.17.14"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1876
+ dependencies = [
1877
+ "cc",
1878
+ "cfg-if",
1879
+ "getrandom 0.2.17",
1880
+ "libc",
1881
+ "untrusted",
1882
+ "windows-sys 0.52.0",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "rusqlite"
1887
+ version = "0.31.0"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
1890
+ dependencies = [
1891
+ "bitflags",
1892
+ "fallible-iterator 0.3.0",
1893
+ "fallible-streaming-iterator",
1894
+ "hashlink",
1895
+ "libsqlite3-sys",
1896
+ "smallvec",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "rustc-hash"
1901
+ version = "2.1.2"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1904
+
1905
+ [[package]]
1906
+ name = "rustix"
1907
+ version = "1.1.4"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1910
+ dependencies = [
1911
+ "bitflags",
1912
+ "errno",
1913
+ "libc",
1914
+ "linux-raw-sys",
1915
+ "windows-sys 0.61.2",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "rustls"
1920
+ version = "0.23.41"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
1923
+ dependencies = [
1924
+ "log",
1925
+ "once_cell",
1926
+ "ring",
1927
+ "rustls-pki-types",
1928
+ "rustls-webpki",
1929
+ "subtle",
1930
+ "zeroize",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "rustls-native-certs"
1935
+ version = "0.8.4"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
1938
+ dependencies = [
1939
+ "openssl-probe",
1940
+ "rustls-pki-types",
1941
+ "schannel",
1942
+ "security-framework",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "rustls-pki-types"
1947
+ version = "1.14.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1950
+ dependencies = [
1951
+ "zeroize",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "rustls-webpki"
1956
+ version = "0.103.13"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1959
+ dependencies = [
1960
+ "ring",
1961
+ "rustls-pki-types",
1962
+ "untrusted",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "rustversion"
1967
+ version = "1.0.22"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1970
+
1971
+ [[package]]
1972
+ name = "ryu"
1973
+ version = "1.0.23"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1976
+
1977
+ [[package]]
1978
+ name = "same-file"
1979
+ version = "1.0.6"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1982
+ dependencies = [
1983
+ "winapi-util",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "schannel"
1988
+ version = "0.1.29"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1991
+ dependencies = [
1992
+ "windows-sys 0.61.2",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "scheduled-thread-pool"
1997
+ version = "0.2.7"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
2000
+ dependencies = [
2001
+ "parking_lot",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "schemars"
2006
+ version = "0.9.0"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
2009
+ dependencies = [
2010
+ "dyn-clone",
2011
+ "ref-cast",
2012
+ "serde",
2013
+ "serde_json",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "schemars"
2018
+ version = "1.2.1"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2021
+ dependencies = [
2022
+ "dyn-clone",
2023
+ "ref-cast",
2024
+ "serde",
2025
+ "serde_json",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "scopeguard"
2030
+ version = "1.2.0"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2033
+
2034
+ [[package]]
2035
+ name = "security-framework"
2036
+ version = "3.7.0"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2039
+ dependencies = [
2040
+ "bitflags",
2041
+ "core-foundation",
2042
+ "core-foundation-sys",
2043
+ "libc",
2044
+ "security-framework-sys",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "security-framework-sys"
2049
+ version = "2.17.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2052
+ dependencies = [
2053
+ "core-foundation-sys",
2054
+ "libc",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "serde"
2059
+ version = "1.0.228"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2062
+ dependencies = [
2063
+ "serde_core",
2064
+ "serde_derive",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "serde_core"
2069
+ version = "1.0.228"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2072
+ dependencies = [
2073
+ "serde_derive",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "serde_derive"
2078
+ version = "1.0.228"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2081
+ dependencies = [
2082
+ "proc-macro2",
2083
+ "quote",
2084
+ "syn",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "serde_json"
2089
+ version = "1.0.150"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2092
+ dependencies = [
2093
+ "itoa",
2094
+ "memchr",
2095
+ "serde",
2096
+ "serde_core",
2097
+ "zmij",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "serde_repr"
2102
+ version = "0.1.20"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2105
+ dependencies = [
2106
+ "proc-macro2",
2107
+ "quote",
2108
+ "syn",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "serde_spanned"
2113
+ version = "1.1.1"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2116
+ dependencies = [
2117
+ "serde_core",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "serde_urlencoded"
2122
+ version = "0.7.1"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2125
+ dependencies = [
2126
+ "form_urlencoded",
2127
+ "itoa",
2128
+ "ryu",
2129
+ "serde",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "serde_with"
2134
+ version = "3.21.0"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
2137
+ dependencies = [
2138
+ "base64",
2139
+ "bs58",
2140
+ "chrono",
2141
+ "hex",
2142
+ "indexmap 1.9.3",
2143
+ "indexmap 2.14.0",
2144
+ "schemars 0.9.0",
2145
+ "schemars 1.2.1",
2146
+ "serde_core",
2147
+ "serde_json",
2148
+ "serde_with_macros",
2149
+ "time",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "serde_with_macros"
2154
+ version = "3.21.0"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
2157
+ dependencies = [
2158
+ "darling",
2159
+ "proc-macro2",
2160
+ "quote",
2161
+ "syn",
2162
+ ]
2163
+
2164
+ [[package]]
2165
+ name = "sha2"
2166
+ version = "0.11.0"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2169
+ dependencies = [
2170
+ "cfg-if",
2171
+ "cpufeatures",
2172
+ "digest",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "shlex"
2177
+ version = "2.0.1"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2180
+
2181
+ [[package]]
2182
+ name = "signal-hook"
2183
+ version = "0.4.4"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d"
2186
+ dependencies = [
2187
+ "libc",
2188
+ "signal-hook-registry",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "signal-hook-registry"
2193
+ version = "1.4.8"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2196
+ dependencies = [
2197
+ "errno",
2198
+ "libc",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "siphasher"
2203
+ version = "1.0.3"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2206
+
2207
+ [[package]]
2208
+ name = "slab"
2209
+ version = "0.4.12"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2212
+
2213
+ [[package]]
2214
+ name = "smallvec"
2215
+ version = "1.15.2"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2218
+
2219
+ [[package]]
2220
+ name = "socket2"
2221
+ version = "0.6.4"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2224
+ dependencies = [
2225
+ "libc",
2226
+ "windows-sys 0.61.2",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "stable_deref_trait"
2231
+ version = "1.2.1"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2234
+
2235
+ [[package]]
2236
+ name = "stringprep"
2237
+ version = "0.1.5"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2240
+ dependencies = [
2241
+ "unicode-bidi",
2242
+ "unicode-normalization",
2243
+ "unicode-properties",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "strsim"
2248
+ version = "0.11.1"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2251
+
2252
+ [[package]]
2253
+ name = "structmeta"
2254
+ version = "0.3.0"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329"
2257
+ dependencies = [
2258
+ "proc-macro2",
2259
+ "quote",
2260
+ "structmeta-derive",
2261
+ "syn",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "structmeta-derive"
2266
+ version = "0.3.0"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc"
2269
+ dependencies = [
2270
+ "proc-macro2",
2271
+ "quote",
2272
+ "syn",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "subtle"
2277
+ version = "2.6.1"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2280
+
2281
+ [[package]]
2282
+ name = "syn"
2283
+ version = "2.0.118"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2286
+ dependencies = [
2287
+ "proc-macro2",
2288
+ "quote",
2289
+ "unicode-ident",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "sync_wrapper"
2294
+ version = "1.0.2"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2297
+
2298
+ [[package]]
2299
+ name = "synstructure"
2300
+ version = "0.13.2"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2303
+ dependencies = [
2304
+ "proc-macro2",
2305
+ "quote",
2306
+ "syn",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "target-lexicon"
2311
+ version = "0.13.5"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2314
+
2315
+ [[package]]
2316
+ name = "tempfile"
2317
+ version = "3.27.0"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2320
+ dependencies = [
2321
+ "fastrand",
2322
+ "getrandom 0.4.3",
2323
+ "once_cell",
2324
+ "rustix",
2325
+ "windows-sys 0.61.2",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "testcontainers"
2330
+ version = "0.27.3"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "bfd5785b5483672915ed5fe3cddf9f546802779fc1eceff0a6fb7321fac81c1e"
2333
+ dependencies = [
2334
+ "astral-tokio-tar",
2335
+ "async-trait",
2336
+ "bollard",
2337
+ "bytes",
2338
+ "conquer-once",
2339
+ "docker_credential",
2340
+ "either",
2341
+ "etcetera",
2342
+ "ferroid",
2343
+ "futures",
2344
+ "http",
2345
+ "itertools",
2346
+ "log",
2347
+ "memchr",
2348
+ "parse-display",
2349
+ "pin-project-lite",
2350
+ "serde",
2351
+ "serde_json",
2352
+ "serde_with",
2353
+ "signal-hook",
2354
+ "thiserror 2.0.18",
2355
+ "tokio",
2356
+ "tokio-stream",
2357
+ "tokio-util",
2358
+ "url",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "testcontainers-modules"
2363
+ version = "0.15.0"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "e5985fde5befe4ffa77a052e035e16c2da86e8bae301baa9f9904ad3c494d357"
2366
+ dependencies = [
2367
+ "testcontainers",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "thiserror"
2372
+ version = "1.0.69"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2375
+ dependencies = [
2376
+ "thiserror-impl 1.0.69",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "thiserror"
2381
+ version = "2.0.18"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2384
+ dependencies = [
2385
+ "thiserror-impl 2.0.18",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "thiserror-impl"
2390
+ version = "1.0.69"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2393
+ dependencies = [
2394
+ "proc-macro2",
2395
+ "quote",
2396
+ "syn",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "thiserror-impl"
2401
+ version = "2.0.18"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2404
+ dependencies = [
2405
+ "proc-macro2",
2406
+ "quote",
2407
+ "syn",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "time"
2412
+ version = "0.3.51"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "85c17d80feb7334b40c484e45ed1a5273dfd8bfda537c3be2e74a06a6686f327"
2415
+ dependencies = [
2416
+ "deranged",
2417
+ "num-conv",
2418
+ "powerfmt",
2419
+ "serde_core",
2420
+ "time-core",
2421
+ "time-macros",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "time-core"
2426
+ version = "0.1.9"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2429
+
2430
+ [[package]]
2431
+ name = "time-macros"
2432
+ version = "0.2.30"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "dcef1a61bdb119096e153208ec5cbec23944ce8bca13be5c7f60c634f7403935"
2435
+ dependencies = [
2436
+ "num-conv",
2437
+ "time-core",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "tinystr"
2442
+ version = "0.8.3"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2445
+ dependencies = [
2446
+ "displaydoc",
2447
+ "zerovec",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "tinyvec"
2452
+ version = "1.11.0"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2455
+ dependencies = [
2456
+ "tinyvec_macros",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "tinyvec_macros"
2461
+ version = "0.1.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2464
+
2465
+ [[package]]
2466
+ name = "tokio"
2467
+ version = "1.52.3"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2470
+ dependencies = [
2471
+ "bytes",
2472
+ "libc",
2473
+ "mio",
2474
+ "pin-project-lite",
2475
+ "signal-hook-registry",
2476
+ "socket2",
2477
+ "tokio-macros",
2478
+ "windows-sys 0.61.2",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "tokio-macros"
2483
+ version = "2.7.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2486
+ dependencies = [
2487
+ "proc-macro2",
2488
+ "quote",
2489
+ "syn",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "tokio-postgres"
2494
+ version = "0.7.18"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "a528f7d280f6d5b9cd149635c8705b0dd049754bc67d81d31fa25169a93809d3"
2497
+ dependencies = [
2498
+ "async-trait",
2499
+ "byteorder",
2500
+ "bytes",
2501
+ "fallible-iterator 0.2.0",
2502
+ "futures-channel",
2503
+ "futures-util",
2504
+ "log",
2505
+ "parking_lot",
2506
+ "percent-encoding",
2507
+ "phf",
2508
+ "pin-project-lite",
2509
+ "postgres-protocol",
2510
+ "postgres-types",
2511
+ "rand 0.10.1",
2512
+ "socket2",
2513
+ "tokio",
2514
+ "tokio-util",
2515
+ "whoami",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "tokio-rustls"
2520
+ version = "0.26.4"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2523
+ dependencies = [
2524
+ "rustls",
2525
+ "tokio",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "tokio-stream"
2530
+ version = "0.1.18"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2533
+ dependencies = [
2534
+ "futures-core",
2535
+ "pin-project-lite",
2536
+ "tokio",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "tokio-util"
2541
+ version = "0.7.18"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2544
+ dependencies = [
2545
+ "bytes",
2546
+ "futures-core",
2547
+ "futures-sink",
2548
+ "pin-project-lite",
2549
+ "tokio",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "toml"
2554
+ version = "1.1.2+spec-1.1.0"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
2557
+ dependencies = [
2558
+ "indexmap 2.14.0",
2559
+ "serde_core",
2560
+ "serde_spanned",
2561
+ "toml_datetime",
2562
+ "toml_parser",
2563
+ "toml_writer",
2564
+ "winnow",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "toml_datetime"
2569
+ version = "1.1.1+spec-1.1.0"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2572
+ dependencies = [
2573
+ "serde_core",
2574
+ ]
2575
+
2576
+ [[package]]
2577
+ name = "toml_parser"
2578
+ version = "1.1.2+spec-1.1.0"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2581
+ dependencies = [
2582
+ "winnow",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "toml_writer"
2587
+ version = "1.1.1+spec-1.1.0"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2590
+
2591
+ [[package]]
2592
+ name = "tonic"
2593
+ version = "0.14.6"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef"
2596
+ dependencies = [
2597
+ "async-trait",
2598
+ "axum",
2599
+ "base64",
2600
+ "bytes",
2601
+ "h2",
2602
+ "http",
2603
+ "http-body",
2604
+ "http-body-util",
2605
+ "hyper",
2606
+ "hyper-timeout",
2607
+ "hyper-util",
2608
+ "percent-encoding",
2609
+ "pin-project",
2610
+ "socket2",
2611
+ "sync_wrapper",
2612
+ "tokio",
2613
+ "tokio-stream",
2614
+ "tower",
2615
+ "tower-layer",
2616
+ "tower-service",
2617
+ "tracing",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "tonic-prost"
2622
+ version = "0.14.6"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
2625
+ dependencies = [
2626
+ "bytes",
2627
+ "prost",
2628
+ "tonic",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "tower"
2633
+ version = "0.5.3"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2636
+ dependencies = [
2637
+ "futures-core",
2638
+ "futures-util",
2639
+ "indexmap 2.14.0",
2640
+ "pin-project-lite",
2641
+ "slab",
2642
+ "sync_wrapper",
2643
+ "tokio",
2644
+ "tokio-util",
2645
+ "tower-layer",
2646
+ "tower-service",
2647
+ "tracing",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "tower-layer"
2652
+ version = "0.3.3"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2655
+
2656
+ [[package]]
2657
+ name = "tower-service"
2658
+ version = "0.3.3"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2661
+
2662
+ [[package]]
2663
+ name = "tracing"
2664
+ version = "0.1.44"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2667
+ dependencies = [
2668
+ "pin-project-lite",
2669
+ "tracing-attributes",
2670
+ "tracing-core",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "tracing-attributes"
2675
+ version = "0.1.31"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2678
+ dependencies = [
2679
+ "proc-macro2",
2680
+ "quote",
2681
+ "syn",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "tracing-core"
2686
+ version = "0.1.36"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2689
+ dependencies = [
2690
+ "once_cell",
2691
+ ]
2692
+
2693
+ [[package]]
2694
+ name = "try-lock"
2695
+ version = "0.2.5"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2698
+
2699
+ [[package]]
2700
+ name = "typenum"
2701
+ version = "1.20.1"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2704
+
2705
+ [[package]]
2706
+ name = "unicode-bidi"
2707
+ version = "0.3.18"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2710
+
2711
+ [[package]]
2712
+ name = "unicode-ident"
2713
+ version = "1.0.24"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2716
+
2717
+ [[package]]
2718
+ name = "unicode-normalization"
2719
+ version = "0.1.25"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2722
+ dependencies = [
2723
+ "tinyvec",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "unicode-properties"
2728
+ version = "0.1.4"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2731
+
2732
+ [[package]]
2733
+ name = "untrusted"
2734
+ version = "0.9.0"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2737
+
2738
+ [[package]]
2739
+ name = "ureq"
2740
+ version = "3.3.0"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
2743
+ dependencies = [
2744
+ "base64",
2745
+ "log",
2746
+ "percent-encoding",
2747
+ "rustls",
2748
+ "rustls-pki-types",
2749
+ "ureq-proto",
2750
+ "utf8-zero",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "ureq-proto"
2755
+ version = "0.6.0"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
2758
+ dependencies = [
2759
+ "base64",
2760
+ "http",
2761
+ "httparse",
2762
+ "log",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "url"
2767
+ version = "2.5.8"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2770
+ dependencies = [
2771
+ "form_urlencoded",
2772
+ "idna",
2773
+ "percent-encoding",
2774
+ "serde",
2775
+ "serde_derive",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "utf8-zero"
2780
+ version = "0.8.1"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2783
+
2784
+ [[package]]
2785
+ name = "utf8_iter"
2786
+ version = "1.0.4"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2789
+
2790
+ [[package]]
2791
+ name = "uuid"
2792
+ version = "1.23.3"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
2795
+ dependencies = [
2796
+ "getrandom 0.4.3",
2797
+ "js-sys",
2798
+ "serde_core",
2799
+ "wasm-bindgen",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "vcpkg"
2804
+ version = "0.2.15"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2807
+
2808
+ [[package]]
2809
+ name = "version_check"
2810
+ version = "0.9.5"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2813
+
2814
+ [[package]]
2815
+ name = "walkdir"
2816
+ version = "2.5.0"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2819
+ dependencies = [
2820
+ "same-file",
2821
+ "winapi-util",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "want"
2826
+ version = "0.3.1"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2829
+ dependencies = [
2830
+ "try-lock",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "wasi"
2835
+ version = "0.11.1+wasi-snapshot-preview1"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2838
+
2839
+ [[package]]
2840
+ name = "wasi"
2841
+ version = "0.14.7+wasi-0.2.4"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
2844
+ dependencies = [
2845
+ "wasip2",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "wasip2"
2850
+ version = "1.0.4+wasi-0.2.12"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2853
+ dependencies = [
2854
+ "wit-bindgen",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "wasite"
2859
+ version = "1.0.2"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
2862
+ dependencies = [
2863
+ "wasi 0.14.7+wasi-0.2.4",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "wasm-bindgen"
2868
+ version = "0.2.125"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
2871
+ dependencies = [
2872
+ "cfg-if",
2873
+ "once_cell",
2874
+ "rustversion",
2875
+ "wasm-bindgen-macro",
2876
+ "wasm-bindgen-shared",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "wasm-bindgen-macro"
2881
+ version = "0.2.125"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
2884
+ dependencies = [
2885
+ "quote",
2886
+ "wasm-bindgen-macro-support",
2887
+ ]
2888
+
2889
+ [[package]]
2890
+ name = "wasm-bindgen-macro-support"
2891
+ version = "0.2.125"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
2894
+ dependencies = [
2895
+ "bumpalo",
2896
+ "proc-macro2",
2897
+ "quote",
2898
+ "syn",
2899
+ "wasm-bindgen-shared",
2900
+ ]
2901
+
2902
+ [[package]]
2903
+ name = "wasm-bindgen-shared"
2904
+ version = "0.2.125"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
2907
+ dependencies = [
2908
+ "unicode-ident",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "web-sys"
2913
+ version = "0.3.102"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
2916
+ dependencies = [
2917
+ "js-sys",
2918
+ "wasm-bindgen",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "web-time"
2923
+ version = "1.1.0"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2926
+ dependencies = [
2927
+ "js-sys",
2928
+ "wasm-bindgen",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "whoami"
2933
+ version = "2.1.2"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
2936
+ dependencies = [
2937
+ "libc",
2938
+ "libredox",
2939
+ "objc2-system-configuration",
2940
+ "wasite",
2941
+ "web-sys",
2942
+ ]
2943
+
2944
+ [[package]]
2945
+ name = "winapi"
2946
+ version = "0.3.9"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2949
+ dependencies = [
2950
+ "winapi-i686-pc-windows-gnu",
2951
+ "winapi-x86_64-pc-windows-gnu",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "winapi-i686-pc-windows-gnu"
2956
+ version = "0.4.0"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2959
+
2960
+ [[package]]
2961
+ name = "winapi-util"
2962
+ version = "0.1.11"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2965
+ dependencies = [
2966
+ "windows-sys 0.61.2",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "winapi-x86_64-pc-windows-gnu"
2971
+ version = "0.4.0"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2974
+
2975
+ [[package]]
2976
+ name = "windows-core"
2977
+ version = "0.62.2"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2980
+ dependencies = [
2981
+ "windows-implement",
2982
+ "windows-interface",
2983
+ "windows-link",
2984
+ "windows-result",
2985
+ "windows-strings",
2986
+ ]
2987
+
2988
+ [[package]]
2989
+ name = "windows-implement"
2990
+ version = "0.60.2"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2993
+ dependencies = [
2994
+ "proc-macro2",
2995
+ "quote",
2996
+ "syn",
2997
+ ]
2998
+
2999
+ [[package]]
3000
+ name = "windows-interface"
3001
+ version = "0.59.3"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3004
+ dependencies = [
3005
+ "proc-macro2",
3006
+ "quote",
3007
+ "syn",
3008
+ ]
3009
+
3010
+ [[package]]
3011
+ name = "windows-link"
3012
+ version = "0.2.1"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3015
+
3016
+ [[package]]
3017
+ name = "windows-result"
3018
+ version = "0.4.1"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3021
+ dependencies = [
3022
+ "windows-link",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "windows-strings"
3027
+ version = "0.5.1"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3030
+ dependencies = [
3031
+ "windows-link",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "windows-sys"
3036
+ version = "0.52.0"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3039
+ dependencies = [
3040
+ "windows-targets",
3041
+ ]
3042
+
3043
+ [[package]]
3044
+ name = "windows-sys"
3045
+ version = "0.61.2"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3048
+ dependencies = [
3049
+ "windows-link",
3050
+ ]
3051
+
3052
+ [[package]]
3053
+ name = "windows-targets"
3054
+ version = "0.52.6"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3057
+ dependencies = [
3058
+ "windows_aarch64_gnullvm",
3059
+ "windows_aarch64_msvc",
3060
+ "windows_i686_gnu",
3061
+ "windows_i686_gnullvm",
3062
+ "windows_i686_msvc",
3063
+ "windows_x86_64_gnu",
3064
+ "windows_x86_64_gnullvm",
3065
+ "windows_x86_64_msvc",
3066
+ ]
3067
+
3068
+ [[package]]
3069
+ name = "windows_aarch64_gnullvm"
3070
+ version = "0.52.6"
3071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3073
+
3074
+ [[package]]
3075
+ name = "windows_aarch64_msvc"
3076
+ version = "0.52.6"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3079
+
3080
+ [[package]]
3081
+ name = "windows_i686_gnu"
3082
+ version = "0.52.6"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3085
+
3086
+ [[package]]
3087
+ name = "windows_i686_gnullvm"
3088
+ version = "0.52.6"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3091
+
3092
+ [[package]]
3093
+ name = "windows_i686_msvc"
3094
+ version = "0.52.6"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3097
+
3098
+ [[package]]
3099
+ name = "windows_x86_64_gnu"
3100
+ version = "0.52.6"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3103
+
3104
+ [[package]]
3105
+ name = "windows_x86_64_gnullvm"
3106
+ version = "0.52.6"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3109
+
3110
+ [[package]]
3111
+ name = "windows_x86_64_msvc"
3112
+ version = "0.52.6"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3115
+
3116
+ [[package]]
3117
+ name = "winnow"
3118
+ version = "1.0.3"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
3121
+
3122
+ [[package]]
3123
+ name = "wit-bindgen"
3124
+ version = "0.57.1"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3127
+
3128
+ [[package]]
3129
+ name = "writeable"
3130
+ version = "0.6.3"
3131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3132
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3133
+
3134
+ [[package]]
3135
+ name = "xattr"
3136
+ version = "1.6.1"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3139
+ dependencies = [
3140
+ "libc",
3141
+ "rustix",
3142
+ ]
3143
+
3144
+ [[package]]
3145
+ name = "yoke"
3146
+ version = "0.8.3"
3147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3148
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3149
+ dependencies = [
3150
+ "stable_deref_trait",
3151
+ "yoke-derive",
3152
+ "zerofrom",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "yoke-derive"
3157
+ version = "0.8.2"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3160
+ dependencies = [
3161
+ "proc-macro2",
3162
+ "quote",
3163
+ "syn",
3164
+ "synstructure",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "zerocopy"
3169
+ version = "0.8.52"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
3172
+ dependencies = [
3173
+ "zerocopy-derive",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "zerocopy-derive"
3178
+ version = "0.8.52"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
3181
+ dependencies = [
3182
+ "proc-macro2",
3183
+ "quote",
3184
+ "syn",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "zerofrom"
3189
+ version = "0.1.8"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3192
+ dependencies = [
3193
+ "zerofrom-derive",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "zerofrom-derive"
3198
+ version = "0.1.7"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3201
+ dependencies = [
3202
+ "proc-macro2",
3203
+ "quote",
3204
+ "syn",
3205
+ "synstructure",
3206
+ ]
3207
+
3208
+ [[package]]
3209
+ name = "zeroize"
3210
+ version = "1.9.0"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3213
+
3214
+ [[package]]
3215
+ name = "zerotrie"
3216
+ version = "0.2.4"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3219
+ dependencies = [
3220
+ "displaydoc",
3221
+ "yoke",
3222
+ "zerofrom",
3223
+ ]
3224
+
3225
+ [[package]]
3226
+ name = "zerovec"
3227
+ version = "0.11.6"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3230
+ dependencies = [
3231
+ "yoke",
3232
+ "zerofrom",
3233
+ "zerovec-derive",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "zerovec-derive"
3238
+ version = "0.11.3"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3241
+ dependencies = [
3242
+ "proc-macro2",
3243
+ "quote",
3244
+ "syn",
3245
+ ]
3246
+
3247
+ [[package]]
3248
+ name = "zmij"
3249
+ version = "1.0.21"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"