PyReverseETL 2.0.1__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 (75) hide show
  1. pyreverseetl-2.0.1/Cargo.lock +2232 -0
  2. pyreverseetl-2.0.1/Cargo.toml +10 -0
  3. pyreverseetl-2.0.1/LICENSE +21 -0
  4. pyreverseetl-2.0.1/PKG-INFO +389 -0
  5. pyreverseetl-2.0.1/README.md +368 -0
  6. pyreverseetl-2.0.1/core/Cargo.toml +30 -0
  7. pyreverseetl-2.0.1/core/src/activation.rs +205 -0
  8. pyreverseetl-2.0.1/core/src/adapters/alert_compat.rs +347 -0
  9. pyreverseetl-2.0.1/core/src/adapters/error.rs +96 -0
  10. pyreverseetl-2.0.1/core/src/adapters/http_client.rs +234 -0
  11. pyreverseetl-2.0.1/core/src/adapters/hubspot.rs +222 -0
  12. pyreverseetl-2.0.1/core/src/adapters/mapping.rs +248 -0
  13. pyreverseetl-2.0.1/core/src/adapters/marketo.rs +232 -0
  14. pyreverseetl-2.0.1/core/src/adapters/mod.rs +230 -0
  15. pyreverseetl-2.0.1/core/src/adapters/oauth_manager.rs +190 -0
  16. pyreverseetl-2.0.1/core/src/adapters/retry_policy.rs +241 -0
  17. pyreverseetl-2.0.1/core/src/adapters/salesforce.rs +228 -0
  18. pyreverseetl-2.0.1/core/src/adapters/schema_detect.rs +361 -0
  19. pyreverseetl-2.0.1/core/src/adapters/webhook.rs +301 -0
  20. pyreverseetl-2.0.1/core/src/cdc/change_detector.rs +229 -0
  21. pyreverseetl-2.0.1/core/src/cdc/changelog.rs +246 -0
  22. pyreverseetl-2.0.1/core/src/cdc/checkpoint.rs +213 -0
  23. pyreverseetl-2.0.1/core/src/cdc/mod.rs +15 -0
  24. pyreverseetl-2.0.1/core/src/connectors/config.rs +242 -0
  25. pyreverseetl-2.0.1/core/src/connectors/connectors_db.rs +2645 -0
  26. pyreverseetl-2.0.1/core/src/connectors/database_advanced.rs +388 -0
  27. pyreverseetl-2.0.1/core/src/connectors/destination.rs +309 -0
  28. pyreverseetl-2.0.1/core/src/connectors/hdfs.rs +411 -0
  29. pyreverseetl-2.0.1/core/src/connectors/mod.rs +189 -0
  30. pyreverseetl-2.0.1/core/src/connectors/mysql.rs +472 -0
  31. pyreverseetl-2.0.1/core/src/connectors/object_storage.rs +377 -0
  32. pyreverseetl-2.0.1/core/src/connectors/postgres.rs +47 -0
  33. pyreverseetl-2.0.1/core/src/connectors/rate_limiting.rs +387 -0
  34. pyreverseetl-2.0.1/core/src/connectors/registry.rs +347 -0
  35. pyreverseetl-2.0.1/core/src/connectors/saas.rs +353 -0
  36. pyreverseetl-2.0.1/core/src/connectors/source.rs +322 -0
  37. pyreverseetl-2.0.1/core/src/destination.rs +182 -0
  38. pyreverseetl-2.0.1/core/src/entity.rs +236 -0
  39. pyreverseetl-2.0.1/core/src/error.rs +55 -0
  40. pyreverseetl-2.0.1/core/src/lib.rs +52 -0
  41. pyreverseetl-2.0.1/core/src/observability/logs.rs +261 -0
  42. pyreverseetl-2.0.1/core/src/observability/metrics.rs +248 -0
  43. pyreverseetl-2.0.1/core/src/observability/mod.rs +68 -0
  44. pyreverseetl-2.0.1/core/src/observability/traces.rs +215 -0
  45. pyreverseetl-2.0.1/core/src/pipeline/activation_pipeline.rs +282 -0
  46. pyreverseetl-2.0.1/core/src/pipeline/backpressure.rs +184 -0
  47. pyreverseetl-2.0.1/core/src/pipeline/latency_tracker.rs +189 -0
  48. pyreverseetl-2.0.1/core/src/pipeline/mod.rs +15 -0
  49. pyreverseetl-2.0.1/core/src/sources/kafka.rs +416 -0
  50. pyreverseetl-2.0.1/core/src/sources/mod.rs +28 -0
  51. pyreverseetl-2.0.1/core/src/sources/polling.rs +754 -0
  52. pyreverseetl-2.0.1/core/src/sources/sync_config.rs +701 -0
  53. pyreverseetl-2.0.1/core/src/statguardian.rs +123 -0
  54. pyreverseetl-2.0.1/core/src/storage/mod.rs +5 -0
  55. pyreverseetl-2.0.1/core/src/storage/repository.rs +477 -0
  56. pyreverseetl-2.0.1/core/src/storage/schema.rs +123 -0
  57. pyreverseetl-2.0.1/core/src/streaming/event_processor.rs +193 -0
  58. pyreverseetl-2.0.1/core/src/streaming/event_schema.rs +217 -0
  59. pyreverseetl-2.0.1/core/src/streaming/mod.rs +15 -0
  60. pyreverseetl-2.0.1/core/src/streampdf.rs +122 -0
  61. pyreverseetl-2.0.1/core/src/streamxl.rs +74 -0
  62. pyreverseetl-2.0.1/core/src/sync.rs +292 -0
  63. pyreverseetl-2.0.1/core/src/testing/connector_test.rs +203 -0
  64. pyreverseetl-2.0.1/core/src/testing/harness.rs +335 -0
  65. pyreverseetl-2.0.1/core/src/testing/metrics.rs +274 -0
  66. pyreverseetl-2.0.1/core/src/testing/mod.rs +12 -0
  67. pyreverseetl-2.0.1/core/src/testing/test_data.rs +288 -0
  68. pyreverseetl-2.0.1/core/src/transformers/mod.rs +244 -0
  69. pyreverseetl-2.0.1/core/src/transformers/spark.rs +614 -0
  70. pyreverseetl-2.0.1/core/src/workflow.rs +301 -0
  71. pyreverseetl-2.0.1/pyproject.toml +33 -0
  72. pyreverseetl-2.0.1/python/Cargo.toml +16 -0
  73. pyreverseetl-2.0.1/python/pyreverseetl/cli.py +370 -0
  74. pyreverseetl-2.0.1/python/pyreverseetl/server.py +223 -0
  75. pyreverseetl-2.0.1/python/src/lib.rs +213 -0
