fieldloop 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. fieldloop-0.2.0/Cargo.lock +3913 -0
  2. fieldloop-0.2.0/Cargo.toml +59 -0
  3. fieldloop-0.2.0/PKG-INFO +12 -0
  4. fieldloop-0.2.0/crates/fieldloop-capture/Cargo.toml +35 -0
  5. fieldloop-0.2.0/crates/fieldloop-capture/examples/quickstart.rs +21 -0
  6. fieldloop-0.2.0/crates/fieldloop-capture/src/clock.rs +410 -0
  7. fieldloop-0.2.0/crates/fieldloop-capture/src/lib.rs +920 -0
  8. fieldloop-0.2.0/crates/fieldloop-config/Cargo.toml +15 -0
  9. fieldloop-0.2.0/crates/fieldloop-config/examples/embodiment.sample.toml +42 -0
  10. fieldloop-0.2.0/crates/fieldloop-config/src/calibration.rs +57 -0
  11. fieldloop-0.2.0/crates/fieldloop-config/src/embodiment.rs +132 -0
  12. fieldloop-0.2.0/crates/fieldloop-config/src/error.rs +107 -0
  13. fieldloop-0.2.0/crates/fieldloop-config/src/labels.rs +98 -0
  14. fieldloop-0.2.0/crates/fieldloop-config/src/lib.rs +614 -0
  15. fieldloop-0.2.0/crates/fieldloop-config/src/metric.rs +146 -0
  16. fieldloop-0.2.0/crates/fieldloop-curation/Cargo.toml +24 -0
  17. fieldloop-0.2.0/crates/fieldloop-curation/src/lerobot.rs +224 -0
  18. fieldloop-0.2.0/crates/fieldloop-curation/src/lib.rs +934 -0
  19. fieldloop-0.2.0/crates/fieldloop-curation/src/lineage.rs +144 -0
  20. fieldloop-0.2.0/crates/fieldloop-curation/src/slice.rs +376 -0
  21. fieldloop-0.2.0/crates/fieldloop-curation/src/spec.rs +121 -0
  22. fieldloop-0.2.0/crates/fieldloop-import/Cargo.toml +25 -0
  23. fieldloop-0.2.0/crates/fieldloop-import/examples/gen_demo_mcap.rs +190 -0
  24. fieldloop-0.2.0/crates/fieldloop-import/src/doctor.rs +253 -0
  25. fieldloop-0.2.0/crates/fieldloop-import/src/lib.rs +435 -0
  26. fieldloop-0.2.0/crates/fieldloop-import/src/test_util.rs +37 -0
  27. fieldloop-0.2.0/crates/fieldloop-join/Cargo.toml +52 -0
  28. fieldloop-0.2.0/crates/fieldloop-join/examples/quickstart.rs +140 -0
  29. fieldloop-0.2.0/crates/fieldloop-join/src/calibrator.rs +388 -0
  30. fieldloop-0.2.0/crates/fieldloop-join/src/confidence.rs +102 -0
  31. fieldloop-0.2.0/crates/fieldloop-join/src/engine.rs +1443 -0
  32. fieldloop-0.2.0/crates/fieldloop-join/src/lib.rs +48 -0
  33. fieldloop-0.2.0/crates/fieldloop-join/src/worker.rs +775 -0
  34. fieldloop-0.2.0/crates/fieldloop-join/tests/attribution.rs +977 -0
  35. fieldloop-0.2.0/crates/fieldloop-py/Cargo.toml +52 -0
  36. fieldloop-0.2.0/crates/fieldloop-py/README.md +90 -0
  37. fieldloop-0.2.0/crates/fieldloop-py/examples/loop.py +41 -0
  38. fieldloop-0.2.0/crates/fieldloop-py/examples/quickstart.py +27 -0
  39. fieldloop-0.2.0/crates/fieldloop-py/src/attribute.rs +258 -0
  40. fieldloop-0.2.0/crates/fieldloop-py/src/curate.rs +167 -0
  41. fieldloop-0.2.0/crates/fieldloop-py/src/doctor.rs +75 -0
  42. fieldloop-0.2.0/crates/fieldloop-py/src/lib.rs +217 -0
  43. fieldloop-0.2.0/crates/fieldloop-py/src/marshal.rs +524 -0
  44. fieldloop-0.2.0/crates/fieldloop-py/src/trigger.rs +131 -0
  45. fieldloop-0.2.0/crates/fieldloop-py/tests/test_attribute.py +275 -0
  46. fieldloop-0.2.0/crates/fieldloop-py/tests/test_capture.py +100 -0
  47. fieldloop-0.2.0/crates/fieldloop-py/tests/test_cli.py +610 -0
  48. fieldloop-0.2.0/crates/fieldloop-py/tests/test_curate.py +177 -0
  49. fieldloop-0.2.0/crates/fieldloop-py/tests/test_loop_example.py +59 -0
  50. fieldloop-0.2.0/crates/fieldloop-py/tests/test_trigger.py +109 -0
  51. fieldloop-0.2.0/crates/fieldloop-py/uv.lock +2723 -0
  52. fieldloop-0.2.0/crates/fieldloop-store/Cargo.toml +52 -0
  53. fieldloop-0.2.0/crates/fieldloop-store/docker-compose.yml +41 -0
  54. fieldloop-0.2.0/crates/fieldloop-store/src/clickhouse/migrations.rs +620 -0
  55. fieldloop-0.2.0/crates/fieldloop-store/src/clickhouse/mod.rs +18 -0
  56. fieldloop-0.2.0/crates/fieldloop-store/src/clickhouse/queries.rs +581 -0
  57. fieldloop-0.2.0/crates/fieldloop-store/src/clickhouse/rows.rs +1317 -0
  58. fieldloop-0.2.0/crates/fieldloop-store/src/lib.rs +36 -0
  59. fieldloop-0.2.0/crates/fieldloop-store/src/live.rs +877 -0
  60. fieldloop-0.2.0/crates/fieldloop-store/src/postgres/migrations.rs +454 -0
  61. fieldloop-0.2.0/crates/fieldloop-store/src/postgres/mod.rs +19 -0
  62. fieldloop-0.2.0/crates/fieldloop-store/src/tenant.rs +454 -0
  63. fieldloop-0.2.0/crates/fieldloop-trigger/Cargo.toml +14 -0
  64. fieldloop-0.2.0/crates/fieldloop-trigger/src/broker.rs +205 -0
  65. fieldloop-0.2.0/crates/fieldloop-trigger/src/cycle.rs +106 -0
  66. fieldloop-0.2.0/crates/fieldloop-trigger/src/detector.rs +329 -0
  67. fieldloop-0.2.0/crates/fieldloop-trigger/src/lib.rs +415 -0
  68. fieldloop-0.2.0/crates/fieldloop-trigger/src/review.rs +193 -0
  69. fieldloop-0.2.0/crates/fieldloop-types/Cargo.toml +15 -0
  70. fieldloop-0.2.0/crates/fieldloop-types/README.md +54 -0
  71. fieldloop-0.2.0/crates/fieldloop-types/src/clock.rs +98 -0
  72. fieldloop-0.2.0/crates/fieldloop-types/src/feedback.rs +373 -0
  73. fieldloop-0.2.0/crates/fieldloop-types/src/ids.rs +163 -0
  74. fieldloop-0.2.0/crates/fieldloop-types/src/lib.rs +225 -0
  75. fieldloop-0.2.0/crates/fieldloop-types/src/outcome.rs +267 -0
  76. fieldloop-0.2.0/crates/fieldloop-types/src/payload.rs +99 -0
  77. fieldloop-0.2.0/crates/fieldloop-types/src/policy.rs +104 -0
  78. fieldloop-0.2.0/crates/fieldloop-types/src/pose.rs +123 -0
  79. fieldloop-0.2.0/crates/fieldloop-types/src/rollout.rs +444 -0
  80. fieldloop-0.2.0/crates/fieldloop-types/src/tenant.rs +92 -0
  81. fieldloop-0.2.0/pyproject.toml +52 -0
  82. fieldloop-0.2.0/python/fieldloop/__init__.py +41 -0
  83. fieldloop-0.2.0/python/fieldloop/_cli.py +486 -0
  84. fieldloop-0.2.0/python/fieldloop/_demo.py +267 -0
  85. fieldloop-0.2.0/python/fieldloop/_lerobot.py +177 -0
  86. fieldloop-0.2.0/python/fieldloop/_native.pyi +154 -0
  87. fieldloop-0.2.0/python/fieldloop/_report.py +114 -0
  88. fieldloop-0.2.0/python/fieldloop/_viz.py +75 -0
  89. fieldloop-0.2.0/python/fieldloop/data/demo-skew.mcap +0 -0
  90. fieldloop-0.2.0/python/fieldloop/data/demo.map.toml +33 -0
  91. fieldloop-0.2.0/python/fieldloop/data/demo.mcap +0 -0
  92. fieldloop-0.2.0/python/fieldloop/data/embodiment.sample.toml +42 -0
  93. fieldloop-0.2.0/python/fieldloop/py.typed +0 -0
