keelrun-core 0.1.0__tar.gz

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