@@ -0,0 +1,2232 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "async-trait"
37
+ version = "0.1.89"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
40
+ dependencies = [
41
+ "proc-macro2",
42
+ "quote",
43
+ "syn",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "autocfg"
48
+ version = "1.5.1"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
51
+
52
+ [[package]]
53
+ name = "base64"
54
+ version = "0.21.7"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
57
+
58
+ [[package]]
59
+ name = "base64"
60
+ version = "0.22.1"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
63
+
64
+ [[package]]
65
+ name = "bitflags"
66
+ version = "1.3.2"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
69
+
70
+ [[package]]
71
+ name = "bitflags"
72
+ version = "2.13.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
75
+
76
+ [[package]]
77
+ name = "bumpalo"
78
+ version = "3.20.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
81
+
82
+ [[package]]
83
+ name = "bytes"
84
+ version = "1.12.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
87
+
88
+ [[package]]
89
+ name = "cc"
90
+ version = "1.2.67"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
93
+ dependencies = [
94
+ "find-msvc-tools",
95
+ "shlex",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "cfg-if"
100
+ version = "1.0.4"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
103
+
104
+ [[package]]
105
+ name = "chrono"
106
+ version = "0.4.45"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
109
+ dependencies = [
110
+ "iana-time-zone",
111
+ "js-sys",
112
+ "num-traits",
113
+ "serde",
114
+ "wasm-bindgen",
115
+ "windows-link",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "chrono-tz"
120
+ version = "0.8.6"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e"
123
+ dependencies = [
124
+ "chrono",
125
+ "chrono-tz-build",
126
+ "phf",
127
+ "serde",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "chrono-tz-build"
132
+ version = "0.2.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
135
+ dependencies = [
136
+ "parse-zoneinfo",
137
+ "phf",
138
+ "phf_codegen",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "cmake"
143
+ version = "0.1.58"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
146
+ dependencies = [
147
+ "cc",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "core-foundation"
152
+ version = "0.9.4"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
155
+ dependencies = [
156
+ "core-foundation-sys",
157
+ "libc",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "core-foundation"
162
+ version = "0.10.1"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
165
+ dependencies = [
166
+ "core-foundation-sys",
167
+ "libc",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "core-foundation-sys"
172
+ version = "0.8.7"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
175
+
176
+ [[package]]
177
+ name = "displaydoc"
178
+ version = "0.2.6"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
181
+ dependencies = [
182
+ "proc-macro2",
183
+ "quote",
184
+ "syn",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "duct"
189
+ version = "0.13.7"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "e4ab5718d1224b63252cd0c6f74f6480f9ffeb117438a2e0f5cf6d9a4798929c"
192
+ dependencies = [
193
+ "libc",
194
+ "once_cell",
195
+ "os_pipe",
196
+ "shared_child",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "encoding_rs"
201
+ version = "0.8.35"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
204
+ dependencies = [
205
+ "cfg-if",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "equivalent"
210
+ version = "1.0.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
213
+
214
+ [[package]]
215
+ name = "errno"
216
+ version = "0.3.14"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
219
+ dependencies = [
220
+ "libc",
221
+ "windows-sys 0.61.2",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "fallible-iterator"
226
+ version = "0.3.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
229
+
230
+ [[package]]
231
+ name = "fallible-streaming-iterator"
232
+ version = "0.1.9"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
235
+
236
+ [[package]]
237
+ name = "fastrand"
238
+ version = "2.4.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
241
+
242
+ [[package]]
243
+ name = "find-msvc-tools"
244
+ version = "0.1.9"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
247
+
248
+ [[package]]
249
+ name = "fnv"
250
+ version = "1.0.7"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
253
+
254
+ [[package]]
255
+ name = "foreign-types"
256
+ version = "0.3.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
259
+ dependencies = [
260
+ "foreign-types-shared",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "foreign-types-shared"
265
+ version = "0.1.1"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
268
+
269
+ [[package]]
270
+ name = "form_urlencoded"
271
+ version = "1.2.2"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
274
+ dependencies = [
275
+ "percent-encoding",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "futures-channel"
280
+ version = "0.3.32"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
283
+ dependencies = [
284
+ "futures-core",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "futures-core"
289
+ version = "0.3.32"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
292
+
293
+ [[package]]
294
+ name = "futures-sink"
295
+ version = "0.3.32"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
298
+
299
+ [[package]]
300
+ name = "futures-task"
301
+ version = "0.3.32"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
304
+
305
+ [[package]]
306
+ name = "futures-util"
307
+ version = "0.3.32"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
310
+ dependencies = [
311
+ "futures-core",
312
+ "futures-task",
313
+ "pin-project-lite",
314
+ "slab",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "getrandom"
319
+ version = "0.4.3"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
322
+ dependencies = [
323
+ "cfg-if",
324
+ "libc",
325
+ "r-efi",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "h2"
330
+ version = "0.3.27"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
333
+ dependencies = [
334
+ "bytes",
335
+ "fnv",
336
+ "futures-core",
337
+ "futures-sink",
338
+ "futures-util",
339
+ "http",
340
+ "indexmap",
341
+ "slab",
342
+ "tokio",
343
+ "tokio-util",
344
+ "tracing",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "hashbrown"
349
+ version = "0.14.5"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
352
+ dependencies = [
353
+ "ahash",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "hashbrown"
358
+ version = "0.17.1"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
361
+
362
+ [[package]]
363
+ name = "hashlink"
364
+ version = "0.9.1"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
367
+ dependencies = [
368
+ "hashbrown 0.14.5",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "heck"
373
+ version = "0.5.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
376
+
377
+ [[package]]
378
+ name = "http"
379
+ version = "0.2.12"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
382
+ dependencies = [
383
+ "bytes",
384
+ "fnv",
385
+ "itoa",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "http-body"
390
+ version = "0.4.6"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
393
+ dependencies = [
394
+ "bytes",
395
+ "http",
396
+ "pin-project-lite",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "httparse"
401
+ version = "1.10.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
404
+
405
+ [[package]]
406
+ name = "httpdate"
407
+ version = "1.0.3"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
410
+
411
+ [[package]]
412
+ name = "hyper"
413
+ version = "0.14.32"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
416
+ dependencies = [
417
+ "bytes",
418
+ "futures-channel",
419
+ "futures-core",
420
+ "futures-util",
421
+ "h2",
422
+ "http",
423
+ "http-body",
424
+ "httparse",
425
+ "httpdate",
426
+ "itoa",
427
+ "pin-project-lite",
428
+ "socket2 0.5.10",
429
+ "tokio",
430
+ "tower-service",
431
+ "tracing",
432
+ "want",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "hyper-tls"
437
+ version = "0.5.0"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
440
+ dependencies = [
441
+ "bytes",
442
+ "hyper",
443
+ "native-tls",
444
+ "tokio",
445
+ "tokio-native-tls",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "iana-time-zone"
450
+ version = "0.1.65"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
453
+ dependencies = [
454
+ "android_system_properties",
455
+ "core-foundation-sys",
456
+ "iana-time-zone-haiku",
457
+ "js-sys",
458
+ "log",
459
+ "wasm-bindgen",
460
+ "windows-core",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "iana-time-zone-haiku"
465
+ version = "0.1.2"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
468
+ dependencies = [
469
+ "cc",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "icu_collections"
474
+ version = "2.2.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
477
+ dependencies = [
478
+ "displaydoc",
479
+ "potential_utf",
480
+ "utf8_iter",
481
+ "yoke",
482
+ "zerofrom",
483
+ "zerovec",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "icu_locale_core"
488
+ version = "2.2.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
491
+ dependencies = [
492
+ "displaydoc",
493
+ "litemap",
494
+ "tinystr",
495
+ "writeable",
496
+ "zerovec",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "icu_normalizer"
501
+ version = "2.2.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
504
+ dependencies = [
505
+ "icu_collections",
506
+ "icu_normalizer_data",
507
+ "icu_properties",
508
+ "icu_provider",
509
+ "smallvec",
510
+ "zerovec",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "icu_normalizer_data"
515
+ version = "2.2.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
518
+
519
+ [[package]]
520
+ name = "icu_properties"
521
+ version = "2.2.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
524
+ dependencies = [
525
+ "icu_collections",
526
+ "icu_locale_core",
527
+ "icu_properties_data",
528
+ "icu_provider",
529
+ "zerotrie",
530
+ "zerovec",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "icu_properties_data"
535
+ version = "2.2.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
538
+
539
+ [[package]]
540
+ name = "icu_provider"
541
+ version = "2.2.0"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
544
+ dependencies = [
545
+ "displaydoc",
546
+ "icu_locale_core",
547
+ "writeable",
548
+ "yoke",
549
+ "zerofrom",
550
+ "zerotrie",
551
+ "zerovec",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "idna"
556
+ version = "1.1.0"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
559
+ dependencies = [
560
+ "idna_adapter",
561
+ "smallvec",
562
+ "utf8_iter",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "idna_adapter"
567
+ version = "1.2.2"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
570
+ dependencies = [
571
+ "icu_normalizer",
572
+ "icu_properties",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "indexmap"
577
+ version = "2.14.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
580
+ dependencies = [
581
+ "equivalent",
582
+ "hashbrown 0.17.1",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "indoc"
587
+ version = "2.0.7"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
590
+ dependencies = [
591
+ "rustversion",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "ipnet"
596
+ version = "2.12.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
599
+
600
+ [[package]]
601
+ name = "itoa"
602
+ version = "1.0.18"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
605
+
606
+ [[package]]
607
+ name = "js-sys"
608
+ version = "0.3.103"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
611
+ dependencies = [
612
+ "cfg-if",
613
+ "futures-util",
614
+ "wasm-bindgen",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "libc"
619
+ version = "0.2.186"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
622
+
623
+ [[package]]
624
+ name = "libsqlite3-sys"
625
+ version = "0.28.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
628
+ dependencies = [
629
+ "cc",
630
+ "pkg-config",
631
+ "vcpkg",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "libz-sys"
636
+ version = "1.1.29"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
639
+ dependencies = [
640
+ "cc",
641
+ "libc",
642
+ "pkg-config",
643
+ "vcpkg",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "linux-raw-sys"
648
+ version = "0.12.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
651
+
652
+ [[package]]
653
+ name = "litemap"
654
+ version = "0.8.2"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
657
+
658
+ [[package]]
659
+ name = "lock_api"
660
+ version = "0.4.14"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
663
+ dependencies = [
664
+ "scopeguard",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "log"
669
+ version = "0.4.33"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
672
+
673
+ [[package]]
674
+ name = "memchr"
675
+ version = "2.8.3"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
678
+
679
+ [[package]]
680
+ name = "memoffset"
681
+ version = "0.9.1"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
684
+ dependencies = [
685
+ "autocfg",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "mime"
690
+ version = "0.3.17"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
693
+
694
+ [[package]]
695
+ name = "mio"
696
+ version = "1.2.2"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
699
+ dependencies = [
700
+ "libc",
701
+ "wasi",
702
+ "windows-sys 0.61.2",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "native-tls"
707
+ version = "0.2.18"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
710
+ dependencies = [
711
+ "libc",
712
+ "log",
713
+ "openssl",
714
+ "openssl-probe",
715
+ "openssl-sys",
716
+ "schannel",
717
+ "security-framework",
718
+ "security-framework-sys",
719
+ "tempfile",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "num-traits"
724
+ version = "0.2.19"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
727
+ dependencies = [
728
+ "autocfg",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "num_enum"
733
+ version = "0.7.6"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
736
+ dependencies = [
737
+ "num_enum_derive",
738
+ "rustversion",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "num_enum_derive"
743
+ version = "0.7.6"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
746
+ dependencies = [
747
+ "proc-macro-crate",
748
+ "proc-macro2",
749
+ "quote",
750
+ "syn",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "once_cell"
755
+ version = "1.21.4"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
758
+
759
+ [[package]]
760
+ name = "openssl"
761
+ version = "0.10.81"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
764
+ dependencies = [
765
+ "bitflags 2.13.1",
766
+ "cfg-if",
767
+ "foreign-types",
768
+ "libc",
769
+ "openssl-macros",
770
+ "openssl-sys",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "openssl-macros"
775
+ version = "0.1.1"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
778
+ dependencies = [
779
+ "proc-macro2",
780
+ "quote",
781
+ "syn",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "openssl-probe"
786
+ version = "0.2.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
789
+
790
+ [[package]]
791
+ name = "openssl-sys"
792
+ version = "0.9.117"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
795
+ dependencies = [
796
+ "cc",
797
+ "libc",
798
+ "pkg-config",
799
+ "vcpkg",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "opentelemetry"
804
+ version = "0.22.0"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
807
+ dependencies = [
808
+ "futures-core",
809
+ "futures-sink",
810
+ "js-sys",
811
+ "once_cell",
812
+ "pin-project-lite",
813
+ "thiserror",
814
+ "urlencoding",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "opentelemetry-http"
819
+ version = "0.11.1"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "7690dc77bf776713848c4faa6501157469017eaf332baccd4eb1cea928743d94"
822
+ dependencies = [
823
+ "async-trait",
824
+ "bytes",
825
+ "http",
826
+ "opentelemetry",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "os_pipe"
831
+ version = "1.2.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
834
+ dependencies = [
835
+ "libc",
836
+ "windows-sys 0.61.2",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "parking_lot"
841
+ version = "0.12.5"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
844
+ dependencies = [
845
+ "lock_api",
846
+ "parking_lot_core",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "parking_lot_core"
851
+ version = "0.9.12"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
854
+ dependencies = [
855
+ "cfg-if",
856
+ "libc",
857
+ "redox_syscall",
858
+ "smallvec",
859
+ "windows-link",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "parse-zoneinfo"
864
+ version = "0.3.1"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
867
+ dependencies = [
868
+ "regex",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "percent-encoding"
873
+ version = "2.3.2"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
876
+
877
+ [[package]]
878
+ name = "phf"
879
+ version = "0.11.3"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
882
+ dependencies = [
883
+ "phf_shared",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "phf_codegen"
888
+ version = "0.11.3"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
891
+ dependencies = [
892
+ "phf_generator",
893
+ "phf_shared",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "phf_generator"
898
+ version = "0.11.3"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
901
+ dependencies = [
902
+ "phf_shared",
903
+ "rand",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "phf_shared"
908
+ version = "0.11.3"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
911
+ dependencies = [
912
+ "siphasher",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "pin-project-lite"
917
+ version = "0.2.17"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
920
+
921
+ [[package]]
922
+ name = "pkg-config"
923
+ version = "0.3.33"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
926
+
927
+ [[package]]
928
+ name = "portable-atomic"
929
+ version = "1.14.0"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
932
+
933
+ [[package]]
934
+ name = "potential_utf"
935
+ version = "0.1.5"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
938
+ dependencies = [
939
+ "zerovec",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "proc-macro-crate"
944
+ version = "3.5.0"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
947
+ dependencies = [
948
+ "toml_edit",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "proc-macro2"
953
+ version = "1.0.106"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
956
+ dependencies = [
957
+ "unicode-ident",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "pyo3"
962
+ version = "0.23.5"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
965
+ dependencies = [
966
+ "cfg-if",
967
+ "indoc",
968
+ "libc",
969
+ "memoffset",
970
+ "once_cell",
971
+ "portable-atomic",
972
+ "pyo3-build-config",
973
+ "pyo3-ffi",
974
+ "pyo3-macros",
975
+ "unindent",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "pyo3-build-config"
980
+ version = "0.23.5"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
983
+ dependencies = [
984
+ "once_cell",
985
+ "target-lexicon",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "pyo3-ffi"
990
+ version = "0.23.5"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
993
+ dependencies = [
994
+ "libc",
995
+ "pyo3-build-config",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "pyo3-macros"
1000
+ version = "0.23.5"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1003
+ dependencies = [
1004
+ "proc-macro2",
1005
+ "pyo3-macros-backend",
1006
+ "quote",
1007
+ "syn",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "pyo3-macros-backend"
1012
+ version = "0.23.5"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1015
+ dependencies = [
1016
+ "heck",
1017
+ "proc-macro2",
1018
+ "pyo3-build-config",
1019
+ "quote",
1020
+ "syn",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "pyreverseetl"
1025
+ version = "2.0.0"
1026
+ dependencies = [
1027
+ "chrono",
1028
+ "pyo3",
1029
+ "pyreverseetl-core",
1030
+ "serde_json",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "pyreverseetl-core"
1035
+ version = "2.0.0"
1036
+ dependencies = [
1037
+ "async-trait",
1038
+ "base64 0.22.1",
1039
+ "chrono",
1040
+ "chrono-tz",
1041
+ "opentelemetry",
1042
+ "opentelemetry-http",
1043
+ "parking_lot",
1044
+ "rdkafka",
1045
+ "reqwest",
1046
+ "rusqlite",
1047
+ "serde",
1048
+ "serde_json",
1049
+ "serde_yaml",
1050
+ "thiserror",
1051
+ "tokio",
1052
+ "tracing",
1053
+ "uuid",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "quote"
1058
+ version = "1.0.46"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1061
+ dependencies = [
1062
+ "proc-macro2",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "r-efi"
1067
+ version = "6.0.0"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1070
+
1071
+ [[package]]
1072
+ name = "rand"
1073
+ version = "0.8.7"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1076
+ dependencies = [
1077
+ "rand_core",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "rand_core"
1082
+ version = "0.6.4"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1085
+
1086
+ [[package]]
1087
+ name = "rdkafka"
1088
+ version = "0.36.2"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "1beea247b9a7600a81d4cc33f659ce1a77e1988323d7d2809c7ed1c21f4c316d"
1091
+ dependencies = [
1092
+ "futures-channel",
1093
+ "futures-util",
1094
+ "libc",
1095
+ "log",
1096
+ "rdkafka-sys",
1097
+ "serde",
1098
+ "serde_derive",
1099
+ "serde_json",
1100
+ "slab",
1101
+ "tokio",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "rdkafka-sys"
1106
+ version = "4.10.0+2.12.1"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "e234cf318915c1059d4921ef7f75616b5219b10b46e9f3a511a15eb4b56a3f77"
1109
+ dependencies = [
1110
+ "cmake",
1111
+ "libc",
1112
+ "libz-sys",
1113
+ "num_enum",
1114
+ "openssl-sys",
1115
+ "pkg-config",
1116
+ "sasl2-sys",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "redox_syscall"
1121
+ version = "0.5.18"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1124
+ dependencies = [
1125
+ "bitflags 2.13.1",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "regex"
1130
+ version = "1.13.1"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1133
+ dependencies = [
1134
+ "aho-corasick",
1135
+ "memchr",
1136
+ "regex-automata",
1137
+ "regex-syntax",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "regex-automata"
1142
+ version = "0.4.16"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1145
+ dependencies = [
1146
+ "aho-corasick",
1147
+ "memchr",
1148
+ "regex-syntax",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "regex-syntax"
1153
+ version = "0.8.11"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1156
+
1157
+ [[package]]
1158
+ name = "reqwest"
1159
+ version = "0.11.27"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1162
+ dependencies = [
1163
+ "base64 0.21.7",
1164
+ "bytes",
1165
+ "encoding_rs",
1166
+ "futures-core",
1167
+ "futures-util",
1168
+ "h2",
1169
+ "http",
1170
+ "http-body",
1171
+ "hyper",
1172
+ "hyper-tls",
1173
+ "ipnet",
1174
+ "js-sys",
1175
+ "log",
1176
+ "mime",
1177
+ "native-tls",
1178
+ "once_cell",
1179
+ "percent-encoding",
1180
+ "pin-project-lite",
1181
+ "rustls-pemfile",
1182
+ "serde",
1183
+ "serde_json",
1184
+ "serde_urlencoded",
1185
+ "sync_wrapper",
1186
+ "system-configuration",
1187
+ "tokio",
1188
+ "tokio-native-tls",
1189
+ "tower-service",
1190
+ "url",
1191
+ "wasm-bindgen",
1192
+ "wasm-bindgen-futures",
1193
+ "web-sys",
1194
+ "winreg",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "rusqlite"
1199
+ version = "0.31.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
1202
+ dependencies = [
1203
+ "bitflags 2.13.1",
1204
+ "chrono",
1205
+ "fallible-iterator",
1206
+ "fallible-streaming-iterator",
1207
+ "hashlink",
1208
+ "libsqlite3-sys",
1209
+ "smallvec",
1210
+ "uuid",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "rustix"
1215
+ version = "1.1.4"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1218
+ dependencies = [
1219
+ "bitflags 2.13.1",
1220
+ "errno",
1221
+ "libc",
1222
+ "linux-raw-sys",
1223
+ "windows-sys 0.61.2",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "rustls-pemfile"
1228
+ version = "1.0.4"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
1231
+ dependencies = [
1232
+ "base64 0.21.7",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "rustversion"
1237
+ version = "1.0.23"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1240
+
1241
+ [[package]]
1242
+ name = "ryu"
1243
+ version = "1.0.23"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1246
+
1247
+ [[package]]
1248
+ name = "sasl2-sys"
1249
+ version = "0.1.22+2.1.28"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "05f2a7f7efd9fc98b3a9033272df10709f5ee3fa0eabbd61a527a3a1ed6bd3c6"
1252
+ dependencies = [
1253
+ "cc",
1254
+ "duct",
1255
+ "libc",
1256
+ "pkg-config",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "schannel"
1261
+ version = "0.1.29"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1264
+ dependencies = [
1265
+ "windows-sys 0.61.2",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "scopeguard"
1270
+ version = "1.2.0"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1273
+
1274
+ [[package]]
1275
+ name = "security-framework"
1276
+ version = "3.7.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1279
+ dependencies = [
1280
+ "bitflags 2.13.1",
1281
+ "core-foundation 0.10.1",
1282
+ "core-foundation-sys",
1283
+ "libc",
1284
+ "security-framework-sys",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "security-framework-sys"
1289
+ version = "2.17.0"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1292
+ dependencies = [
1293
+ "core-foundation-sys",
1294
+ "libc",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "serde"
1299
+ version = "1.0.228"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1302
+ dependencies = [
1303
+ "serde_core",
1304
+ "serde_derive",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "serde_core"
1309
+ version = "1.0.228"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1312
+ dependencies = [
1313
+ "serde_derive",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "serde_derive"
1318
+ version = "1.0.228"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1321
+ dependencies = [
1322
+ "proc-macro2",
1323
+ "quote",
1324
+ "syn",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "serde_json"
1329
+ version = "1.0.150"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1332
+ dependencies = [
1333
+ "itoa",
1334
+ "memchr",
1335
+ "serde",
1336
+ "serde_core",
1337
+ "zmij",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "serde_urlencoded"
1342
+ version = "0.7.1"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1345
+ dependencies = [
1346
+ "form_urlencoded",
1347
+ "itoa",
1348
+ "ryu",
1349
+ "serde",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "serde_yaml"
1354
+ version = "0.9.34+deprecated"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1357
+ dependencies = [
1358
+ "indexmap",
1359
+ "itoa",
1360
+ "ryu",
1361
+ "serde",
1362
+ "unsafe-libyaml",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "shared_child"
1367
+ version = "1.1.1"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7"
1370
+ dependencies = [
1371
+ "libc",
1372
+ "sigchld",
1373
+ "windows-sys 0.60.2",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "shlex"
1378
+ version = "2.0.1"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1381
+
1382
+ [[package]]
1383
+ name = "sigchld"
1384
+ version = "0.2.4"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1"
1387
+ dependencies = [
1388
+ "libc",
1389
+ "os_pipe",
1390
+ "signal-hook",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "signal-hook"
1395
+ version = "0.3.18"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1398
+ dependencies = [
1399
+ "libc",
1400
+ "signal-hook-registry",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "signal-hook-registry"
1405
+ version = "1.4.8"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1408
+ dependencies = [
1409
+ "errno",
1410
+ "libc",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "siphasher"
1415
+ version = "1.0.3"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1418
+
1419
+ [[package]]
1420
+ name = "slab"
1421
+ version = "0.4.12"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1424
+
1425
+ [[package]]
1426
+ name = "smallvec"
1427
+ version = "1.15.2"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1430
+
1431
+ [[package]]
1432
+ name = "socket2"
1433
+ version = "0.5.10"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1436
+ dependencies = [
1437
+ "libc",
1438
+ "windows-sys 0.52.0",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "socket2"
1443
+ version = "0.6.5"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1446
+ dependencies = [
1447
+ "libc",
1448
+ "windows-sys 0.61.2",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "stable_deref_trait"
1453
+ version = "1.2.1"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1456
+
1457
+ [[package]]
1458
+ name = "syn"
1459
+ version = "2.0.119"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1462
+ dependencies = [
1463
+ "proc-macro2",
1464
+ "quote",
1465
+ "unicode-ident",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "sync_wrapper"
1470
+ version = "0.1.2"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
1473
+
1474
+ [[package]]
1475
+ name = "synstructure"
1476
+ version = "0.13.2"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1479
+ dependencies = [
1480
+ "proc-macro2",
1481
+ "quote",
1482
+ "syn",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "system-configuration"
1487
+ version = "0.5.1"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
1490
+ dependencies = [
1491
+ "bitflags 1.3.2",
1492
+ "core-foundation 0.9.4",
1493
+ "system-configuration-sys",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "system-configuration-sys"
1498
+ version = "0.5.0"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
1501
+ dependencies = [
1502
+ "core-foundation-sys",
1503
+ "libc",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "target-lexicon"
1508
+ version = "0.12.16"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1511
+
1512
+ [[package]]
1513
+ name = "tempfile"
1514
+ version = "3.27.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1517
+ dependencies = [
1518
+ "fastrand",
1519
+ "getrandom",
1520
+ "once_cell",
1521
+ "rustix",
1522
+ "windows-sys 0.61.2",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "thiserror"
1527
+ version = "1.0.69"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1530
+ dependencies = [
1531
+ "thiserror-impl",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "thiserror-impl"
1536
+ version = "1.0.69"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1539
+ dependencies = [
1540
+ "proc-macro2",
1541
+ "quote",
1542
+ "syn",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "tinystr"
1547
+ version = "0.8.3"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1550
+ dependencies = [
1551
+ "displaydoc",
1552
+ "zerovec",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "tokio"
1557
+ version = "1.53.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
1560
+ dependencies = [
1561
+ "bytes",
1562
+ "libc",
1563
+ "mio",
1564
+ "parking_lot",
1565
+ "pin-project-lite",
1566
+ "signal-hook-registry",
1567
+ "socket2 0.6.5",
1568
+ "tokio-macros",
1569
+ "windows-sys 0.61.2",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "tokio-macros"
1574
+ version = "2.7.1"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
1577
+ dependencies = [
1578
+ "proc-macro2",
1579
+ "quote",
1580
+ "syn",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "tokio-native-tls"
1585
+ version = "0.3.1"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1588
+ dependencies = [
1589
+ "native-tls",
1590
+ "tokio",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "tokio-util"
1595
+ version = "0.7.18"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1598
+ dependencies = [
1599
+ "bytes",
1600
+ "futures-core",
1601
+ "futures-sink",
1602
+ "pin-project-lite",
1603
+ "tokio",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "toml_datetime"
1608
+ version = "1.1.1+spec-1.1.0"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1611
+ dependencies = [
1612
+ "serde_core",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "toml_edit"
1617
+ version = "0.25.13+spec-1.1.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
1620
+ dependencies = [
1621
+ "indexmap",
1622
+ "toml_datetime",
1623
+ "toml_parser",
1624
+ "winnow",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "toml_parser"
1629
+ version = "1.1.2+spec-1.1.0"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1632
+ dependencies = [
1633
+ "winnow",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "tower-service"
1638
+ version = "0.3.3"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1641
+
1642
+ [[package]]
1643
+ name = "tracing"
1644
+ version = "0.1.44"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1647
+ dependencies = [
1648
+ "pin-project-lite",
1649
+ "tracing-attributes",
1650
+ "tracing-core",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "tracing-attributes"
1655
+ version = "0.1.31"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1658
+ dependencies = [
1659
+ "proc-macro2",
1660
+ "quote",
1661
+ "syn",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "tracing-core"
1666
+ version = "0.1.36"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1669
+ dependencies = [
1670
+ "once_cell",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "try-lock"
1675
+ version = "0.2.5"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1678
+
1679
+ [[package]]
1680
+ name = "unicode-ident"
1681
+ version = "1.0.24"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1684
+
1685
+ [[package]]
1686
+ name = "unindent"
1687
+ version = "0.2.4"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1690
+
1691
+ [[package]]
1692
+ name = "unsafe-libyaml"
1693
+ version = "0.2.11"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1696
+
1697
+ [[package]]
1698
+ name = "url"
1699
+ version = "2.5.8"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1702
+ dependencies = [
1703
+ "form_urlencoded",
1704
+ "idna",
1705
+ "percent-encoding",
1706
+ "serde",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "urlencoding"
1711
+ version = "2.1.3"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
1714
+
1715
+ [[package]]
1716
+ name = "utf8_iter"
1717
+ version = "1.0.4"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1720
+
1721
+ [[package]]
1722
+ name = "uuid"
1723
+ version = "1.24.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
1726
+ dependencies = [
1727
+ "getrandom",
1728
+ "js-sys",
1729
+ "serde_core",
1730
+ "wasm-bindgen",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "vcpkg"
1735
+ version = "0.2.15"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1738
+
1739
+ [[package]]
1740
+ name = "version_check"
1741
+ version = "0.9.5"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1744
+
1745
+ [[package]]
1746
+ name = "want"
1747
+ version = "0.3.1"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1750
+ dependencies = [
1751
+ "try-lock",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "wasi"
1756
+ version = "0.11.1+wasi-snapshot-preview1"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1759
+
1760
+ [[package]]
1761
+ name = "wasm-bindgen"
1762
+ version = "0.2.126"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1765
+ dependencies = [
1766
+ "cfg-if",
1767
+ "once_cell",
1768
+ "rustversion",
1769
+ "wasm-bindgen-macro",
1770
+ "wasm-bindgen-shared",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "wasm-bindgen-futures"
1775
+ version = "0.4.76"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
1778
+ dependencies = [
1779
+ "js-sys",
1780
+ "wasm-bindgen",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "wasm-bindgen-macro"
1785
+ version = "0.2.126"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1788
+ dependencies = [
1789
+ "quote",
1790
+ "wasm-bindgen-macro-support",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "wasm-bindgen-macro-support"
1795
+ version = "0.2.126"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1798
+ dependencies = [
1799
+ "bumpalo",
1800
+ "proc-macro2",
1801
+ "quote",
1802
+ "syn",
1803
+ "wasm-bindgen-shared",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "wasm-bindgen-shared"
1808
+ version = "0.2.126"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1811
+ dependencies = [
1812
+ "unicode-ident",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "web-sys"
1817
+ version = "0.3.103"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1820
+ dependencies = [
1821
+ "js-sys",
1822
+ "wasm-bindgen",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "windows-core"
1827
+ version = "0.62.2"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1830
+ dependencies = [
1831
+ "windows-implement",
1832
+ "windows-interface",
1833
+ "windows-link",
1834
+ "windows-result",
1835
+ "windows-strings",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "windows-implement"
1840
+ version = "0.60.2"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1843
+ dependencies = [
1844
+ "proc-macro2",
1845
+ "quote",
1846
+ "syn",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "windows-interface"
1851
+ version = "0.59.3"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1854
+ dependencies = [
1855
+ "proc-macro2",
1856
+ "quote",
1857
+ "syn",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "windows-link"
1862
+ version = "0.2.1"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1865
+
1866
+ [[package]]
1867
+ name = "windows-result"
1868
+ version = "0.4.1"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1871
+ dependencies = [
1872
+ "windows-link",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "windows-strings"
1877
+ version = "0.5.1"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1880
+ dependencies = [
1881
+ "windows-link",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "windows-sys"
1886
+ version = "0.48.0"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1889
+ dependencies = [
1890
+ "windows-targets 0.48.5",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "windows-sys"
1895
+ version = "0.52.0"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1898
+ dependencies = [
1899
+ "windows-targets 0.52.6",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "windows-sys"
1904
+ version = "0.60.2"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1907
+ dependencies = [
1908
+ "windows-targets 0.53.5",
1909
+ ]
1910
+
1911
+ [[package]]
1912
+ name = "windows-sys"
1913
+ version = "0.61.2"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1916
+ dependencies = [
1917
+ "windows-link",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "windows-targets"
1922
+ version = "0.48.5"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1925
+ dependencies = [
1926
+ "windows_aarch64_gnullvm 0.48.5",
1927
+ "windows_aarch64_msvc 0.48.5",
1928
+ "windows_i686_gnu 0.48.5",
1929
+ "windows_i686_msvc 0.48.5",
1930
+ "windows_x86_64_gnu 0.48.5",
1931
+ "windows_x86_64_gnullvm 0.48.5",
1932
+ "windows_x86_64_msvc 0.48.5",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "windows-targets"
1937
+ version = "0.52.6"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1940
+ dependencies = [
1941
+ "windows_aarch64_gnullvm 0.52.6",
1942
+ "windows_aarch64_msvc 0.52.6",
1943
+ "windows_i686_gnu 0.52.6",
1944
+ "windows_i686_gnullvm 0.52.6",
1945
+ "windows_i686_msvc 0.52.6",
1946
+ "windows_x86_64_gnu 0.52.6",
1947
+ "windows_x86_64_gnullvm 0.52.6",
1948
+ "windows_x86_64_msvc 0.52.6",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "windows-targets"
1953
+ version = "0.53.5"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1956
+ dependencies = [
1957
+ "windows-link",
1958
+ "windows_aarch64_gnullvm 0.53.1",
1959
+ "windows_aarch64_msvc 0.53.1",
1960
+ "windows_i686_gnu 0.53.1",
1961
+ "windows_i686_gnullvm 0.53.1",
1962
+ "windows_i686_msvc 0.53.1",
1963
+ "windows_x86_64_gnu 0.53.1",
1964
+ "windows_x86_64_gnullvm 0.53.1",
1965
+ "windows_x86_64_msvc 0.53.1",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "windows_aarch64_gnullvm"
1970
+ version = "0.48.5"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1973
+
1974
+ [[package]]
1975
+ name = "windows_aarch64_gnullvm"
1976
+ version = "0.52.6"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1979
+
1980
+ [[package]]
1981
+ name = "windows_aarch64_gnullvm"
1982
+ version = "0.53.1"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1985
+
1986
+ [[package]]
1987
+ name = "windows_aarch64_msvc"
1988
+ version = "0.48.5"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1991
+
1992
+ [[package]]
1993
+ name = "windows_aarch64_msvc"
1994
+ version = "0.52.6"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1997
+
1998
+ [[package]]
1999
+ name = "windows_aarch64_msvc"
2000
+ version = "0.53.1"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2003
+
2004
+ [[package]]
2005
+ name = "windows_i686_gnu"
2006
+ version = "0.48.5"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2009
+
2010
+ [[package]]
2011
+ name = "windows_i686_gnu"
2012
+ version = "0.52.6"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2015
+
2016
+ [[package]]
2017
+ name = "windows_i686_gnu"
2018
+ version = "0.53.1"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2021
+
2022
+ [[package]]
2023
+ name = "windows_i686_gnullvm"
2024
+ version = "0.52.6"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2027
+
2028
+ [[package]]
2029
+ name = "windows_i686_gnullvm"
2030
+ version = "0.53.1"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2033
+
2034
+ [[package]]
2035
+ name = "windows_i686_msvc"
2036
+ version = "0.48.5"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2039
+
2040
+ [[package]]
2041
+ name = "windows_i686_msvc"
2042
+ version = "0.52.6"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2045
+
2046
+ [[package]]
2047
+ name = "windows_i686_msvc"
2048
+ version = "0.53.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2051
+
2052
+ [[package]]
2053
+ name = "windows_x86_64_gnu"
2054
+ version = "0.48.5"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2057
+
2058
+ [[package]]
2059
+ name = "windows_x86_64_gnu"
2060
+ version = "0.52.6"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2063
+
2064
+ [[package]]
2065
+ name = "windows_x86_64_gnu"
2066
+ version = "0.53.1"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2069
+
2070
+ [[package]]
2071
+ name = "windows_x86_64_gnullvm"
2072
+ version = "0.48.5"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2075
+
2076
+ [[package]]
2077
+ name = "windows_x86_64_gnullvm"
2078
+ version = "0.52.6"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2081
+
2082
+ [[package]]
2083
+ name = "windows_x86_64_gnullvm"
2084
+ version = "0.53.1"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2087
+
2088
+ [[package]]
2089
+ name = "windows_x86_64_msvc"
2090
+ version = "0.48.5"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2093
+
2094
+ [[package]]
2095
+ name = "windows_x86_64_msvc"
2096
+ version = "0.52.6"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2099
+
2100
+ [[package]]
2101
+ name = "windows_x86_64_msvc"
2102
+ version = "0.53.1"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2105
+
2106
+ [[package]]
2107
+ name = "winnow"
2108
+ version = "1.0.4"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2111
+ dependencies = [
2112
+ "memchr",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "winreg"
2117
+ version = "0.50.0"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2120
+ dependencies = [
2121
+ "cfg-if",
2122
+ "windows-sys 0.48.0",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "writeable"
2127
+ version = "0.6.3"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2130
+
2131
+ [[package]]
2132
+ name = "yoke"
2133
+ version = "0.8.3"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2136
+ dependencies = [
2137
+ "stable_deref_trait",
2138
+ "yoke-derive",
2139
+ "zerofrom",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "yoke-derive"
2144
+ version = "0.8.2"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2147
+ dependencies = [
2148
+ "proc-macro2",
2149
+ "quote",
2150
+ "syn",
2151
+ "synstructure",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "zerocopy"
2156
+ version = "0.8.54"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
2159
+ dependencies = [
2160
+ "zerocopy-derive",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "zerocopy-derive"
2165
+ version = "0.8.54"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
2168
+ dependencies = [
2169
+ "proc-macro2",
2170
+ "quote",
2171
+ "syn",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "zerofrom"
2176
+ version = "0.1.8"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2179
+ dependencies = [
2180
+ "zerofrom-derive",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "zerofrom-derive"
2185
+ version = "0.1.7"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2188
+ dependencies = [
2189
+ "proc-macro2",
2190
+ "quote",
2191
+ "syn",
2192
+ "synstructure",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "zerotrie"
2197
+ version = "0.2.4"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2200
+ dependencies = [
2201
+ "displaydoc",
2202
+ "yoke",
2203
+ "zerofrom",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "zerovec"
2208
+ version = "0.11.6"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2211
+ dependencies = [
2212
+ "yoke",
2213
+ "zerofrom",
2214
+ "zerovec-derive",
2215
+ ]
2216
+
2217
+ [[package]]
2218
+ name = "zerovec-derive"
2219
+ version = "0.11.3"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2222
+ dependencies = [
2223
+ "proc-macro2",
2224
+ "quote",
2225
+ "syn",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "zmij"
2230
+ version = "1.0.23"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"