@@ -0,0 +1,3913 @@
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 = "anyhow"
22
+ version = "1.0.102"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
25
+
26
+ [[package]]
27
+ name = "array-init"
28
+ version = "2.1.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
31
+
32
+ [[package]]
33
+ name = "async-nats"
34
+ version = "0.38.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "76433c4de73442daedb3a59e991d94e85c14ebfc33db53dfcd347a21cd6ef4f8"
37
+ dependencies = [
38
+ "base64",
39
+ "bytes",
40
+ "futures",
41
+ "memchr",
42
+ "nkeys",
43
+ "nuid",
44
+ "once_cell",
45
+ "pin-project",
46
+ "portable-atomic",
47
+ "rand 0.8.6",
48
+ "regex",
49
+ "ring",
50
+ "rustls-native-certs 0.7.3",
51
+ "rustls-pemfile",
52
+ "rustls-webpki 0.102.8",
53
+ "serde",
54
+ "serde_json",
55
+ "serde_nanos",
56
+ "serde_repr",
57
+ "thiserror 1.0.69",
58
+ "time",
59
+ "tokio",
60
+ "tokio-rustls 0.26.4",
61
+ "tokio-util",
62
+ "tokio-websockets",
63
+ "tracing",
64
+ "tryhard",
65
+ "url",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "async-trait"
70
+ version = "0.1.89"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
73
+ dependencies = [
74
+ "proc-macro2",
75
+ "quote",
76
+ "syn 2.0.117",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "atomic-waker"
81
+ version = "1.1.2"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
90
+
91
+ [[package]]
92
+ name = "aws-credential-types"
93
+ version = "1.2.14"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "8f20799b373a1be121fe3005fba0c2090af9411573878f224df44b42727fcaf7"
96
+ dependencies = [
97
+ "aws-smithy-async",
98
+ "aws-smithy-runtime-api",
99
+ "aws-smithy-types",
100
+ "zeroize",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "aws-runtime"
105
+ version = "1.7.4"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "77ed8e8c52d2dc2390ad9f15647fe663f71e9780b4262c190fbb823a32721566"
108
+ dependencies = [
109
+ "aws-credential-types",
110
+ "aws-sigv4",
111
+ "aws-smithy-async",
112
+ "aws-smithy-eventstream",
113
+ "aws-smithy-http",
114
+ "aws-smithy-runtime",
115
+ "aws-smithy-runtime-api",
116
+ "aws-smithy-types",
117
+ "aws-types",
118
+ "bytes",
119
+ "bytes-utils",
120
+ "fastrand",
121
+ "http 0.2.12",
122
+ "http 1.4.1",
123
+ "http-body 0.4.6",
124
+ "http-body 1.0.1",
125
+ "percent-encoding",
126
+ "pin-project-lite",
127
+ "tracing",
128
+ "uuid",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "aws-sdk-s3"
133
+ version = "1.134.0"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "be06bdfdf00371318253d74776567512d1229d1f3cd5546d27d333c89e013b84"
136
+ dependencies = [
137
+ "aws-credential-types",
138
+ "aws-runtime",
139
+ "aws-sigv4",
140
+ "aws-smithy-async",
141
+ "aws-smithy-checksums",
142
+ "aws-smithy-eventstream",
143
+ "aws-smithy-http",
144
+ "aws-smithy-json",
145
+ "aws-smithy-observability",
146
+ "aws-smithy-runtime",
147
+ "aws-smithy-runtime-api",
148
+ "aws-smithy-types",
149
+ "aws-smithy-xml",
150
+ "aws-types",
151
+ "bytes",
152
+ "fastrand",
153
+ "hex",
154
+ "hmac",
155
+ "http 0.2.12",
156
+ "http 1.4.1",
157
+ "http-body 1.0.1",
158
+ "lru",
159
+ "percent-encoding",
160
+ "regex-lite",
161
+ "sha2 0.11.0",
162
+ "tracing",
163
+ "url",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "aws-sigv4"
168
+ version = "1.4.4"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "b7083fb918b38474ac65ffbf8a69fc8792d36879f4ac5f1667b43aec61efe9a5"
171
+ dependencies = [
172
+ "aws-credential-types",
173
+ "aws-smithy-eventstream",
174
+ "aws-smithy-http",
175
+ "aws-smithy-runtime-api",
176
+ "aws-smithy-types",
177
+ "bytes",
178
+ "form_urlencoded",
179
+ "hex",
180
+ "hmac",
181
+ "http 0.2.12",
182
+ "http 1.4.1",
183
+ "percent-encoding",
184
+ "sha2 0.11.0",
185
+ "time",
186
+ "tracing",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "aws-smithy-async"
191
+ version = "1.2.14"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "2ffcaf626bdda484571968400c326a244598634dc75fd451325a54ad1a59acfc"
194
+ dependencies = [
195
+ "futures-util",
196
+ "pin-project-lite",
197
+ "tokio",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "aws-smithy-checksums"
202
+ version = "0.64.8"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "e9e8e65f4f81fcccdeb6c3eca2af17ac21d421a1786a26a394aecf421d616d3a"
205
+ dependencies = [
206
+ "aws-smithy-http",
207
+ "aws-smithy-types",
208
+ "bytes",
209
+ "crc-fast",
210
+ "hex",
211
+ "http 1.4.1",
212
+ "http-body 1.0.1",
213
+ "http-body-util",
214
+ "md-5",
215
+ "pin-project-lite",
216
+ "sha1",
217
+ "sha2 0.11.0",
218
+ "tracing",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "aws-smithy-eventstream"
223
+ version = "0.60.20"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "faf09d74e5e32f76b8762da505a3cd59303e367a664ca67295387baa8c1d7548"
226
+ dependencies = [
227
+ "aws-smithy-types",
228
+ "bytes",
229
+ "crc32fast",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "aws-smithy-http"
234
+ version = "0.63.6"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "ba1ab2dc1c2c3749ead27180d333c42f11be8b0e934058fb4b2258ee8dbe5231"
237
+ dependencies = [
238
+ "aws-smithy-eventstream",
239
+ "aws-smithy-runtime-api",
240
+ "aws-smithy-types",
241
+ "bytes",
242
+ "bytes-utils",
243
+ "futures-core",
244
+ "futures-util",
245
+ "http 1.4.1",
246
+ "http-body 1.0.1",
247
+ "http-body-util",
248
+ "percent-encoding",
249
+ "pin-project-lite",
250
+ "pin-utils",
251
+ "tracing",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "aws-smithy-http-client"
256
+ version = "1.1.13"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "5c3ef8931ad1c98aa6a55b4256f847f3116090819844e0dd41ea682cac5dd2d3"
259
+ dependencies = [
260
+ "aws-smithy-async",
261
+ "aws-smithy-runtime-api",
262
+ "aws-smithy-types",
263
+ "h2 0.3.27",
264
+ "h2 0.4.14",
265
+ "http 0.2.12",
266
+ "http-body 0.4.6",
267
+ "hyper 0.14.32",
268
+ "hyper-rustls 0.24.2",
269
+ "pin-project-lite",
270
+ "rustls 0.21.12",
271
+ "rustls-native-certs 0.8.4",
272
+ "tokio",
273
+ "tracing",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "aws-smithy-json"
278
+ version = "0.62.7"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "701a947f4797e52a911e114a898667c746c39feea467bbd1abd7b3721f702ffa"
281
+ dependencies = [
282
+ "aws-smithy-runtime-api",
283
+ "aws-smithy-schema",
284
+ "aws-smithy-types",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "aws-smithy-observability"
289
+ version = "0.2.6"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "a06c2315d173edbf1920da8ba3a7189695827002e4c0fc961973ab1c54abca9c"
292
+ dependencies = [
293
+ "aws-smithy-runtime-api",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "aws-smithy-runtime"
298
+ version = "1.11.3"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "b8e6f5caf6fea86f8c2206541ab5857cfcda9013426cdbe8fa0098b9e2d32182"
301
+ dependencies = [
302
+ "aws-smithy-async",
303
+ "aws-smithy-http",
304
+ "aws-smithy-http-client",
305
+ "aws-smithy-observability",
306
+ "aws-smithy-runtime-api",
307
+ "aws-smithy-schema",
308
+ "aws-smithy-types",
309
+ "bytes",
310
+ "fastrand",
311
+ "http 0.2.12",
312
+ "http 1.4.1",
313
+ "http-body 0.4.6",
314
+ "http-body 1.0.1",
315
+ "http-body-util",
316
+ "pin-project-lite",
317
+ "pin-utils",
318
+ "tokio",
319
+ "tracing",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "aws-smithy-runtime-api"
324
+ version = "1.12.3"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "9db177daa6ba8afb9ee1aefcf548c907abcf52065e394ee11a92780057fe0e8c"
327
+ dependencies = [
328
+ "aws-smithy-async",
329
+ "aws-smithy-runtime-api-macros",
330
+ "aws-smithy-types",
331
+ "bytes",
332
+ "http 0.2.12",
333
+ "http 1.4.1",
334
+ "pin-project-lite",
335
+ "tokio",
336
+ "tracing",
337
+ "zeroize",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "aws-smithy-runtime-api-macros"
342
+ version = "1.0.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "8d7396fd9500589e62e460e987ecb671bad374934e55ec3b5f498cc7a8a8a7b7"
345
+ dependencies = [
346
+ "proc-macro2",
347
+ "quote",
348
+ "syn 2.0.117",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "aws-smithy-schema"
353
+ version = "0.1.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "7442cb268338f0eb8278140a107c046756aa01093d8ef5e99628d34ae09c94f5"
356
+ dependencies = [
357
+ "aws-smithy-runtime-api",
358
+ "aws-smithy-types",
359
+ "http 1.4.1",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "aws-smithy-types"
364
+ version = "1.4.9"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "53f93074121a1be41317b9aa607143ae17900631f7f59a99f2b905d519d6783b"
367
+ dependencies = [
368
+ "base64-simd",
369
+ "bytes",
370
+ "bytes-utils",
371
+ "futures-core",
372
+ "http 0.2.12",
373
+ "http 1.4.1",
374
+ "http-body 0.4.6",
375
+ "http-body 1.0.1",
376
+ "http-body-util",
377
+ "itoa",
378
+ "num-integer",
379
+ "pin-project-lite",
380
+ "pin-utils",
381
+ "ryu",
382
+ "serde",
383
+ "time",
384
+ "tokio",
385
+ "tokio-util",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "aws-smithy-xml"
390
+ version = "0.60.15"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "0ce02add1aa3677d022f8adf81dcbe3046a95f17a1b1e8979c145cd21d3d22b3"
393
+ dependencies = [
394
+ "xmlparser",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "aws-types"
399
+ version = "1.3.16"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "d16bf10b03a3c01e6b3b7d47cd964e873ffe9e7d4e80fad16bd4c077cb068531"
402
+ dependencies = [
403
+ "aws-credential-types",
404
+ "aws-smithy-async",
405
+ "aws-smithy-runtime-api",
406
+ "aws-smithy-schema",
407
+ "aws-smithy-types",
408
+ "rustc_version",
409
+ "tracing",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "base64"
414
+ version = "0.22.1"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
417
+
418
+ [[package]]
419
+ name = "base64-simd"
420
+ version = "0.8.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
423
+ dependencies = [
424
+ "outref",
425
+ "vsimd",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "base64ct"
430
+ version = "1.8.3"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
433
+
434
+ [[package]]
435
+ name = "bimap"
436
+ version = "0.6.3"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
439
+
440
+ [[package]]
441
+ name = "binrw"
442
+ version = "0.12.1"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "0c1faf7031c34c71da53eec4e070cf90c3b825729e21ca3aab51b20da4a1d1d9"
445
+ dependencies = [
446
+ "array-init",
447
+ "binrw_derive",
448
+ "bytemuck",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "binrw_derive"
453
+ version = "0.12.1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "1c5eb3446e2f5ea7fa9a6f2cb594648c73bf2dbc60eccf3b2fa41834e5449150"
456
+ dependencies = [
457
+ "either",
458
+ "owo-colors",
459
+ "proc-macro2",
460
+ "quote",
461
+ "syn 1.0.109",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "bitflags"
466
+ version = "2.11.1"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
469
+
470
+ [[package]]
471
+ name = "block-buffer"
472
+ version = "0.10.4"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
475
+ dependencies = [
476
+ "generic-array",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "block-buffer"
481
+ version = "0.12.0"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
484
+ dependencies = [
485
+ "hybrid-array",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "bumpalo"
490
+ version = "3.20.3"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
493
+
494
+ [[package]]
495
+ name = "bytemuck"
496
+ version = "1.25.0"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
499
+
500
+ [[package]]
501
+ name = "byteorder"
502
+ version = "1.5.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
505
+
506
+ [[package]]
507
+ name = "bytes"
508
+ version = "1.11.1"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
511
+ dependencies = [
512
+ "serde",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "bytes-utils"
517
+ version = "0.1.4"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
520
+ dependencies = [
521
+ "bytes",
522
+ "either",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "cc"
527
+ version = "1.2.63"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
530
+ dependencies = [
531
+ "find-msvc-tools",
532
+ "jobserver",
533
+ "libc",
534
+ "shlex",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "cfg-if"
539
+ version = "1.0.4"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
542
+
543
+ [[package]]
544
+ name = "cfg_aliases"
545
+ version = "0.2.1"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
548
+
549
+ [[package]]
550
+ name = "chacha20"
551
+ version = "0.10.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
554
+ dependencies = [
555
+ "cfg-if",
556
+ "cpufeatures 0.3.0",
557
+ "rand_core 0.10.1",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "cmov"
562
+ version = "0.5.4"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
565
+
566
+ [[package]]
567
+ name = "const-oid"
568
+ version = "0.9.6"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
571
+
572
+ [[package]]
573
+ name = "const-oid"
574
+ version = "0.10.2"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
577
+
578
+ [[package]]
579
+ name = "core-foundation"
580
+ version = "0.9.4"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
583
+ dependencies = [
584
+ "core-foundation-sys",
585
+ "libc",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "core-foundation"
590
+ version = "0.10.1"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
593
+ dependencies = [
594
+ "core-foundation-sys",
595
+ "libc",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "core-foundation-sys"
600
+ version = "0.8.7"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
603
+
604
+ [[package]]
605
+ name = "cpufeatures"
606
+ version = "0.2.17"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
609
+ dependencies = [
610
+ "libc",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "cpufeatures"
615
+ version = "0.3.0"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
618
+ dependencies = [
619
+ "libc",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "crc-fast"
624
+ version = "1.10.0"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "e75b2483e97a5a7da73ac68a05b629f9c53cff58d8ed1c77866079e18b00dba5"
627
+ dependencies = [
628
+ "digest 0.10.7",
629
+ "spin",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "crc32fast"
634
+ version = "1.5.0"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
637
+ dependencies = [
638
+ "cfg-if",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "crypto-common"
643
+ version = "0.1.7"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
646
+ dependencies = [
647
+ "generic-array",
648
+ "typenum",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "crypto-common"
653
+ version = "0.2.2"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
656
+ dependencies = [
657
+ "hybrid-array",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "ctutils"
662
+ version = "0.4.2"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
665
+ dependencies = [
666
+ "cmov",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "curve25519-dalek"
671
+ version = "4.1.3"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
674
+ dependencies = [
675
+ "cfg-if",
676
+ "cpufeatures 0.2.17",
677
+ "curve25519-dalek-derive",
678
+ "digest 0.10.7",
679
+ "fiat-crypto",
680
+ "rustc_version",
681
+ "subtle",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "curve25519-dalek-derive"
686
+ version = "0.1.1"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
689
+ dependencies = [
690
+ "proc-macro2",
691
+ "quote",
692
+ "syn 2.0.117",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "darling"
697
+ version = "0.21.3"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
700
+ dependencies = [
701
+ "darling_core",
702
+ "darling_macro",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "darling_core"
707
+ version = "0.21.3"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
710
+ dependencies = [
711
+ "fnv",
712
+ "ident_case",
713
+ "proc-macro2",
714
+ "quote",
715
+ "syn 2.0.117",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "darling_macro"
720
+ version = "0.21.3"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
723
+ dependencies = [
724
+ "darling_core",
725
+ "quote",
726
+ "syn 2.0.117",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "data-encoding"
731
+ version = "2.11.0"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
734
+
735
+ [[package]]
736
+ name = "der"
737
+ version = "0.7.10"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
740
+ dependencies = [
741
+ "const-oid 0.9.6",
742
+ "pem-rfc7468",
743
+ "zeroize",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "deranged"
748
+ version = "0.5.8"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
751
+ dependencies = [
752
+ "powerfmt",
753
+ "serde_core",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "digest"
758
+ version = "0.10.7"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
761
+ dependencies = [
762
+ "block-buffer 0.10.4",
763
+ "crypto-common 0.1.7",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "digest"
768
+ version = "0.11.3"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
771
+ dependencies = [
772
+ "block-buffer 0.12.0",
773
+ "const-oid 0.10.2",
774
+ "crypto-common 0.2.2",
775
+ "ctutils",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "displaydoc"
780
+ version = "0.2.6"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
783
+ dependencies = [
784
+ "proc-macro2",
785
+ "quote",
786
+ "syn 2.0.117",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "ed25519"
791
+ version = "2.2.3"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
794
+ dependencies = [
795
+ "signature",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "ed25519-dalek"
800
+ version = "2.2.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
803
+ dependencies = [
804
+ "curve25519-dalek",
805
+ "ed25519",
806
+ "sha2 0.10.9",
807
+ "signature",
808
+ "subtle",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "either"
813
+ version = "1.16.0"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
816
+
817
+ [[package]]
818
+ name = "enumset"
819
+ version = "1.1.13"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "839c4174b41e75c8f7306110b2c51996a293b8d1d850edd529011841d9fede7d"
822
+ dependencies = [
823
+ "enumset_derive",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "enumset_derive"
828
+ version = "0.15.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "4bd536557b58c682b217b8fb199afdff47cd3eff260623f19e77074eb073d63a"
831
+ dependencies = [
832
+ "darling",
833
+ "proc-macro2",
834
+ "quote",
835
+ "syn 2.0.117",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "equivalent"
840
+ version = "1.0.2"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
843
+
844
+ [[package]]
845
+ name = "errno"
846
+ version = "0.3.14"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
849
+ dependencies = [
850
+ "libc",
851
+ "windows-sys 0.61.2",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "fallible-iterator"
856
+ version = "0.2.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
859
+
860
+ [[package]]
861
+ name = "fastrand"
862
+ version = "2.4.1"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
865
+
866
+ [[package]]
867
+ name = "fiat-crypto"
868
+ version = "0.2.9"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
871
+
872
+ [[package]]
873
+ name = "fieldloop-adapter"
874
+ version = "0.2.0"
875
+ dependencies = [
876
+ "fieldloop-config",
877
+ "fieldloop-types",
878
+ "serde",
879
+ "serde_json",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "fieldloop-agent"
884
+ version = "0.2.0"
885
+ dependencies = [
886
+ "aws-sdk-s3",
887
+ "fieldloop-types",
888
+ "reqwest",
889
+ "serde",
890
+ "serde_json",
891
+ "tempfile",
892
+ "tokio",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "fieldloop-capture"
897
+ version = "0.2.0"
898
+ dependencies = [
899
+ "fieldloop-types",
900
+ "libc",
901
+ "serde_json",
902
+ "tempfile",
903
+ "uuid",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "fieldloop-config"
908
+ version = "0.2.0"
909
+ dependencies = [
910
+ "fieldloop-types",
911
+ "serde",
912
+ "serde_path_to_error",
913
+ "thiserror 1.0.69",
914
+ "toml",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "fieldloop-curation"
919
+ version = "0.2.0"
920
+ dependencies = [
921
+ "fieldloop-join",
922
+ "fieldloop-types",
923
+ "serde",
924
+ "serde_json",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "fieldloop-import"
929
+ version = "0.2.0"
930
+ dependencies = [
931
+ "fieldloop-types",
932
+ "mcap",
933
+ "serde",
934
+ "thiserror 1.0.69",
935
+ "toml",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "fieldloop-join"
940
+ version = "0.2.0"
941
+ dependencies = [
942
+ "async-nats",
943
+ "fieldloop-config",
944
+ "fieldloop-store",
945
+ "fieldloop-types",
946
+ "futures",
947
+ "serde",
948
+ "serde_json",
949
+ "tokio",
950
+ "uuid",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "fieldloop-py"
955
+ version = "0.2.0"
956
+ dependencies = [
957
+ "fieldloop-capture",
958
+ "fieldloop-config",
959
+ "fieldloop-curation",
960
+ "fieldloop-import",
961
+ "fieldloop-join",
962
+ "fieldloop-trigger",
963
+ "fieldloop-types",
964
+ "pyo3",
965
+ "uuid",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "fieldloop-recorder"
970
+ version = "0.2.0"
971
+ dependencies = [
972
+ "mcap",
973
+ "tempfile",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "fieldloop-schemaver"
978
+ version = "0.2.0"
979
+ dependencies = [
980
+ "fieldloop-types",
981
+ "serde",
982
+ "serde_json",
983
+ "thiserror 1.0.69",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "fieldloop-store"
988
+ version = "0.2.0"
989
+ dependencies = [
990
+ "fieldloop-types",
991
+ "reqwest",
992
+ "serde",
993
+ "serde_json",
994
+ "thiserror 1.0.69",
995
+ "tokio",
996
+ "tokio-postgres",
997
+ "uuid",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "fieldloop-trigger"
1002
+ version = "0.2.0"
1003
+ dependencies = [
1004
+ "fieldloop-types",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "fieldloop-types"
1009
+ version = "0.2.0"
1010
+ dependencies = [
1011
+ "serde",
1012
+ "serde_json",
1013
+ "thiserror 1.0.69",
1014
+ "uuid",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "find-msvc-tools"
1019
+ version = "0.1.9"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1022
+
1023
+ [[package]]
1024
+ name = "fnv"
1025
+ version = "1.0.7"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1028
+
1029
+ [[package]]
1030
+ name = "foldhash"
1031
+ version = "0.1.5"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1034
+
1035
+ [[package]]
1036
+ name = "foldhash"
1037
+ version = "0.2.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1040
+
1041
+ [[package]]
1042
+ name = "form_urlencoded"
1043
+ version = "1.2.2"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1046
+ dependencies = [
1047
+ "percent-encoding",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "futures"
1052
+ version = "0.3.32"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1055
+ dependencies = [
1056
+ "futures-channel",
1057
+ "futures-core",
1058
+ "futures-executor",
1059
+ "futures-io",
1060
+ "futures-sink",
1061
+ "futures-task",
1062
+ "futures-util",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "futures-channel"
1067
+ version = "0.3.32"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1070
+ dependencies = [
1071
+ "futures-core",
1072
+ "futures-sink",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "futures-core"
1077
+ version = "0.3.32"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1080
+
1081
+ [[package]]
1082
+ name = "futures-executor"
1083
+ version = "0.3.32"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1086
+ dependencies = [
1087
+ "futures-core",
1088
+ "futures-task",
1089
+ "futures-util",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "futures-io"
1094
+ version = "0.3.32"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1097
+
1098
+ [[package]]
1099
+ name = "futures-macro"
1100
+ version = "0.3.32"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1103
+ dependencies = [
1104
+ "proc-macro2",
1105
+ "quote",
1106
+ "syn 2.0.117",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "futures-sink"
1111
+ version = "0.3.32"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1114
+
1115
+ [[package]]
1116
+ name = "futures-task"
1117
+ version = "0.3.32"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1120
+
1121
+ [[package]]
1122
+ name = "futures-util"
1123
+ version = "0.3.32"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1126
+ dependencies = [
1127
+ "futures-channel",
1128
+ "futures-core",
1129
+ "futures-io",
1130
+ "futures-macro",
1131
+ "futures-sink",
1132
+ "futures-task",
1133
+ "memchr",
1134
+ "pin-project-lite",
1135
+ "slab",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "generic-array"
1140
+ version = "0.14.7"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1143
+ dependencies = [
1144
+ "typenum",
1145
+ "version_check",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "getrandom"
1150
+ version = "0.2.17"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1153
+ dependencies = [
1154
+ "cfg-if",
1155
+ "js-sys",
1156
+ "libc",
1157
+ "wasi 0.11.1+wasi-snapshot-preview1",
1158
+ "wasm-bindgen",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "getrandom"
1163
+ version = "0.3.4"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1166
+ dependencies = [
1167
+ "cfg-if",
1168
+ "js-sys",
1169
+ "libc",
1170
+ "r-efi 5.3.0",
1171
+ "wasip2",
1172
+ "wasm-bindgen",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "getrandom"
1177
+ version = "0.4.2"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1180
+ dependencies = [
1181
+ "cfg-if",
1182
+ "libc",
1183
+ "r-efi 6.0.0",
1184
+ "rand_core 0.10.1",
1185
+ "wasip2",
1186
+ "wasip3",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "h2"
1191
+ version = "0.3.27"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1194
+ dependencies = [
1195
+ "bytes",
1196
+ "fnv",
1197
+ "futures-core",
1198
+ "futures-sink",
1199
+ "futures-util",
1200
+ "http 0.2.12",
1201
+ "indexmap",
1202
+ "slab",
1203
+ "tokio",
1204
+ "tokio-util",
1205
+ "tracing",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "h2"
1210
+ version = "0.4.14"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
1213
+ dependencies = [
1214
+ "atomic-waker",
1215
+ "bytes",
1216
+ "fnv",
1217
+ "futures-core",
1218
+ "futures-sink",
1219
+ "http 1.4.1",
1220
+ "indexmap",
1221
+ "slab",
1222
+ "tokio",
1223
+ "tokio-util",
1224
+ "tracing",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "hashbrown"
1229
+ version = "0.15.5"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1232
+ dependencies = [
1233
+ "foldhash 0.1.5",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "hashbrown"
1238
+ version = "0.16.1"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1241
+ dependencies = [
1242
+ "allocator-api2",
1243
+ "equivalent",
1244
+ "foldhash 0.2.0",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "hashbrown"
1249
+ version = "0.17.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1252
+
1253
+ [[package]]
1254
+ name = "heck"
1255
+ version = "0.5.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1258
+
1259
+ [[package]]
1260
+ name = "hermit-abi"
1261
+ version = "0.5.2"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1264
+
1265
+ [[package]]
1266
+ name = "hex"
1267
+ version = "0.4.3"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1270
+
1271
+ [[package]]
1272
+ name = "hmac"
1273
+ version = "0.13.0"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1276
+ dependencies = [
1277
+ "digest 0.11.3",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "http"
1282
+ version = "0.2.12"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1285
+ dependencies = [
1286
+ "bytes",
1287
+ "fnv",
1288
+ "itoa",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "http"
1293
+ version = "1.4.1"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
1296
+ dependencies = [
1297
+ "bytes",
1298
+ "itoa",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "http-body"
1303
+ version = "0.4.6"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1306
+ dependencies = [
1307
+ "bytes",
1308
+ "http 0.2.12",
1309
+ "pin-project-lite",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "http-body"
1314
+ version = "1.0.1"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1317
+ dependencies = [
1318
+ "bytes",
1319
+ "http 1.4.1",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "http-body-util"
1324
+ version = "0.1.3"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1327
+ dependencies = [
1328
+ "bytes",
1329
+ "futures-core",
1330
+ "http 1.4.1",
1331
+ "http-body 1.0.1",
1332
+ "pin-project-lite",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "httparse"
1337
+ version = "1.10.1"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1340
+
1341
+ [[package]]
1342
+ name = "httpdate"
1343
+ version = "1.0.3"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1346
+
1347
+ [[package]]
1348
+ name = "hybrid-array"
1349
+ version = "0.4.12"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
1352
+ dependencies = [
1353
+ "typenum",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "hyper"
1358
+ version = "0.14.32"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1361
+ dependencies = [
1362
+ "bytes",
1363
+ "futures-channel",
1364
+ "futures-core",
1365
+ "futures-util",
1366
+ "h2 0.3.27",
1367
+ "http 0.2.12",
1368
+ "http-body 0.4.6",
1369
+ "httparse",
1370
+ "httpdate",
1371
+ "itoa",
1372
+ "pin-project-lite",
1373
+ "socket2 0.5.10",
1374
+ "tokio",
1375
+ "tower-service",
1376
+ "tracing",
1377
+ "want",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "hyper"
1382
+ version = "1.10.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1385
+ dependencies = [
1386
+ "atomic-waker",
1387
+ "bytes",
1388
+ "futures-channel",
1389
+ "futures-core",
1390
+ "http 1.4.1",
1391
+ "http-body 1.0.1",
1392
+ "httparse",
1393
+ "itoa",
1394
+ "pin-project-lite",
1395
+ "smallvec",
1396
+ "tokio",
1397
+ "want",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "hyper-rustls"
1402
+ version = "0.24.2"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1405
+ dependencies = [
1406
+ "futures-util",
1407
+ "http 0.2.12",
1408
+ "hyper 0.14.32",
1409
+ "log",
1410
+ "rustls 0.21.12",
1411
+ "tokio",
1412
+ "tokio-rustls 0.24.1",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "hyper-rustls"
1417
+ version = "0.27.9"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1420
+ dependencies = [
1421
+ "http 1.4.1",
1422
+ "hyper 1.10.1",
1423
+ "hyper-util",
1424
+ "rustls 0.23.40",
1425
+ "tokio",
1426
+ "tokio-rustls 0.26.4",
1427
+ "tower-service",
1428
+ "webpki-roots",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "hyper-util"
1433
+ version = "0.1.20"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1436
+ dependencies = [
1437
+ "base64",
1438
+ "bytes",
1439
+ "futures-channel",
1440
+ "futures-util",
1441
+ "http 1.4.1",
1442
+ "http-body 1.0.1",
1443
+ "hyper 1.10.1",
1444
+ "ipnet",
1445
+ "libc",
1446
+ "percent-encoding",
1447
+ "pin-project-lite",
1448
+ "socket2 0.6.4",
1449
+ "tokio",
1450
+ "tower-service",
1451
+ "tracing",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "icu_collections"
1456
+ version = "2.2.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1459
+ dependencies = [
1460
+ "displaydoc",
1461
+ "potential_utf",
1462
+ "utf8_iter",
1463
+ "yoke",
1464
+ "zerofrom",
1465
+ "zerovec",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "icu_locale_core"
1470
+ version = "2.2.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1473
+ dependencies = [
1474
+ "displaydoc",
1475
+ "litemap",
1476
+ "tinystr",
1477
+ "writeable",
1478
+ "zerovec",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "icu_normalizer"
1483
+ version = "2.2.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1486
+ dependencies = [
1487
+ "icu_collections",
1488
+ "icu_normalizer_data",
1489
+ "icu_properties",
1490
+ "icu_provider",
1491
+ "smallvec",
1492
+ "zerovec",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "icu_normalizer_data"
1497
+ version = "2.2.0"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1500
+
1501
+ [[package]]
1502
+ name = "icu_properties"
1503
+ version = "2.2.0"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1506
+ dependencies = [
1507
+ "icu_collections",
1508
+ "icu_locale_core",
1509
+ "icu_properties_data",
1510
+ "icu_provider",
1511
+ "zerotrie",
1512
+ "zerovec",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "icu_properties_data"
1517
+ version = "2.2.0"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1520
+
1521
+ [[package]]
1522
+ name = "icu_provider"
1523
+ version = "2.2.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1526
+ dependencies = [
1527
+ "displaydoc",
1528
+ "icu_locale_core",
1529
+ "writeable",
1530
+ "yoke",
1531
+ "zerofrom",
1532
+ "zerotrie",
1533
+ "zerovec",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "id-arena"
1538
+ version = "2.3.0"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1541
+
1542
+ [[package]]
1543
+ name = "ident_case"
1544
+ version = "1.0.1"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1547
+
1548
+ [[package]]
1549
+ name = "idna"
1550
+ version = "1.1.0"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1553
+ dependencies = [
1554
+ "idna_adapter",
1555
+ "smallvec",
1556
+ "utf8_iter",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "idna_adapter"
1561
+ version = "1.2.2"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1564
+ dependencies = [
1565
+ "icu_normalizer",
1566
+ "icu_properties",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "indexmap"
1571
+ version = "2.14.0"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1574
+ dependencies = [
1575
+ "equivalent",
1576
+ "hashbrown 0.17.1",
1577
+ "serde",
1578
+ "serde_core",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "indoc"
1583
+ version = "2.0.7"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1586
+ dependencies = [
1587
+ "rustversion",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "ipnet"
1592
+ version = "2.12.0"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1595
+
1596
+ [[package]]
1597
+ name = "itoa"
1598
+ version = "1.0.18"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1601
+
1602
+ [[package]]
1603
+ name = "jobserver"
1604
+ version = "0.1.34"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1607
+ dependencies = [
1608
+ "getrandom 0.3.4",
1609
+ "libc",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "js-sys"
1614
+ version = "0.3.99"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1617
+ dependencies = [
1618
+ "cfg-if",
1619
+ "futures-util",
1620
+ "once_cell",
1621
+ "wasm-bindgen",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "leb128fmt"
1626
+ version = "0.1.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1629
+
1630
+ [[package]]
1631
+ name = "libc"
1632
+ version = "0.2.186"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1635
+
1636
+ [[package]]
1637
+ name = "libredox"
1638
+ version = "0.1.17"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
1641
+ dependencies = [
1642
+ "libc",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "linux-raw-sys"
1647
+ version = "0.12.1"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1650
+
1651
+ [[package]]
1652
+ name = "litemap"
1653
+ version = "0.8.2"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1656
+
1657
+ [[package]]
1658
+ name = "lock_api"
1659
+ version = "0.4.14"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1662
+ dependencies = [
1663
+ "scopeguard",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "log"
1668
+ version = "0.4.30"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1671
+
1672
+ [[package]]
1673
+ name = "lru"
1674
+ version = "0.16.4"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
1677
+ dependencies = [
1678
+ "hashbrown 0.16.1",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "lru-slab"
1683
+ version = "0.1.2"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1686
+
1687
+ [[package]]
1688
+ name = "lz4"
1689
+ version = "1.28.1"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1692
+ dependencies = [
1693
+ "lz4-sys",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "lz4-sys"
1698
+ version = "1.11.1+lz4-1.10.0"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1701
+ dependencies = [
1702
+ "cc",
1703
+ "libc",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "mcap"
1708
+ version = "0.24.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "43908ab970f3a880b02834055a1e04221a3056f442a65ae9111f63e550e7daa5"
1711
+ dependencies = [
1712
+ "bimap",
1713
+ "binrw",
1714
+ "byteorder",
1715
+ "crc32fast",
1716
+ "enumset",
1717
+ "log",
1718
+ "lz4",
1719
+ "num_cpus",
1720
+ "paste",
1721
+ "static_assertions",
1722
+ "thiserror 1.0.69",
1723
+ "zstd",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "md-5"
1728
+ version = "0.11.0"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1731
+ dependencies = [
1732
+ "cfg-if",
1733
+ "digest 0.11.3",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "memchr"
1738
+ version = "2.8.1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1741
+
1742
+ [[package]]
1743
+ name = "memoffset"
1744
+ version = "0.9.1"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1747
+ dependencies = [
1748
+ "autocfg",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "mio"
1753
+ version = "1.2.1"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1756
+ dependencies = [
1757
+ "libc",
1758
+ "wasi 0.11.1+wasi-snapshot-preview1",
1759
+ "windows-sys 0.61.2",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "nkeys"
1764
+ version = "0.4.5"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "879011babc47a1c7fdf5a935ae3cfe94f34645ca0cac1c7f6424b36fc743d1bf"
1767
+ dependencies = [
1768
+ "data-encoding",
1769
+ "ed25519",
1770
+ "ed25519-dalek",
1771
+ "getrandom 0.2.17",
1772
+ "log",
1773
+ "rand 0.8.6",
1774
+ "signatory",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "nuid"
1779
+ version = "0.5.0"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "fc895af95856f929163a0aa20c26a78d26bfdc839f51b9d5aa7a5b79e52b7e83"
1782
+ dependencies = [
1783
+ "rand 0.8.6",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "num-conv"
1788
+ version = "0.2.2"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1791
+
1792
+ [[package]]
1793
+ name = "num-integer"
1794
+ version = "0.1.46"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1797
+ dependencies = [
1798
+ "num-traits",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "num-traits"
1803
+ version = "0.2.19"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1806
+ dependencies = [
1807
+ "autocfg",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "num_cpus"
1812
+ version = "1.17.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1815
+ dependencies = [
1816
+ "hermit-abi",
1817
+ "libc",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "objc2-core-foundation"
1822
+ version = "0.3.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1825
+ dependencies = [
1826
+ "bitflags",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "objc2-system-configuration"
1831
+ version = "0.3.2"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
1834
+ dependencies = [
1835
+ "objc2-core-foundation",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "once_cell"
1840
+ version = "1.21.4"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1843
+
1844
+ [[package]]
1845
+ name = "openssl-probe"
1846
+ version = "0.1.6"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1849
+
1850
+ [[package]]
1851
+ name = "openssl-probe"
1852
+ version = "0.2.1"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1855
+
1856
+ [[package]]
1857
+ name = "outref"
1858
+ version = "0.5.2"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1861
+
1862
+ [[package]]
1863
+ name = "owo-colors"
1864
+ version = "3.5.0"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
1867
+
1868
+ [[package]]
1869
+ name = "parking_lot"
1870
+ version = "0.12.5"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1873
+ dependencies = [
1874
+ "lock_api",
1875
+ "parking_lot_core",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "parking_lot_core"
1880
+ version = "0.9.12"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1883
+ dependencies = [
1884
+ "cfg-if",
1885
+ "libc",
1886
+ "redox_syscall",
1887
+ "smallvec",
1888
+ "windows-link",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "paste"
1893
+ version = "1.0.15"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1896
+
1897
+ [[package]]
1898
+ name = "pem-rfc7468"
1899
+ version = "0.7.0"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1902
+ dependencies = [
1903
+ "base64ct",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "percent-encoding"
1908
+ version = "2.3.2"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1911
+
1912
+ [[package]]
1913
+ name = "phf"
1914
+ version = "0.13.1"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1917
+ dependencies = [
1918
+ "phf_shared",
1919
+ "serde",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "phf_shared"
1924
+ version = "0.13.1"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1927
+ dependencies = [
1928
+ "siphasher",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "pin-project"
1933
+ version = "1.1.13"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
1936
+ dependencies = [
1937
+ "pin-project-internal",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "pin-project-internal"
1942
+ version = "1.1.13"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
1945
+ dependencies = [
1946
+ "proc-macro2",
1947
+ "quote",
1948
+ "syn 2.0.117",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "pin-project-lite"
1953
+ version = "0.2.17"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1956
+
1957
+ [[package]]
1958
+ name = "pin-utils"
1959
+ version = "0.1.0"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1962
+
1963
+ [[package]]
1964
+ name = "pkcs8"
1965
+ version = "0.10.2"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1968
+ dependencies = [
1969
+ "der",
1970
+ "spki",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "pkg-config"
1975
+ version = "0.3.33"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1978
+
1979
+ [[package]]
1980
+ name = "portable-atomic"
1981
+ version = "1.13.1"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1984
+
1985
+ [[package]]
1986
+ name = "postgres-protocol"
1987
+ version = "0.6.11"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "56201207dac53e2f38e848e31b4b91616a6bb6e0c7205b77718994a7f49e70fc"
1990
+ dependencies = [
1991
+ "base64",
1992
+ "byteorder",
1993
+ "bytes",
1994
+ "fallible-iterator",
1995
+ "hmac",
1996
+ "md-5",
1997
+ "memchr",
1998
+ "rand 0.10.1",
1999
+ "sha2 0.11.0",
2000
+ "stringprep",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "postgres-types"
2005
+ version = "0.2.13"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "8dc729a129e682e8d24170cd30ae1aa01b336b096cbb56df6d534ffec133d186"
2008
+ dependencies = [
2009
+ "bytes",
2010
+ "fallible-iterator",
2011
+ "postgres-protocol",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "potential_utf"
2016
+ version = "0.1.5"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2019
+ dependencies = [
2020
+ "zerovec",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "powerfmt"
2025
+ version = "0.2.0"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2028
+
2029
+ [[package]]
2030
+ name = "ppv-lite86"
2031
+ version = "0.2.21"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2034
+ dependencies = [
2035
+ "zerocopy",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "prettyplease"
2040
+ version = "0.2.37"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2043
+ dependencies = [
2044
+ "proc-macro2",
2045
+ "syn 2.0.117",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "proc-macro2"
2050
+ version = "1.0.106"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2053
+ dependencies = [
2054
+ "unicode-ident",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "pyo3"
2059
+ version = "0.23.5"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2062
+ dependencies = [
2063
+ "cfg-if",
2064
+ "indoc",
2065
+ "libc",
2066
+ "memoffset",
2067
+ "once_cell",
2068
+ "portable-atomic",
2069
+ "pyo3-build-config",
2070
+ "pyo3-ffi",
2071
+ "pyo3-macros",
2072
+ "unindent",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "pyo3-build-config"
2077
+ version = "0.23.5"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2080
+ dependencies = [
2081
+ "once_cell",
2082
+ "target-lexicon",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "pyo3-ffi"
2087
+ version = "0.23.5"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2090
+ dependencies = [
2091
+ "libc",
2092
+ "pyo3-build-config",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "pyo3-macros"
2097
+ version = "0.23.5"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2100
+ dependencies = [
2101
+ "proc-macro2",
2102
+ "pyo3-macros-backend",
2103
+ "quote",
2104
+ "syn 2.0.117",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "pyo3-macros-backend"
2109
+ version = "0.23.5"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2112
+ dependencies = [
2113
+ "heck",
2114
+ "proc-macro2",
2115
+ "pyo3-build-config",
2116
+ "quote",
2117
+ "syn 2.0.117",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "quinn"
2122
+ version = "0.11.9"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2125
+ dependencies = [
2126
+ "bytes",
2127
+ "cfg_aliases",
2128
+ "pin-project-lite",
2129
+ "quinn-proto",
2130
+ "quinn-udp",
2131
+ "rustc-hash",
2132
+ "rustls 0.23.40",
2133
+ "socket2 0.6.4",
2134
+ "thiserror 2.0.18",
2135
+ "tokio",
2136
+ "tracing",
2137
+ "web-time",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "quinn-proto"
2142
+ version = "0.11.14"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2145
+ dependencies = [
2146
+ "bytes",
2147
+ "getrandom 0.3.4",
2148
+ "lru-slab",
2149
+ "rand 0.9.4",
2150
+ "ring",
2151
+ "rustc-hash",
2152
+ "rustls 0.23.40",
2153
+ "rustls-pki-types",
2154
+ "slab",
2155
+ "thiserror 2.0.18",
2156
+ "tinyvec",
2157
+ "tracing",
2158
+ "web-time",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "quinn-udp"
2163
+ version = "0.5.14"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2166
+ dependencies = [
2167
+ "cfg_aliases",
2168
+ "libc",
2169
+ "once_cell",
2170
+ "socket2 0.6.4",
2171
+ "tracing",
2172
+ "windows-sys 0.60.2",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "quote"
2177
+ version = "1.0.45"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2180
+ dependencies = [
2181
+ "proc-macro2",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "r-efi"
2186
+ version = "5.3.0"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2189
+
2190
+ [[package]]
2191
+ name = "r-efi"
2192
+ version = "6.0.0"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2195
+
2196
+ [[package]]
2197
+ name = "rand"
2198
+ version = "0.8.6"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2201
+ dependencies = [
2202
+ "libc",
2203
+ "rand_chacha 0.3.1",
2204
+ "rand_core 0.6.4",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "rand"
2209
+ version = "0.9.4"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2212
+ dependencies = [
2213
+ "rand_chacha 0.9.0",
2214
+ "rand_core 0.9.5",
2215
+ ]
2216
+
2217
+ [[package]]
2218
+ name = "rand"
2219
+ version = "0.10.1"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
2222
+ dependencies = [
2223
+ "chacha20",
2224
+ "getrandom 0.4.2",
2225
+ "rand_core 0.10.1",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "rand_chacha"
2230
+ version = "0.3.1"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2233
+ dependencies = [
2234
+ "ppv-lite86",
2235
+ "rand_core 0.6.4",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "rand_chacha"
2240
+ version = "0.9.0"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2243
+ dependencies = [
2244
+ "ppv-lite86",
2245
+ "rand_core 0.9.5",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "rand_core"
2250
+ version = "0.6.4"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2253
+ dependencies = [
2254
+ "getrandom 0.2.17",
2255
+ ]
2256
+
2257
+ [[package]]
2258
+ name = "rand_core"
2259
+ version = "0.9.5"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2262
+ dependencies = [
2263
+ "getrandom 0.3.4",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "rand_core"
2268
+ version = "0.10.1"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2271
+
2272
+ [[package]]
2273
+ name = "redox_syscall"
2274
+ version = "0.5.18"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2277
+ dependencies = [
2278
+ "bitflags",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "regex"
2283
+ version = "1.12.3"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2286
+ dependencies = [
2287
+ "aho-corasick",
2288
+ "memchr",
2289
+ "regex-automata",
2290
+ "regex-syntax",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "regex-automata"
2295
+ version = "0.4.14"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2298
+ dependencies = [
2299
+ "aho-corasick",
2300
+ "memchr",
2301
+ "regex-syntax",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "regex-lite"
2306
+ version = "0.1.9"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
2309
+
2310
+ [[package]]
2311
+ name = "regex-syntax"
2312
+ version = "0.8.10"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2315
+
2316
+ [[package]]
2317
+ name = "reqwest"
2318
+ version = "0.12.28"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2321
+ dependencies = [
2322
+ "base64",
2323
+ "bytes",
2324
+ "futures-channel",
2325
+ "futures-core",
2326
+ "futures-util",
2327
+ "http 1.4.1",
2328
+ "http-body 1.0.1",
2329
+ "http-body-util",
2330
+ "hyper 1.10.1",
2331
+ "hyper-rustls 0.27.9",
2332
+ "hyper-util",
2333
+ "js-sys",
2334
+ "log",
2335
+ "percent-encoding",
2336
+ "pin-project-lite",
2337
+ "quinn",
2338
+ "rustls 0.23.40",
2339
+ "rustls-pki-types",
2340
+ "serde",
2341
+ "serde_json",
2342
+ "serde_urlencoded",
2343
+ "sync_wrapper",
2344
+ "tokio",
2345
+ "tokio-rustls 0.26.4",
2346
+ "tower",
2347
+ "tower-http",
2348
+ "tower-service",
2349
+ "url",
2350
+ "wasm-bindgen",
2351
+ "wasm-bindgen-futures",
2352
+ "web-sys",
2353
+ "webpki-roots",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "ring"
2358
+ version = "0.17.14"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2361
+ dependencies = [
2362
+ "cc",
2363
+ "cfg-if",
2364
+ "getrandom 0.2.17",
2365
+ "libc",
2366
+ "untrusted",
2367
+ "windows-sys 0.52.0",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "rustc-hash"
2372
+ version = "2.1.2"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2375
+
2376
+ [[package]]
2377
+ name = "rustc_version"
2378
+ version = "0.4.1"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2381
+ dependencies = [
2382
+ "semver",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "rustix"
2387
+ version = "1.1.4"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2390
+ dependencies = [
2391
+ "bitflags",
2392
+ "errno",
2393
+ "libc",
2394
+ "linux-raw-sys",
2395
+ "windows-sys 0.61.2",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "rustls"
2400
+ version = "0.21.12"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2403
+ dependencies = [
2404
+ "log",
2405
+ "ring",
2406
+ "rustls-webpki 0.101.7",
2407
+ "sct",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "rustls"
2412
+ version = "0.23.40"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
2415
+ dependencies = [
2416
+ "once_cell",
2417
+ "ring",
2418
+ "rustls-pki-types",
2419
+ "rustls-webpki 0.103.13",
2420
+ "subtle",
2421
+ "zeroize",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "rustls-native-certs"
2426
+ version = "0.7.3"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
2429
+ dependencies = [
2430
+ "openssl-probe 0.1.6",
2431
+ "rustls-pemfile",
2432
+ "rustls-pki-types",
2433
+ "schannel",
2434
+ "security-framework 2.11.1",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "rustls-native-certs"
2439
+ version = "0.8.4"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2442
+ dependencies = [
2443
+ "openssl-probe 0.2.1",
2444
+ "rustls-pki-types",
2445
+ "schannel",
2446
+ "security-framework 3.7.0",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "rustls-pemfile"
2451
+ version = "2.2.0"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2454
+ dependencies = [
2455
+ "rustls-pki-types",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "rustls-pki-types"
2460
+ version = "1.14.1"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2463
+ dependencies = [
2464
+ "web-time",
2465
+ "zeroize",
2466
+ ]
2467
+
2468
+ [[package]]
2469
+ name = "rustls-webpki"
2470
+ version = "0.101.7"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2473
+ dependencies = [
2474
+ "ring",
2475
+ "untrusted",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "rustls-webpki"
2480
+ version = "0.102.8"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2483
+ dependencies = [
2484
+ "ring",
2485
+ "rustls-pki-types",
2486
+ "untrusted",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "rustls-webpki"
2491
+ version = "0.103.13"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2494
+ dependencies = [
2495
+ "ring",
2496
+ "rustls-pki-types",
2497
+ "untrusted",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "rustversion"
2502
+ version = "1.0.22"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2505
+
2506
+ [[package]]
2507
+ name = "ryu"
2508
+ version = "1.0.23"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2511
+
2512
+ [[package]]
2513
+ name = "schannel"
2514
+ version = "0.1.29"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2517
+ dependencies = [
2518
+ "windows-sys 0.61.2",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "scopeguard"
2523
+ version = "1.2.0"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2526
+
2527
+ [[package]]
2528
+ name = "sct"
2529
+ version = "0.7.1"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2532
+ dependencies = [
2533
+ "ring",
2534
+ "untrusted",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "security-framework"
2539
+ version = "2.11.1"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2542
+ dependencies = [
2543
+ "bitflags",
2544
+ "core-foundation 0.9.4",
2545
+ "core-foundation-sys",
2546
+ "libc",
2547
+ "security-framework-sys",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "security-framework"
2552
+ version = "3.7.0"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2555
+ dependencies = [
2556
+ "bitflags",
2557
+ "core-foundation 0.10.1",
2558
+ "core-foundation-sys",
2559
+ "libc",
2560
+ "security-framework-sys",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "security-framework-sys"
2565
+ version = "2.17.0"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2568
+ dependencies = [
2569
+ "core-foundation-sys",
2570
+ "libc",
2571
+ ]
2572
+
2573
+ [[package]]
2574
+ name = "semver"
2575
+ version = "1.0.28"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2578
+
2579
+ [[package]]
2580
+ name = "serde"
2581
+ version = "1.0.228"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2584
+ dependencies = [
2585
+ "serde_core",
2586
+ "serde_derive",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "serde_core"
2591
+ version = "1.0.228"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2594
+ dependencies = [
2595
+ "serde_derive",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "serde_derive"
2600
+ version = "1.0.228"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2603
+ dependencies = [
2604
+ "proc-macro2",
2605
+ "quote",
2606
+ "syn 2.0.117",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "serde_json"
2611
+ version = "1.0.150"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2614
+ dependencies = [
2615
+ "itoa",
2616
+ "memchr",
2617
+ "serde",
2618
+ "serde_core",
2619
+ "zmij",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "serde_nanos"
2624
+ version = "0.1.4"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "a93142f0367a4cc53ae0fead1bcda39e85beccfad3dcd717656cacab94b12985"
2627
+ dependencies = [
2628
+ "serde",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "serde_path_to_error"
2633
+ version = "0.1.20"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2636
+ dependencies = [
2637
+ "itoa",
2638
+ "serde",
2639
+ "serde_core",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "serde_repr"
2644
+ version = "0.1.20"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2647
+ dependencies = [
2648
+ "proc-macro2",
2649
+ "quote",
2650
+ "syn 2.0.117",
2651
+ ]
2652
+
2653
+ [[package]]
2654
+ name = "serde_spanned"
2655
+ version = "0.6.9"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2658
+ dependencies = [
2659
+ "serde",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "serde_urlencoded"
2664
+ version = "0.7.1"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2667
+ dependencies = [
2668
+ "form_urlencoded",
2669
+ "itoa",
2670
+ "ryu",
2671
+ "serde",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "sha1"
2676
+ version = "0.11.0"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
2679
+ dependencies = [
2680
+ "cfg-if",
2681
+ "cpufeatures 0.3.0",
2682
+ "digest 0.11.3",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "sha2"
2687
+ version = "0.10.9"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2690
+ dependencies = [
2691
+ "cfg-if",
2692
+ "cpufeatures 0.2.17",
2693
+ "digest 0.10.7",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "sha2"
2698
+ version = "0.11.0"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2701
+ dependencies = [
2702
+ "cfg-if",
2703
+ "cpufeatures 0.3.0",
2704
+ "digest 0.11.3",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "shlex"
2709
+ version = "2.0.1"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2712
+
2713
+ [[package]]
2714
+ name = "signal-hook-registry"
2715
+ version = "1.4.8"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2718
+ dependencies = [
2719
+ "errno",
2720
+ "libc",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "signatory"
2725
+ version = "0.27.1"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "c1e303f8205714074f6068773f0e29527e0453937fe837c9717d066635b65f31"
2728
+ dependencies = [
2729
+ "pkcs8",
2730
+ "rand_core 0.6.4",
2731
+ "signature",
2732
+ "zeroize",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "signature"
2737
+ version = "2.2.0"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2740
+ dependencies = [
2741
+ "digest 0.10.7",
2742
+ "rand_core 0.6.4",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "siphasher"
2747
+ version = "1.0.3"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2750
+
2751
+ [[package]]
2752
+ name = "slab"
2753
+ version = "0.4.12"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2756
+
2757
+ [[package]]
2758
+ name = "smallvec"
2759
+ version = "1.15.1"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2762
+
2763
+ [[package]]
2764
+ name = "socket2"
2765
+ version = "0.5.10"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2768
+ dependencies = [
2769
+ "libc",
2770
+ "windows-sys 0.52.0",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "socket2"
2775
+ version = "0.6.4"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2778
+ dependencies = [
2779
+ "libc",
2780
+ "windows-sys 0.61.2",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "spin"
2785
+ version = "0.10.0"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
2788
+
2789
+ [[package]]
2790
+ name = "spki"
2791
+ version = "0.7.3"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2794
+ dependencies = [
2795
+ "base64ct",
2796
+ "der",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "stable_deref_trait"
2801
+ version = "1.2.1"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2804
+
2805
+ [[package]]
2806
+ name = "static_assertions"
2807
+ version = "1.1.0"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2810
+
2811
+ [[package]]
2812
+ name = "stringprep"
2813
+ version = "0.1.5"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2816
+ dependencies = [
2817
+ "unicode-bidi",
2818
+ "unicode-normalization",
2819
+ "unicode-properties",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "subtle"
2824
+ version = "2.6.1"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2827
+
2828
+ [[package]]
2829
+ name = "syn"
2830
+ version = "1.0.109"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2833
+ dependencies = [
2834
+ "proc-macro2",
2835
+ "quote",
2836
+ "unicode-ident",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "syn"
2841
+ version = "2.0.117"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2844
+ dependencies = [
2845
+ "proc-macro2",
2846
+ "quote",
2847
+ "unicode-ident",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "sync_wrapper"
2852
+ version = "1.0.2"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2855
+ dependencies = [
2856
+ "futures-core",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "synstructure"
2861
+ version = "0.13.2"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2864
+ dependencies = [
2865
+ "proc-macro2",
2866
+ "quote",
2867
+ "syn 2.0.117",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "target-lexicon"
2872
+ version = "0.12.16"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2875
+
2876
+ [[package]]
2877
+ name = "tempfile"
2878
+ version = "3.27.0"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2881
+ dependencies = [
2882
+ "fastrand",
2883
+ "getrandom 0.4.2",
2884
+ "once_cell",
2885
+ "rustix",
2886
+ "windows-sys 0.61.2",
2887
+ ]
2888
+
2889
+ [[package]]
2890
+ name = "thiserror"
2891
+ version = "1.0.69"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2894
+ dependencies = [
2895
+ "thiserror-impl 1.0.69",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "thiserror"
2900
+ version = "2.0.18"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2903
+ dependencies = [
2904
+ "thiserror-impl 2.0.18",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "thiserror-impl"
2909
+ version = "1.0.69"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2912
+ dependencies = [
2913
+ "proc-macro2",
2914
+ "quote",
2915
+ "syn 2.0.117",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "thiserror-impl"
2920
+ version = "2.0.18"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2923
+ dependencies = [
2924
+ "proc-macro2",
2925
+ "quote",
2926
+ "syn 2.0.117",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "time"
2931
+ version = "0.3.47"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2934
+ dependencies = [
2935
+ "deranged",
2936
+ "itoa",
2937
+ "num-conv",
2938
+ "powerfmt",
2939
+ "serde_core",
2940
+ "time-core",
2941
+ "time-macros",
2942
+ ]
2943
+
2944
+ [[package]]
2945
+ name = "time-core"
2946
+ version = "0.1.8"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2949
+
2950
+ [[package]]
2951
+ name = "time-macros"
2952
+ version = "0.2.27"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2955
+ dependencies = [
2956
+ "num-conv",
2957
+ "time-core",
2958
+ ]
2959
+
2960
+ [[package]]
2961
+ name = "tinystr"
2962
+ version = "0.8.3"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2965
+ dependencies = [
2966
+ "displaydoc",
2967
+ "zerovec",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "tinyvec"
2972
+ version = "1.11.0"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2975
+ dependencies = [
2976
+ "tinyvec_macros",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "tinyvec_macros"
2981
+ version = "0.1.1"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2984
+
2985
+ [[package]]
2986
+ name = "tokio"
2987
+ version = "1.52.3"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2990
+ dependencies = [
2991
+ "bytes",
2992
+ "libc",
2993
+ "mio",
2994
+ "pin-project-lite",
2995
+ "signal-hook-registry",
2996
+ "socket2 0.6.4",
2997
+ "tokio-macros",
2998
+ "windows-sys 0.61.2",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "tokio-macros"
3003
+ version = "2.7.0"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3006
+ dependencies = [
3007
+ "proc-macro2",
3008
+ "quote",
3009
+ "syn 2.0.117",
3010
+ ]
3011
+
3012
+ [[package]]
3013
+ name = "tokio-postgres"
3014
+ version = "0.7.17"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "4dd8df5ef180f6364759a6f00f7aadda4fbbac86cdee37480826a6ff9f3574ce"
3017
+ dependencies = [
3018
+ "async-trait",
3019
+ "byteorder",
3020
+ "bytes",
3021
+ "fallible-iterator",
3022
+ "futures-channel",
3023
+ "futures-util",
3024
+ "log",
3025
+ "parking_lot",
3026
+ "percent-encoding",
3027
+ "phf",
3028
+ "pin-project-lite",
3029
+ "postgres-protocol",
3030
+ "postgres-types",
3031
+ "rand 0.10.1",
3032
+ "socket2 0.6.4",
3033
+ "tokio",
3034
+ "tokio-util",
3035
+ "whoami",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "tokio-rustls"
3040
+ version = "0.24.1"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3043
+ dependencies = [
3044
+ "rustls 0.21.12",
3045
+ "tokio",
3046
+ ]
3047
+
3048
+ [[package]]
3049
+ name = "tokio-rustls"
3050
+ version = "0.26.4"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3053
+ dependencies = [
3054
+ "rustls 0.23.40",
3055
+ "tokio",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "tokio-util"
3060
+ version = "0.7.18"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3063
+ dependencies = [
3064
+ "bytes",
3065
+ "futures-core",
3066
+ "futures-sink",
3067
+ "pin-project-lite",
3068
+ "tokio",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "tokio-websockets"
3073
+ version = "0.10.1"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "f591660438b3038dd04d16c938271c79e7e06260ad2ea2885a4861bfb238605d"
3076
+ dependencies = [
3077
+ "base64",
3078
+ "bytes",
3079
+ "futures-core",
3080
+ "futures-sink",
3081
+ "http 1.4.1",
3082
+ "httparse",
3083
+ "rand 0.8.6",
3084
+ "ring",
3085
+ "rustls-native-certs 0.8.4",
3086
+ "rustls-pki-types",
3087
+ "tokio",
3088
+ "tokio-rustls 0.26.4",
3089
+ "tokio-util",
3090
+ ]
3091
+
3092
+ [[package]]
3093
+ name = "toml"
3094
+ version = "0.8.23"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3097
+ dependencies = [
3098
+ "serde",
3099
+ "serde_spanned",
3100
+ "toml_datetime",
3101
+ "toml_edit",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "toml_datetime"
3106
+ version = "0.6.11"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3109
+ dependencies = [
3110
+ "serde",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "toml_edit"
3115
+ version = "0.22.27"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3118
+ dependencies = [
3119
+ "indexmap",
3120
+ "serde",
3121
+ "serde_spanned",
3122
+ "toml_datetime",
3123
+ "toml_write",
3124
+ "winnow",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "toml_write"
3129
+ version = "0.1.2"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3132
+
3133
+ [[package]]
3134
+ name = "tower"
3135
+ version = "0.5.3"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3138
+ dependencies = [
3139
+ "futures-core",
3140
+ "futures-util",
3141
+ "pin-project-lite",
3142
+ "sync_wrapper",
3143
+ "tokio",
3144
+ "tower-layer",
3145
+ "tower-service",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "tower-http"
3150
+ version = "0.6.11"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3153
+ dependencies = [
3154
+ "bitflags",
3155
+ "bytes",
3156
+ "futures-util",
3157
+ "http 1.4.1",
3158
+ "http-body 1.0.1",
3159
+ "pin-project-lite",
3160
+ "tower",
3161
+ "tower-layer",
3162
+ "tower-service",
3163
+ "url",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "tower-layer"
3168
+ version = "0.3.3"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3171
+
3172
+ [[package]]
3173
+ name = "tower-service"
3174
+ version = "0.3.3"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3177
+
3178
+ [[package]]
3179
+ name = "tracing"
3180
+ version = "0.1.44"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3183
+ dependencies = [
3184
+ "pin-project-lite",
3185
+ "tracing-attributes",
3186
+ "tracing-core",
3187
+ ]
3188
+
3189
+ [[package]]
3190
+ name = "tracing-attributes"
3191
+ version = "0.1.31"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3194
+ dependencies = [
3195
+ "proc-macro2",
3196
+ "quote",
3197
+ "syn 2.0.117",
3198
+ ]
3199
+
3200
+ [[package]]
3201
+ name = "tracing-core"
3202
+ version = "0.1.36"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3205
+ dependencies = [
3206
+ "once_cell",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "try-lock"
3211
+ version = "0.2.5"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3214
+
3215
+ [[package]]
3216
+ name = "tryhard"
3217
+ version = "0.5.2"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "9fe58ebd5edd976e0fe0f8a14d2a04b7c81ef153ea9a54eebc42e67c2c23b4e5"
3220
+ dependencies = [
3221
+ "pin-project-lite",
3222
+ "tokio",
3223
+ ]
3224
+
3225
+ [[package]]
3226
+ name = "typenum"
3227
+ version = "1.20.1"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3230
+
3231
+ [[package]]
3232
+ name = "unicode-bidi"
3233
+ version = "0.3.18"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3236
+
3237
+ [[package]]
3238
+ name = "unicode-ident"
3239
+ version = "1.0.24"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3242
+
3243
+ [[package]]
3244
+ name = "unicode-normalization"
3245
+ version = "0.1.25"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3248
+ dependencies = [
3249
+ "tinyvec",
3250
+ ]
3251
+
3252
+ [[package]]
3253
+ name = "unicode-properties"
3254
+ version = "0.1.4"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3257
+
3258
+ [[package]]
3259
+ name = "unicode-xid"
3260
+ version = "0.2.6"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3263
+
3264
+ [[package]]
3265
+ name = "unindent"
3266
+ version = "0.2.4"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3269
+
3270
+ [[package]]
3271
+ name = "untrusted"
3272
+ version = "0.9.0"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3275
+
3276
+ [[package]]
3277
+ name = "url"
3278
+ version = "2.5.8"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3281
+ dependencies = [
3282
+ "form_urlencoded",
3283
+ "idna",
3284
+ "percent-encoding",
3285
+ "serde",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "utf8_iter"
3290
+ version = "1.0.4"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3293
+
3294
+ [[package]]
3295
+ name = "uuid"
3296
+ version = "1.23.2"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
3299
+ dependencies = [
3300
+ "getrandom 0.4.2",
3301
+ "js-sys",
3302
+ "rand 0.10.1",
3303
+ "serde_core",
3304
+ "wasm-bindgen",
3305
+ ]
3306
+
3307
+ [[package]]
3308
+ name = "version_check"
3309
+ version = "0.9.5"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3312
+
3313
+ [[package]]
3314
+ name = "vsimd"
3315
+ version = "0.8.0"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
3318
+
3319
+ [[package]]
3320
+ name = "want"
3321
+ version = "0.3.1"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3324
+ dependencies = [
3325
+ "try-lock",
3326
+ ]
3327
+
3328
+ [[package]]
3329
+ name = "wasi"
3330
+ version = "0.11.1+wasi-snapshot-preview1"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3333
+
3334
+ [[package]]
3335
+ name = "wasi"
3336
+ version = "0.14.7+wasi-0.2.4"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
3339
+ dependencies = [
3340
+ "wasip2",
3341
+ ]
3342
+
3343
+ [[package]]
3344
+ name = "wasip2"
3345
+ version = "1.0.3+wasi-0.2.9"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3348
+ dependencies = [
3349
+ "wit-bindgen 0.57.1",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "wasip3"
3354
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3357
+ dependencies = [
3358
+ "wit-bindgen 0.51.0",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "wasite"
3363
+ version = "1.0.2"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
3366
+ dependencies = [
3367
+ "wasi 0.14.7+wasi-0.2.4",
3368
+ ]
3369
+
3370
+ [[package]]
3371
+ name = "wasm-bindgen"
3372
+ version = "0.2.122"
3373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3374
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
3375
+ dependencies = [
3376
+ "cfg-if",
3377
+ "once_cell",
3378
+ "rustversion",
3379
+ "wasm-bindgen-macro",
3380
+ "wasm-bindgen-shared",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "wasm-bindgen-futures"
3385
+ version = "0.4.72"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
3388
+ dependencies = [
3389
+ "js-sys",
3390
+ "wasm-bindgen",
3391
+ ]
3392
+
3393
+ [[package]]
3394
+ name = "wasm-bindgen-macro"
3395
+ version = "0.2.122"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
3398
+ dependencies = [
3399
+ "quote",
3400
+ "wasm-bindgen-macro-support",
3401
+ ]
3402
+
3403
+ [[package]]
3404
+ name = "wasm-bindgen-macro-support"
3405
+ version = "0.2.122"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
3408
+ dependencies = [
3409
+ "bumpalo",
3410
+ "proc-macro2",
3411
+ "quote",
3412
+ "syn 2.0.117",
3413
+ "wasm-bindgen-shared",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "wasm-bindgen-shared"
3418
+ version = "0.2.122"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
3421
+ dependencies = [
3422
+ "unicode-ident",
3423
+ ]
3424
+
3425
+ [[package]]
3426
+ name = "wasm-encoder"
3427
+ version = "0.244.0"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3430
+ dependencies = [
3431
+ "leb128fmt",
3432
+ "wasmparser",
3433
+ ]
3434
+
3435
+ [[package]]
3436
+ name = "wasm-metadata"
3437
+ version = "0.244.0"
3438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3439
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3440
+ dependencies = [
3441
+ "anyhow",
3442
+ "indexmap",
3443
+ "wasm-encoder",
3444
+ "wasmparser",
3445
+ ]
3446
+
3447
+ [[package]]
3448
+ name = "wasmparser"
3449
+ version = "0.244.0"
3450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3451
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3452
+ dependencies = [
3453
+ "bitflags",
3454
+ "hashbrown 0.15.5",
3455
+ "indexmap",
3456
+ "semver",
3457
+ ]
3458
+
3459
+ [[package]]
3460
+ name = "web-sys"
3461
+ version = "0.3.99"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
3464
+ dependencies = [
3465
+ "js-sys",
3466
+ "wasm-bindgen",
3467
+ ]
3468
+
3469
+ [[package]]
3470
+ name = "web-time"
3471
+ version = "1.1.0"
3472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3473
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3474
+ dependencies = [
3475
+ "js-sys",
3476
+ "wasm-bindgen",
3477
+ ]
3478
+
3479
+ [[package]]
3480
+ name = "webpki-roots"
3481
+ version = "1.0.7"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
3484
+ dependencies = [
3485
+ "rustls-pki-types",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "whoami"
3490
+ version = "2.1.2"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
3493
+ dependencies = [
3494
+ "libc",
3495
+ "libredox",
3496
+ "objc2-system-configuration",
3497
+ "wasite",
3498
+ "web-sys",
3499
+ ]
3500
+
3501
+ [[package]]
3502
+ name = "windows-link"
3503
+ version = "0.2.1"
3504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3505
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3506
+
3507
+ [[package]]
3508
+ name = "windows-sys"
3509
+ version = "0.52.0"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3512
+ dependencies = [
3513
+ "windows-targets 0.52.6",
3514
+ ]
3515
+
3516
+ [[package]]
3517
+ name = "windows-sys"
3518
+ version = "0.60.2"
3519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3520
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3521
+ dependencies = [
3522
+ "windows-targets 0.53.5",
3523
+ ]
3524
+
3525
+ [[package]]
3526
+ name = "windows-sys"
3527
+ version = "0.61.2"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3530
+ dependencies = [
3531
+ "windows-link",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "windows-targets"
3536
+ version = "0.52.6"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3539
+ dependencies = [
3540
+ "windows_aarch64_gnullvm 0.52.6",
3541
+ "windows_aarch64_msvc 0.52.6",
3542
+ "windows_i686_gnu 0.52.6",
3543
+ "windows_i686_gnullvm 0.52.6",
3544
+ "windows_i686_msvc 0.52.6",
3545
+ "windows_x86_64_gnu 0.52.6",
3546
+ "windows_x86_64_gnullvm 0.52.6",
3547
+ "windows_x86_64_msvc 0.52.6",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "windows-targets"
3552
+ version = "0.53.5"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3555
+ dependencies = [
3556
+ "windows-link",
3557
+ "windows_aarch64_gnullvm 0.53.1",
3558
+ "windows_aarch64_msvc 0.53.1",
3559
+ "windows_i686_gnu 0.53.1",
3560
+ "windows_i686_gnullvm 0.53.1",
3561
+ "windows_i686_msvc 0.53.1",
3562
+ "windows_x86_64_gnu 0.53.1",
3563
+ "windows_x86_64_gnullvm 0.53.1",
3564
+ "windows_x86_64_msvc 0.53.1",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "windows_aarch64_gnullvm"
3569
+ version = "0.52.6"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3572
+
3573
+ [[package]]
3574
+ name = "windows_aarch64_gnullvm"
3575
+ version = "0.53.1"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3578
+
3579
+ [[package]]
3580
+ name = "windows_aarch64_msvc"
3581
+ version = "0.52.6"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3584
+
3585
+ [[package]]
3586
+ name = "windows_aarch64_msvc"
3587
+ version = "0.53.1"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3590
+
3591
+ [[package]]
3592
+ name = "windows_i686_gnu"
3593
+ version = "0.52.6"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3596
+
3597
+ [[package]]
3598
+ name = "windows_i686_gnu"
3599
+ version = "0.53.1"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3602
+
3603
+ [[package]]
3604
+ name = "windows_i686_gnullvm"
3605
+ version = "0.52.6"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3608
+
3609
+ [[package]]
3610
+ name = "windows_i686_gnullvm"
3611
+ version = "0.53.1"
3612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3613
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3614
+
3615
+ [[package]]
3616
+ name = "windows_i686_msvc"
3617
+ version = "0.52.6"
3618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3619
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3620
+
3621
+ [[package]]
3622
+ name = "windows_i686_msvc"
3623
+ version = "0.53.1"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3626
+
3627
+ [[package]]
3628
+ name = "windows_x86_64_gnu"
3629
+ version = "0.52.6"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3632
+
3633
+ [[package]]
3634
+ name = "windows_x86_64_gnu"
3635
+ version = "0.53.1"
3636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3637
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3638
+
3639
+ [[package]]
3640
+ name = "windows_x86_64_gnullvm"
3641
+ version = "0.52.6"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3644
+
3645
+ [[package]]
3646
+ name = "windows_x86_64_gnullvm"
3647
+ version = "0.53.1"
3648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3649
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3650
+
3651
+ [[package]]
3652
+ name = "windows_x86_64_msvc"
3653
+ version = "0.52.6"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3656
+
3657
+ [[package]]
3658
+ name = "windows_x86_64_msvc"
3659
+ version = "0.53.1"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3662
+
3663
+ [[package]]
3664
+ name = "winnow"
3665
+ version = "0.7.15"
3666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3667
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
3668
+ dependencies = [
3669
+ "memchr",
3670
+ ]
3671
+
3672
+ [[package]]
3673
+ name = "wit-bindgen"
3674
+ version = "0.51.0"
3675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3676
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3677
+ dependencies = [
3678
+ "wit-bindgen-rust-macro",
3679
+ ]
3680
+
3681
+ [[package]]
3682
+ name = "wit-bindgen"
3683
+ version = "0.57.1"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3686
+
3687
+ [[package]]
3688
+ name = "wit-bindgen-core"
3689
+ version = "0.51.0"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3692
+ dependencies = [
3693
+ "anyhow",
3694
+ "heck",
3695
+ "wit-parser",
3696
+ ]
3697
+
3698
+ [[package]]
3699
+ name = "wit-bindgen-rust"
3700
+ version = "0.51.0"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3703
+ dependencies = [
3704
+ "anyhow",
3705
+ "heck",
3706
+ "indexmap",
3707
+ "prettyplease",
3708
+ "syn 2.0.117",
3709
+ "wasm-metadata",
3710
+ "wit-bindgen-core",
3711
+ "wit-component",
3712
+ ]
3713
+
3714
+ [[package]]
3715
+ name = "wit-bindgen-rust-macro"
3716
+ version = "0.51.0"
3717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3718
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3719
+ dependencies = [
3720
+ "anyhow",
3721
+ "prettyplease",
3722
+ "proc-macro2",
3723
+ "quote",
3724
+ "syn 2.0.117",
3725
+ "wit-bindgen-core",
3726
+ "wit-bindgen-rust",
3727
+ ]
3728
+
3729
+ [[package]]
3730
+ name = "wit-component"
3731
+ version = "0.244.0"
3732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3733
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3734
+ dependencies = [
3735
+ "anyhow",
3736
+ "bitflags",
3737
+ "indexmap",
3738
+ "log",
3739
+ "serde",
3740
+ "serde_derive",
3741
+ "serde_json",
3742
+ "wasm-encoder",
3743
+ "wasm-metadata",
3744
+ "wasmparser",
3745
+ "wit-parser",
3746
+ ]
3747
+
3748
+ [[package]]
3749
+ name = "wit-parser"
3750
+ version = "0.244.0"
3751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3752
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3753
+ dependencies = [
3754
+ "anyhow",
3755
+ "id-arena",
3756
+ "indexmap",
3757
+ "log",
3758
+ "semver",
3759
+ "serde",
3760
+ "serde_derive",
3761
+ "serde_json",
3762
+ "unicode-xid",
3763
+ "wasmparser",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "writeable"
3768
+ version = "0.6.3"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3771
+
3772
+ [[package]]
3773
+ name = "xmlparser"
3774
+ version = "0.13.6"
3775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3776
+ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
3777
+
3778
+ [[package]]
3779
+ name = "yoke"
3780
+ version = "0.8.2"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3783
+ dependencies = [
3784
+ "stable_deref_trait",
3785
+ "yoke-derive",
3786
+ "zerofrom",
3787
+ ]
3788
+
3789
+ [[package]]
3790
+ name = "yoke-derive"
3791
+ version = "0.8.2"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3794
+ dependencies = [
3795
+ "proc-macro2",
3796
+ "quote",
3797
+ "syn 2.0.117",
3798
+ "synstructure",
3799
+ ]
3800
+
3801
+ [[package]]
3802
+ name = "zerocopy"
3803
+ version = "0.8.50"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
3806
+ dependencies = [
3807
+ "zerocopy-derive",
3808
+ ]
3809
+
3810
+ [[package]]
3811
+ name = "zerocopy-derive"
3812
+ version = "0.8.50"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3814
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
3815
+ dependencies = [
3816
+ "proc-macro2",
3817
+ "quote",
3818
+ "syn 2.0.117",
3819
+ ]
3820
+
3821
+ [[package]]
3822
+ name = "zerofrom"
3823
+ version = "0.1.8"
3824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3825
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3826
+ dependencies = [
3827
+ "zerofrom-derive",
3828
+ ]
3829
+
3830
+ [[package]]
3831
+ name = "zerofrom-derive"
3832
+ version = "0.1.7"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3835
+ dependencies = [
3836
+ "proc-macro2",
3837
+ "quote",
3838
+ "syn 2.0.117",
3839
+ "synstructure",
3840
+ ]
3841
+
3842
+ [[package]]
3843
+ name = "zeroize"
3844
+ version = "1.8.2"
3845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3846
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3847
+
3848
+ [[package]]
3849
+ name = "zerotrie"
3850
+ version = "0.2.4"
3851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3852
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3853
+ dependencies = [
3854
+ "displaydoc",
3855
+ "yoke",
3856
+ "zerofrom",
3857
+ ]
3858
+
3859
+ [[package]]
3860
+ name = "zerovec"
3861
+ version = "0.11.6"
3862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3863
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3864
+ dependencies = [
3865
+ "yoke",
3866
+ "zerofrom",
3867
+ "zerovec-derive",
3868
+ ]
3869
+
3870
+ [[package]]
3871
+ name = "zerovec-derive"
3872
+ version = "0.11.3"
3873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3874
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3875
+ dependencies = [
3876
+ "proc-macro2",
3877
+ "quote",
3878
+ "syn 2.0.117",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "zmij"
3883
+ version = "1.0.21"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3886
+
3887
+ [[package]]
3888
+ name = "zstd"
3889
+ version = "0.13.3"
3890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3891
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3892
+ dependencies = [
3893
+ "zstd-safe",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "zstd-safe"
3898
+ version = "7.2.4"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3901
+ dependencies = [
3902
+ "zstd-sys",
3903
+ ]
3904
+
3905
+ [[package]]
3906
+ name = "zstd-sys"
3907
+ version = "2.0.16+zstd.1.5.7"
3908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3909
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3910
+ dependencies = [
3911
+ "cc",
3912
+ "pkg-config",
3913
+ ]