supply-chain-graph 0.1.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. supply_chain_graph-0.1.0/Cargo.lock +2358 -0
  2. supply_chain_graph-0.1.0/Cargo.lock.old +2317 -0
  3. supply_chain_graph-0.1.0/Cargo.toml +79 -0
  4. supply_chain_graph-0.1.0/PKG-INFO +4 -0
  5. supply_chain_graph-0.1.0/config/settings.yml +6 -0
  6. supply_chain_graph-0.1.0/dist/supply-0.1.0-cp37-abi3-manylinux_2_28_x86_64.whl +0 -0
  7. supply_chain_graph-0.1.0/dist/supply-0.1.0.tar.gz +0 -0
  8. supply_chain_graph-0.1.0/examples/laptop_network.py +115 -0
  9. supply_chain_graph-0.1.0/examples/sc_samples.py +185 -0
  10. supply_chain_graph-0.1.0/notebooks/graph_sc.ipynb +179 -0
  11. supply_chain_graph-0.1.0/notebooks/laptop_sc.ipynb +564 -0
  12. supply_chain_graph-0.1.0/notebooks/py_laptop_sc.ipynb +397 -0
  13. supply_chain_graph-0.1.0/notebooks/request_service.ipynb +215 -0
  14. supply_chain_graph-0.1.0/notebooks/static_path_cost.ipynb +236 -0
  15. supply_chain_graph-0.1.0/profile.json +1 -0
  16. supply_chain_graph-0.1.0/pyproject.toml +23 -0
  17. supply_chain_graph-0.1.0/src/alt_operation_planning_service.rs +93 -0
  18. supply_chain_graph-0.1.0/src/alternate_material_flow.rs +171 -0
  19. supply_chain_graph-0.1.0/src/alternate_operation.rs +925 -0
  20. supply_chain_graph-0.1.0/src/basic_operation_planning_service.rs +390 -0
  21. supply_chain_graph-0.1.0/src/basic_sku_planning_service.rs +100 -0
  22. supply_chain_graph-0.1.0/src/constants.rs +41 -0
  23. supply_chain_graph-0.1.0/src/demand.rs +255 -0
  24. supply_chain_graph-0.1.0/src/demand_planner.rs +491 -0
  25. supply_chain_graph-0.1.0/src/flow.rs +188 -0
  26. supply_chain_graph-0.1.0/src/flow_types.rs +119 -0
  27. supply_chain_graph-0.1.0/src/iflow.rs +6 -0
  28. supply_chain_graph-0.1.0/src/inventory_profile.rs +164 -0
  29. supply_chain_graph-0.1.0/src/ioperation.rs +5 -0
  30. supply_chain_graph-0.1.0/src/lib.rs +92 -0
  31. supply_chain_graph-0.1.0/src/location.rs +143 -0
  32. supply_chain_graph-0.1.0/src/location_group.rs +58 -0
  33. supply_chain_graph-0.1.0/src/logger_config.rs +82 -0
  34. supply_chain_graph-0.1.0/src/main.rs +16 -0
  35. supply_chain_graph-0.1.0/src/motivator.rs +15 -0
  36. supply_chain_graph-0.1.0/src/operation.rs +989 -0
  37. supply_chain_graph-0.1.0/src/operation_plan.rs +102 -0
  38. supply_chain_graph-0.1.0/src/plan_proposal.rs +498 -0
  39. supply_chain_graph-0.1.0/src/planner.rs +92 -0
  40. supply_chain_graph-0.1.0/src/planning_service.rs +11 -0
  41. supply_chain_graph-0.1.0/src/product.rs +82 -0
  42. supply_chain_graph-0.1.0/src/py_interface/network_objects.rs +529 -0
  43. supply_chain_graph-0.1.0/src/quantity_date.rs +47 -0
  44. supply_chain_graph-0.1.0/src/reports/plan_exporter.rs +377 -0
  45. supply_chain_graph-0.1.0/src/resource.rs +481 -0
  46. supply_chain_graph-0.1.0/src/resource_flow.rs +157 -0
  47. supply_chain_graph-0.1.0/src/scale/laptop_sc_scaled.rs +366 -0
  48. supply_chain_graph-0.1.0/src/simultaneous_flow.rs +172 -0
  49. supply_chain_graph-0.1.0/src/sku.rs +283 -0
  50. supply_chain_graph-0.1.0/src/specification.rs +187 -0
  51. supply_chain_graph-0.1.0/src/supply_chains/sc_with_alternates.rs +257 -0
  52. supply_chain_graph-0.1.0/src/utilities/cost_calculator.rs +822 -0
  53. supply_chain_graph-0.1.0/src/utilities/memory.rs +52 -0
  54. supply_chain_graph-0.1.0/src/utilities/settings.rs +139 -0
  55. supply_chain_graph-0.1.0/src/utilities/traverse.rs +340 -0
  56. supply_chain_graph-0.1.0/src/utilities/unique.rs +20 -0
  57. supply_chain_graph-0.1.0/src/utilities/upstream_traverse.rs +149 -0
  58. supply_chain_graph-0.1.0/src/web/supply_plan_service.rs +115 -0
  59. supply_chain_graph-0.1.0/tarpaulin-report.html +671 -0
  60. supply_chain_graph-0.1.0/tests/config/settings_trace_selected_demands.yml +6 -0
  61. supply_chain_graph-0.1.0/tests/data/car_sc_constrained_planning/expects/inventory_profiles.csv +14 -0
  62. supply_chain_graph-0.1.0/tests/data/car_sc_constrained_planning/expects/operation_plans.csv +18 -0
  63. supply_chain_graph-0.1.0/tests/data/case_1/expects/inventory_profiles.csv +5 -0
  64. supply_chain_graph-0.1.0/tests/data/case_1/expects/operation_plans.csv +2 -0
  65. supply_chain_graph-0.1.0/tests/data/exporter_sample/expects/inventory_profiles.csv +5 -0
  66. supply_chain_graph-0.1.0/tests/data/exporter_sample/expects/operation_plans.csv +3 -0
  67. supply_chain_graph-0.1.0/tests/data/laptop_planning/expects/inventory_profiles.csv +20 -0
  68. supply_chain_graph-0.1.0/tests/data/laptop_planning/expects/operation_plans.csv +26 -0
  69. supply_chain_graph-0.1.0/tests/data/laptop_planning/expects/resource_profiles.csv +18 -0
  70. supply_chain_graph-0.1.0/tests/data/laptop_planning_multiple_capacity_days/expects/inventory_profiles.csv +34 -0
  71. supply_chain_graph-0.1.0/tests/data/laptop_planning_multiple_capacity_days/expects/operation_plans.csv +47 -0
  72. supply_chain_graph-0.1.0/tests/data/laptop_planning_multiple_capacity_days/expects/resource_profiles.csv +18 -0
  73. supply_chain_graph-0.1.0/tests/data/laptop_sc_with_effective_periods/expects/inventory_profiles.csv +20 -0
  74. supply_chain_graph-0.1.0/tests/data/laptop_sc_with_effective_periods/expects/operation_plans.csv +29 -0
  75. supply_chain_graph-0.1.0/tests/data/laptop_sc_with_effective_periods/expects/resource_profiles.csv +18 -0
  76. supply_chain_graph-0.1.0/tests/data/lot_sized_car_sc_basic_1/expects/inventory_profiles.csv +9 -0
  77. supply_chain_graph-0.1.0/tests/data/lot_sized_car_sc_basic_1/expects/operation_plans.csv +10 -0
  78. supply_chain_graph-0.1.0/tests/data/lot_sized_car_sc_basic_2/expects/inventory_profiles.csv +10 -0
  79. supply_chain_graph-0.1.0/tests/data/lot_sized_car_sc_basic_2/expects/operation_plans.csv +10 -0
  80. supply_chain_graph-0.1.0/tests/data/multiple_lot_sized_car_sc_with_capacity/expects/inventory_profiles.csv +11 -0
  81. supply_chain_graph-0.1.0/tests/data/multiple_lot_sized_car_sc_with_capacity/expects/operation_plans.csv +11 -0
  82. supply_chain_graph-0.1.0/tests/data/multiple_lot_sized_car_sc_with_capacity/expects/resource_profiles.csv +4 -0
  83. supply_chain_graph-0.1.0/tests/data/run_result/case_2/expects/inventory_profiles.csv +65 -0
  84. supply_chain_graph-0.1.0/tests/data/run_result/case_4/expects/resource_profiles.csv +101 -0
  85. supply_chain_graph-0.1.0/tests/data/run_result/exporter_sample/expects/inventory_profiles.csv +5 -0
  86. supply_chain_graph-0.1.0/tests/data/run_result/exporter_sample/expects/operation_plans.csv +2 -0
  87. supply_chain_graph-0.1.0/tests/data/run_result/exporter_sample/expects/resource_profiles.csv +1101 -0
  88. supply_chain_graph-0.1.0/tests/data/run_result/jupyter/expects/inventory_profiles.csv +20 -0
  89. supply_chain_graph-0.1.0/tests/data/run_result/jupyter/expects/operation_plans.csv +26 -0
  90. supply_chain_graph-0.1.0/tests/data/run_result/jupyter/expects/resource_profiles.csv +18 -0
  91. supply_chain_graph-0.1.0/tests/data/run_result/laptop_alternate_sc/expects/inventory_profiles.csv +16 -0
  92. supply_chain_graph-0.1.0/tests/data/run_result/laptop_alternate_sc/expects/operation_plans.csv +17 -0
  93. supply_chain_graph-0.1.0/tests/data/run_result/laptop_alternate_sc/expects/resource_profiles.csv +35 -0
  94. supply_chain_graph-0.1.0/tests/data/two_level_with_resource/expects/inventory_profiles.csv +10 -0
  95. supply_chain_graph-0.1.0/tests/data/two_level_with_resource/expects/operation_plans.csv +12 -0
  96. supply_chain_graph-0.1.0/tests/data/two_level_with_resource/expects/resource_profiles.csv +8 -0
  97. supply_chain_graph-0.1.0/tests/integration/README.md +1 -0
  98. supply_chain_graph-0.1.0/tests/psr/README.md +1 -0
  99. supply_chain_graph-0.1.0/tests/test_demand_planning.rs +686 -0
  100. supply_chain_graph-0.1.0/tests/test_laptop_alternate_sc.rs +213 -0
  101. supply_chain_graph-0.1.0/tests/test_laptop_sc.rs +389 -0
@@ -0,0 +1,2358 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "actix-codec"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10
+ dependencies = [
11
+ "bitflags",
12
+ "bytes",
13
+ "futures-core",
14
+ "futures-sink",
15
+ "memchr",
16
+ "pin-project-lite",
17
+ "tokio",
18
+ "tokio-util",
19
+ "tracing",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "actix-http"
24
+ version = "3.9.0"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
27
+ dependencies = [
28
+ "actix-codec",
29
+ "actix-rt",
30
+ "actix-service",
31
+ "actix-utils",
32
+ "ahash",
33
+ "base64",
34
+ "bitflags",
35
+ "brotli",
36
+ "bytes",
37
+ "bytestring",
38
+ "derive_more",
39
+ "encoding_rs",
40
+ "flate2",
41
+ "futures-core",
42
+ "h2",
43
+ "http",
44
+ "httparse",
45
+ "httpdate",
46
+ "itoa",
47
+ "language-tags",
48
+ "local-channel",
49
+ "mime",
50
+ "percent-encoding",
51
+ "pin-project-lite",
52
+ "rand",
53
+ "sha1",
54
+ "smallvec",
55
+ "tokio",
56
+ "tokio-util",
57
+ "tracing",
58
+ "zstd",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "actix-macros"
63
+ version = "0.2.4"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66
+ dependencies = [
67
+ "quote",
68
+ "syn 2.0.98",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "actix-router"
73
+ version = "0.5.3"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
76
+ dependencies = [
77
+ "bytestring",
78
+ "cfg-if",
79
+ "http",
80
+ "regex",
81
+ "regex-lite",
82
+ "serde",
83
+ "tracing",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "actix-rt"
88
+ version = "2.10.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
91
+ dependencies = [
92
+ "futures-core",
93
+ "tokio",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "actix-server"
98
+ version = "2.5.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
101
+ dependencies = [
102
+ "actix-rt",
103
+ "actix-service",
104
+ "actix-utils",
105
+ "futures-core",
106
+ "futures-util",
107
+ "mio",
108
+ "socket2",
109
+ "tokio",
110
+ "tracing",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "actix-service"
115
+ version = "2.0.2"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
118
+ dependencies = [
119
+ "futures-core",
120
+ "paste",
121
+ "pin-project-lite",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "actix-utils"
126
+ version = "3.0.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
129
+ dependencies = [
130
+ "local-waker",
131
+ "pin-project-lite",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "actix-web"
136
+ version = "4.9.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
139
+ dependencies = [
140
+ "actix-codec",
141
+ "actix-http",
142
+ "actix-macros",
143
+ "actix-router",
144
+ "actix-rt",
145
+ "actix-server",
146
+ "actix-service",
147
+ "actix-utils",
148
+ "actix-web-codegen",
149
+ "ahash",
150
+ "bytes",
151
+ "bytestring",
152
+ "cfg-if",
153
+ "cookie",
154
+ "derive_more",
155
+ "encoding_rs",
156
+ "futures-core",
157
+ "futures-util",
158
+ "impl-more",
159
+ "itoa",
160
+ "language-tags",
161
+ "log",
162
+ "mime",
163
+ "once_cell",
164
+ "pin-project-lite",
165
+ "regex",
166
+ "regex-lite",
167
+ "serde",
168
+ "serde_json",
169
+ "serde_urlencoded",
170
+ "smallvec",
171
+ "socket2",
172
+ "time",
173
+ "url",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "actix-web-codegen"
178
+ version = "4.3.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
181
+ dependencies = [
182
+ "actix-router",
183
+ "proc-macro2",
184
+ "quote",
185
+ "syn 2.0.98",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "addr2line"
190
+ version = "0.24.2"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
193
+ dependencies = [
194
+ "gimli",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "adler2"
199
+ version = "2.0.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
202
+
203
+ [[package]]
204
+ name = "ahash"
205
+ version = "0.8.11"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
208
+ dependencies = [
209
+ "cfg-if",
210
+ "getrandom 0.2.15",
211
+ "once_cell",
212
+ "version_check",
213
+ "zerocopy",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "aho-corasick"
218
+ version = "1.1.3"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
221
+ dependencies = [
222
+ "memchr",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "alloc-no-stdlib"
227
+ version = "2.0.4"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
230
+
231
+ [[package]]
232
+ name = "alloc-stdlib"
233
+ version = "0.2.2"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
236
+ dependencies = [
237
+ "alloc-no-stdlib",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "android-tzdata"
242
+ version = "0.1.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
245
+
246
+ [[package]]
247
+ name = "android_system_properties"
248
+ version = "0.1.5"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
251
+ dependencies = [
252
+ "libc",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "anstream"
257
+ version = "0.6.18"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
260
+ dependencies = [
261
+ "anstyle",
262
+ "anstyle-parse",
263
+ "anstyle-query",
264
+ "anstyle-wincon",
265
+ "colorchoice",
266
+ "is_terminal_polyfill",
267
+ "utf8parse",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "anstyle"
272
+ version = "1.0.10"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
275
+
276
+ [[package]]
277
+ name = "anstyle-parse"
278
+ version = "0.2.6"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
281
+ dependencies = [
282
+ "utf8parse",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "anstyle-query"
287
+ version = "1.1.2"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
290
+ dependencies = [
291
+ "windows-sys 0.59.0",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "anstyle-wincon"
296
+ version = "3.0.7"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
299
+ dependencies = [
300
+ "anstyle",
301
+ "once_cell",
302
+ "windows-sys 0.59.0",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "anyhow"
307
+ version = "1.0.95"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
310
+
311
+ [[package]]
312
+ name = "arc-swap"
313
+ version = "1.7.1"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
316
+
317
+ [[package]]
318
+ name = "autocfg"
319
+ version = "1.4.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
322
+
323
+ [[package]]
324
+ name = "backtrace"
325
+ version = "0.3.74"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
328
+ dependencies = [
329
+ "addr2line",
330
+ "cfg-if",
331
+ "libc",
332
+ "miniz_oxide",
333
+ "object",
334
+ "rustc-demangle",
335
+ "windows-targets",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "base64"
340
+ version = "0.22.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
343
+
344
+ [[package]]
345
+ name = "bitflags"
346
+ version = "2.8.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
349
+
350
+ [[package]]
351
+ name = "block-buffer"
352
+ version = "0.10.4"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
355
+ dependencies = [
356
+ "generic-array",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "brotli"
361
+ version = "6.0.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
364
+ dependencies = [
365
+ "alloc-no-stdlib",
366
+ "alloc-stdlib",
367
+ "brotli-decompressor",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "brotli-decompressor"
372
+ version = "4.0.2"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
375
+ dependencies = [
376
+ "alloc-no-stdlib",
377
+ "alloc-stdlib",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "bumpalo"
382
+ version = "3.17.0"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
385
+
386
+ [[package]]
387
+ name = "byteorder"
388
+ version = "1.5.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
391
+
392
+ [[package]]
393
+ name = "bytes"
394
+ version = "1.10.0"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9"
397
+
398
+ [[package]]
399
+ name = "bytestring"
400
+ version = "1.4.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
403
+ dependencies = [
404
+ "bytes",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "cc"
409
+ version = "1.2.14"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "0c3d1b2e905a3a7b00a6141adb0e4c0bb941d11caf55349d863942a1cc44e3c9"
412
+ dependencies = [
413
+ "jobserver",
414
+ "libc",
415
+ "shlex",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "cfg-if"
420
+ version = "1.0.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
423
+
424
+ [[package]]
425
+ name = "chrono"
426
+ version = "0.4.39"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
429
+ dependencies = [
430
+ "android-tzdata",
431
+ "iana-time-zone",
432
+ "js-sys",
433
+ "num-traits",
434
+ "wasm-bindgen",
435
+ "windows-targets",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "colorchoice"
440
+ version = "1.0.3"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
443
+
444
+ [[package]]
445
+ name = "convert_case"
446
+ version = "0.4.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
449
+
450
+ [[package]]
451
+ name = "cookie"
452
+ version = "0.16.2"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
455
+ dependencies = [
456
+ "percent-encoding",
457
+ "time",
458
+ "version_check",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "core-foundation-sys"
463
+ version = "0.8.7"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
466
+
467
+ [[package]]
468
+ name = "cpufeatures"
469
+ version = "0.2.17"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
472
+ dependencies = [
473
+ "libc",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "crc32fast"
478
+ version = "1.4.2"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
481
+ dependencies = [
482
+ "cfg-if",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "crossbeam-deque"
487
+ version = "0.8.6"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
490
+ dependencies = [
491
+ "crossbeam-epoch",
492
+ "crossbeam-utils",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "crossbeam-epoch"
497
+ version = "0.9.18"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
500
+ dependencies = [
501
+ "crossbeam-utils",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "crossbeam-utils"
506
+ version = "0.8.21"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
509
+
510
+ [[package]]
511
+ name = "crypto-common"
512
+ version = "0.1.6"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
515
+ dependencies = [
516
+ "generic-array",
517
+ "typenum",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "deranged"
522
+ version = "0.3.11"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
525
+ dependencies = [
526
+ "powerfmt",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "derivative"
531
+ version = "2.2.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
534
+ dependencies = [
535
+ "proc-macro2",
536
+ "quote",
537
+ "syn 1.0.109",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "derive_more"
542
+ version = "0.99.19"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f"
545
+ dependencies = [
546
+ "convert_case",
547
+ "proc-macro2",
548
+ "quote",
549
+ "rustc_version",
550
+ "syn 2.0.98",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "destructure_traitobject"
555
+ version = "0.2.0"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "3c877555693c14d2f84191cfd3ad8582790fc52b5e2274b40b59cf5f5cea25c7"
558
+
559
+ [[package]]
560
+ name = "digest"
561
+ version = "0.10.7"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
564
+ dependencies = [
565
+ "block-buffer",
566
+ "crypto-common",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "displaydoc"
571
+ version = "0.2.5"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
574
+ dependencies = [
575
+ "proc-macro2",
576
+ "quote",
577
+ "syn 2.0.98",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "either"
582
+ version = "1.13.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
585
+
586
+ [[package]]
587
+ name = "encoding_rs"
588
+ version = "0.8.35"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
591
+ dependencies = [
592
+ "cfg-if",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "env_filter"
597
+ version = "0.1.3"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
600
+ dependencies = [
601
+ "log",
602
+ "regex",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "env_logger"
607
+ version = "0.11.6"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
610
+ dependencies = [
611
+ "anstream",
612
+ "anstyle",
613
+ "env_filter",
614
+ "humantime",
615
+ "log",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "equivalent"
620
+ version = "1.0.2"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
623
+
624
+ [[package]]
625
+ name = "errno"
626
+ version = "0.3.10"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
629
+ dependencies = [
630
+ "libc",
631
+ "windows-sys 0.59.0",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "fastrand"
636
+ version = "2.3.0"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
639
+
640
+ [[package]]
641
+ name = "flate2"
642
+ version = "1.0.35"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
645
+ dependencies = [
646
+ "crc32fast",
647
+ "miniz_oxide",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "fnv"
652
+ version = "1.0.7"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
655
+
656
+ [[package]]
657
+ name = "form_urlencoded"
658
+ version = "1.2.1"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
661
+ dependencies = [
662
+ "percent-encoding",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "function_name"
667
+ version = "0.3.0"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "b1ab577a896d09940b5fe12ec5ae71f9d8211fff62c919c03a3750a9901e98a7"
670
+ dependencies = [
671
+ "function_name-proc-macro",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "function_name-proc-macro"
676
+ version = "0.3.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "673464e1e314dd67a0fd9544abc99e8eb28d0c7e3b69b033bcff9b2d00b87333"
679
+
680
+ [[package]]
681
+ name = "futures"
682
+ version = "0.3.31"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
685
+ dependencies = [
686
+ "futures-channel",
687
+ "futures-core",
688
+ "futures-executor",
689
+ "futures-io",
690
+ "futures-sink",
691
+ "futures-task",
692
+ "futures-util",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "futures-channel"
697
+ version = "0.3.31"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
700
+ dependencies = [
701
+ "futures-core",
702
+ "futures-sink",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "futures-core"
707
+ version = "0.3.31"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
710
+
711
+ [[package]]
712
+ name = "futures-executor"
713
+ version = "0.3.31"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
716
+ dependencies = [
717
+ "futures-core",
718
+ "futures-task",
719
+ "futures-util",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "futures-io"
724
+ version = "0.3.31"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
727
+
728
+ [[package]]
729
+ name = "futures-sink"
730
+ version = "0.3.31"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
733
+
734
+ [[package]]
735
+ name = "futures-task"
736
+ version = "0.3.31"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
739
+
740
+ [[package]]
741
+ name = "futures-util"
742
+ version = "0.3.31"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
745
+ dependencies = [
746
+ "futures-channel",
747
+ "futures-core",
748
+ "futures-io",
749
+ "futures-sink",
750
+ "futures-task",
751
+ "memchr",
752
+ "pin-project-lite",
753
+ "pin-utils",
754
+ "slab",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "generic-array"
759
+ version = "0.14.7"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
762
+ dependencies = [
763
+ "typenum",
764
+ "version_check",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "getrandom"
769
+ version = "0.2.15"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
772
+ dependencies = [
773
+ "cfg-if",
774
+ "libc",
775
+ "wasi 0.11.0+wasi-snapshot-preview1",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "getrandom"
780
+ version = "0.3.1"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
783
+ dependencies = [
784
+ "cfg-if",
785
+ "libc",
786
+ "wasi 0.13.3+wasi-0.2.2",
787
+ "windows-targets",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "gimli"
792
+ version = "0.31.1"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
795
+
796
+ [[package]]
797
+ name = "h2"
798
+ version = "0.3.26"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
801
+ dependencies = [
802
+ "bytes",
803
+ "fnv",
804
+ "futures-core",
805
+ "futures-sink",
806
+ "futures-util",
807
+ "http",
808
+ "indexmap",
809
+ "slab",
810
+ "tokio",
811
+ "tokio-util",
812
+ "tracing",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "hashbrown"
817
+ version = "0.15.2"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
820
+
821
+ [[package]]
822
+ name = "heck"
823
+ version = "0.4.1"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
826
+
827
+ [[package]]
828
+ name = "http"
829
+ version = "0.2.12"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
832
+ dependencies = [
833
+ "bytes",
834
+ "fnv",
835
+ "itoa",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "httparse"
840
+ version = "1.10.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a"
843
+
844
+ [[package]]
845
+ name = "httpdate"
846
+ version = "1.0.3"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
849
+
850
+ [[package]]
851
+ name = "humantime"
852
+ version = "2.1.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
855
+
856
+ [[package]]
857
+ name = "iana-time-zone"
858
+ version = "0.1.61"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
861
+ dependencies = [
862
+ "android_system_properties",
863
+ "core-foundation-sys",
864
+ "iana-time-zone-haiku",
865
+ "js-sys",
866
+ "wasm-bindgen",
867
+ "windows-core",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "iana-time-zone-haiku"
872
+ version = "0.1.2"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
875
+ dependencies = [
876
+ "cc",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "icu_collections"
881
+ version = "1.5.0"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
884
+ dependencies = [
885
+ "displaydoc",
886
+ "yoke",
887
+ "zerofrom",
888
+ "zerovec",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "icu_locid"
893
+ version = "1.5.0"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
896
+ dependencies = [
897
+ "displaydoc",
898
+ "litemap",
899
+ "tinystr",
900
+ "writeable",
901
+ "zerovec",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "icu_locid_transform"
906
+ version = "1.5.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
909
+ dependencies = [
910
+ "displaydoc",
911
+ "icu_locid",
912
+ "icu_locid_transform_data",
913
+ "icu_provider",
914
+ "tinystr",
915
+ "zerovec",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "icu_locid_transform_data"
920
+ version = "1.5.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
923
+
924
+ [[package]]
925
+ name = "icu_normalizer"
926
+ version = "1.5.0"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
929
+ dependencies = [
930
+ "displaydoc",
931
+ "icu_collections",
932
+ "icu_normalizer_data",
933
+ "icu_properties",
934
+ "icu_provider",
935
+ "smallvec",
936
+ "utf16_iter",
937
+ "utf8_iter",
938
+ "write16",
939
+ "zerovec",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "icu_normalizer_data"
944
+ version = "1.5.0"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
947
+
948
+ [[package]]
949
+ name = "icu_properties"
950
+ version = "1.5.1"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
953
+ dependencies = [
954
+ "displaydoc",
955
+ "icu_collections",
956
+ "icu_locid_transform",
957
+ "icu_properties_data",
958
+ "icu_provider",
959
+ "tinystr",
960
+ "zerovec",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "icu_properties_data"
965
+ version = "1.5.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
968
+
969
+ [[package]]
970
+ name = "icu_provider"
971
+ version = "1.5.0"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
974
+ dependencies = [
975
+ "displaydoc",
976
+ "icu_locid",
977
+ "icu_provider_macros",
978
+ "stable_deref_trait",
979
+ "tinystr",
980
+ "writeable",
981
+ "yoke",
982
+ "zerofrom",
983
+ "zerovec",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "icu_provider_macros"
988
+ version = "1.5.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
991
+ dependencies = [
992
+ "proc-macro2",
993
+ "quote",
994
+ "syn 2.0.98",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "idna"
999
+ version = "1.0.3"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1002
+ dependencies = [
1003
+ "idna_adapter",
1004
+ "smallvec",
1005
+ "utf8_iter",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "idna_adapter"
1010
+ version = "1.2.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1013
+ dependencies = [
1014
+ "icu_normalizer",
1015
+ "icu_properties",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "impl-more"
1020
+ version = "0.1.9"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
1023
+
1024
+ [[package]]
1025
+ name = "indexmap"
1026
+ version = "2.7.1"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1029
+ dependencies = [
1030
+ "equivalent",
1031
+ "hashbrown",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "indoc"
1036
+ version = "2.0.5"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1039
+
1040
+ [[package]]
1041
+ name = "is_terminal_polyfill"
1042
+ version = "1.70.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1045
+
1046
+ [[package]]
1047
+ name = "itoa"
1048
+ version = "1.0.14"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1051
+
1052
+ [[package]]
1053
+ name = "jobserver"
1054
+ version = "0.1.32"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1057
+ dependencies = [
1058
+ "libc",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "js-sys"
1063
+ version = "0.3.77"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1066
+ dependencies = [
1067
+ "once_cell",
1068
+ "wasm-bindgen",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "language-tags"
1073
+ version = "0.3.2"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
1076
+
1077
+ [[package]]
1078
+ name = "lazy_static"
1079
+ version = "1.5.0"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1082
+
1083
+ [[package]]
1084
+ name = "libc"
1085
+ version = "0.2.169"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1088
+
1089
+ [[package]]
1090
+ name = "linux-raw-sys"
1091
+ version = "0.4.15"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1094
+
1095
+ [[package]]
1096
+ name = "litemap"
1097
+ version = "0.7.4"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1100
+
1101
+ [[package]]
1102
+ name = "local-channel"
1103
+ version = "0.1.5"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
1106
+ dependencies = [
1107
+ "futures-core",
1108
+ "futures-sink",
1109
+ "local-waker",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "local-waker"
1114
+ version = "0.1.4"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
1117
+
1118
+ [[package]]
1119
+ name = "lock_api"
1120
+ version = "0.4.12"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1123
+ dependencies = [
1124
+ "autocfg",
1125
+ "scopeguard",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "log"
1130
+ version = "0.4.25"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1133
+ dependencies = [
1134
+ "serde",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "log-mdc"
1139
+ version = "0.1.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "a94d21414c1f4a51209ad204c1776a3d0765002c76c6abcb602a6f09f1e881c7"
1142
+
1143
+ [[package]]
1144
+ name = "log4rs"
1145
+ version = "1.3.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "0816135ae15bd0391cf284eab37e6e3ee0a6ee63d2ceeb659862bd8d0a984ca6"
1148
+ dependencies = [
1149
+ "anyhow",
1150
+ "arc-swap",
1151
+ "chrono",
1152
+ "derivative",
1153
+ "fnv",
1154
+ "humantime",
1155
+ "libc",
1156
+ "log",
1157
+ "log-mdc",
1158
+ "once_cell",
1159
+ "parking_lot",
1160
+ "rand",
1161
+ "serde",
1162
+ "serde-value",
1163
+ "serde_json",
1164
+ "serde_yaml",
1165
+ "thiserror",
1166
+ "thread-id",
1167
+ "typemap-ors",
1168
+ "winapi",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "mach"
1173
+ version = "0.3.2"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
1176
+ dependencies = [
1177
+ "libc",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "memchr"
1182
+ version = "2.7.4"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1185
+
1186
+ [[package]]
1187
+ name = "memoffset"
1188
+ version = "0.9.1"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1191
+ dependencies = [
1192
+ "autocfg",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "mime"
1197
+ version = "0.3.17"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1200
+
1201
+ [[package]]
1202
+ name = "miniz_oxide"
1203
+ version = "0.8.4"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "b3b1c9bd4fe1f0f8b387f6eb9eb3b4a1aa26185e5750efb9140301703f62cd1b"
1206
+ dependencies = [
1207
+ "adler2",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "mio"
1212
+ version = "1.0.3"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1215
+ dependencies = [
1216
+ "libc",
1217
+ "log",
1218
+ "wasi 0.11.0+wasi-snapshot-preview1",
1219
+ "windows-sys 0.52.0",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "ntapi"
1224
+ version = "0.4.1"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1227
+ dependencies = [
1228
+ "winapi",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "num-conv"
1233
+ version = "0.1.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1236
+
1237
+ [[package]]
1238
+ name = "num-traits"
1239
+ version = "0.2.19"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1242
+ dependencies = [
1243
+ "autocfg",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "object"
1248
+ version = "0.36.7"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1251
+ dependencies = [
1252
+ "memchr",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "once_cell"
1257
+ version = "1.20.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
1260
+
1261
+ [[package]]
1262
+ name = "ordered-float"
1263
+ version = "2.10.1"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
1266
+ dependencies = [
1267
+ "num-traits",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "parking_lot"
1272
+ version = "0.12.3"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1275
+ dependencies = [
1276
+ "lock_api",
1277
+ "parking_lot_core",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "parking_lot_core"
1282
+ version = "0.9.10"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1285
+ dependencies = [
1286
+ "cfg-if",
1287
+ "libc",
1288
+ "redox_syscall",
1289
+ "smallvec",
1290
+ "windows-targets",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "paste"
1295
+ version = "1.0.15"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1298
+
1299
+ [[package]]
1300
+ name = "percent-encoding"
1301
+ version = "2.3.1"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1304
+
1305
+ [[package]]
1306
+ name = "pin-project-lite"
1307
+ version = "0.2.16"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1310
+
1311
+ [[package]]
1312
+ name = "pin-utils"
1313
+ version = "0.1.0"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1316
+
1317
+ [[package]]
1318
+ name = "pkg-config"
1319
+ version = "0.3.31"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1322
+
1323
+ [[package]]
1324
+ name = "portable-atomic"
1325
+ version = "1.10.0"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
1328
+
1329
+ [[package]]
1330
+ name = "powerfmt"
1331
+ version = "0.2.0"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1334
+
1335
+ [[package]]
1336
+ name = "ppv-lite86"
1337
+ version = "0.2.20"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1340
+ dependencies = [
1341
+ "zerocopy",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "proc-macro2"
1346
+ version = "1.0.93"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
1349
+ dependencies = [
1350
+ "unicode-ident",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "pyo3"
1355
+ version = "0.21.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
1358
+ dependencies = [
1359
+ "cfg-if",
1360
+ "indoc",
1361
+ "libc",
1362
+ "memoffset",
1363
+ "parking_lot",
1364
+ "portable-atomic",
1365
+ "pyo3-build-config",
1366
+ "pyo3-ffi",
1367
+ "pyo3-macros",
1368
+ "unindent",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "pyo3-build-config"
1373
+ version = "0.21.2"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
1376
+ dependencies = [
1377
+ "once_cell",
1378
+ "target-lexicon",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "pyo3-ffi"
1383
+ version = "0.21.2"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
1386
+ dependencies = [
1387
+ "libc",
1388
+ "pyo3-build-config",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "pyo3-macros"
1393
+ version = "0.21.2"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
1396
+ dependencies = [
1397
+ "proc-macro2",
1398
+ "pyo3-macros-backend",
1399
+ "quote",
1400
+ "syn 2.0.98",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "pyo3-macros-backend"
1405
+ version = "0.21.2"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
1408
+ dependencies = [
1409
+ "heck",
1410
+ "proc-macro2",
1411
+ "pyo3-build-config",
1412
+ "quote",
1413
+ "syn 2.0.98",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "quote"
1418
+ version = "1.0.38"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
1421
+ dependencies = [
1422
+ "proc-macro2",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "rand"
1427
+ version = "0.8.5"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1430
+ dependencies = [
1431
+ "libc",
1432
+ "rand_chacha",
1433
+ "rand_core",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "rand_chacha"
1438
+ version = "0.3.1"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1441
+ dependencies = [
1442
+ "ppv-lite86",
1443
+ "rand_core",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "rand_core"
1448
+ version = "0.6.4"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1451
+ dependencies = [
1452
+ "getrandom 0.2.15",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "rayon"
1457
+ version = "1.10.0"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1460
+ dependencies = [
1461
+ "either",
1462
+ "rayon-core",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "rayon-core"
1467
+ version = "1.12.1"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1470
+ dependencies = [
1471
+ "crossbeam-deque",
1472
+ "crossbeam-utils",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "redox_syscall"
1477
+ version = "0.5.8"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
1480
+ dependencies = [
1481
+ "bitflags",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "regex"
1486
+ version = "1.11.1"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1489
+ dependencies = [
1490
+ "aho-corasick",
1491
+ "memchr",
1492
+ "regex-automata",
1493
+ "regex-syntax",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "regex-automata"
1498
+ version = "0.4.9"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1501
+ dependencies = [
1502
+ "aho-corasick",
1503
+ "memchr",
1504
+ "regex-syntax",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "regex-lite"
1509
+ version = "0.1.6"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
1512
+
1513
+ [[package]]
1514
+ name = "regex-syntax"
1515
+ version = "0.8.5"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1518
+
1519
+ [[package]]
1520
+ name = "rustc-demangle"
1521
+ version = "0.1.24"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1524
+
1525
+ [[package]]
1526
+ name = "rustc_version"
1527
+ version = "0.4.1"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1530
+ dependencies = [
1531
+ "semver",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "rustix"
1536
+ version = "0.38.44"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1539
+ dependencies = [
1540
+ "bitflags",
1541
+ "errno",
1542
+ "libc",
1543
+ "linux-raw-sys",
1544
+ "windows-sys 0.59.0",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "rustversion"
1549
+ version = "1.0.19"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
1552
+
1553
+ [[package]]
1554
+ name = "ryu"
1555
+ version = "1.0.19"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
1558
+
1559
+ [[package]]
1560
+ name = "scc"
1561
+ version = "2.3.3"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "ea091f6cac2595aa38993f04f4ee692ed43757035c36e67c180b6828356385b1"
1564
+ dependencies = [
1565
+ "sdd",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "scopeguard"
1570
+ version = "1.2.0"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1573
+
1574
+ [[package]]
1575
+ name = "sdd"
1576
+ version = "3.0.7"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "b07779b9b918cc05650cb30f404d4d7835d26df37c235eded8a6832e2fb82cca"
1579
+
1580
+ [[package]]
1581
+ name = "semver"
1582
+ version = "1.0.25"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
1585
+
1586
+ [[package]]
1587
+ name = "serde"
1588
+ version = "1.0.217"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
1591
+ dependencies = [
1592
+ "serde_derive",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "serde-value"
1597
+ version = "0.7.0"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
1600
+ dependencies = [
1601
+ "ordered-float",
1602
+ "serde",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "serde_derive"
1607
+ version = "1.0.217"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
1610
+ dependencies = [
1611
+ "proc-macro2",
1612
+ "quote",
1613
+ "syn 2.0.98",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "serde_json"
1618
+ version = "1.0.138"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
1621
+ dependencies = [
1622
+ "itoa",
1623
+ "memchr",
1624
+ "ryu",
1625
+ "serde",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "serde_urlencoded"
1630
+ version = "0.7.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1633
+ dependencies = [
1634
+ "form_urlencoded",
1635
+ "itoa",
1636
+ "ryu",
1637
+ "serde",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "serde_yaml"
1642
+ version = "0.9.34+deprecated"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1645
+ dependencies = [
1646
+ "indexmap",
1647
+ "itoa",
1648
+ "ryu",
1649
+ "serde",
1650
+ "unsafe-libyaml",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "serial_test"
1655
+ version = "3.2.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
1658
+ dependencies = [
1659
+ "futures",
1660
+ "log",
1661
+ "once_cell",
1662
+ "parking_lot",
1663
+ "scc",
1664
+ "serial_test_derive",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "serial_test_derive"
1669
+ version = "3.2.0"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
1672
+ dependencies = [
1673
+ "proc-macro2",
1674
+ "quote",
1675
+ "syn 2.0.98",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "sha1"
1680
+ version = "0.10.6"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1683
+ dependencies = [
1684
+ "cfg-if",
1685
+ "cpufeatures",
1686
+ "digest",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "shlex"
1691
+ version = "1.3.0"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1694
+
1695
+ [[package]]
1696
+ name = "signal-hook-registry"
1697
+ version = "1.4.2"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1700
+ dependencies = [
1701
+ "libc",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "slab"
1706
+ version = "0.4.9"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1709
+ dependencies = [
1710
+ "autocfg",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "smallvec"
1715
+ version = "1.14.0"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
1718
+
1719
+ [[package]]
1720
+ name = "socket2"
1721
+ version = "0.5.8"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
1724
+ dependencies = [
1725
+ "libc",
1726
+ "windows-sys 0.52.0",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "stable_deref_trait"
1731
+ version = "1.2.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1734
+
1735
+ [[package]]
1736
+ name = "supply"
1737
+ version = "0.1.0"
1738
+ dependencies = [
1739
+ "actix-web",
1740
+ "anyhow",
1741
+ "chrono",
1742
+ "env_logger",
1743
+ "function_name",
1744
+ "lazy_static",
1745
+ "log",
1746
+ "log4rs",
1747
+ "mach",
1748
+ "parking_lot",
1749
+ "pyo3",
1750
+ "serde",
1751
+ "serde_json",
1752
+ "serde_yaml",
1753
+ "serial_test",
1754
+ "sysinfo",
1755
+ "tempfile",
1756
+ "tokio",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "syn"
1761
+ version = "1.0.109"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1764
+ dependencies = [
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "unicode-ident",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "syn"
1772
+ version = "2.0.98"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
1775
+ dependencies = [
1776
+ "proc-macro2",
1777
+ "quote",
1778
+ "unicode-ident",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "synstructure"
1783
+ version = "0.13.1"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
1786
+ dependencies = [
1787
+ "proc-macro2",
1788
+ "quote",
1789
+ "syn 2.0.98",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "sysinfo"
1794
+ version = "0.29.11"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "cd727fc423c2060f6c92d9534cef765c65a6ed3f428a03d7def74a8c4348e666"
1797
+ dependencies = [
1798
+ "cfg-if",
1799
+ "core-foundation-sys",
1800
+ "libc",
1801
+ "ntapi",
1802
+ "once_cell",
1803
+ "rayon",
1804
+ "winapi",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "target-lexicon"
1809
+ version = "0.12.16"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1812
+
1813
+ [[package]]
1814
+ name = "tempfile"
1815
+ version = "3.17.1"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230"
1818
+ dependencies = [
1819
+ "cfg-if",
1820
+ "fastrand",
1821
+ "getrandom 0.3.1",
1822
+ "once_cell",
1823
+ "rustix",
1824
+ "windows-sys 0.59.0",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "thiserror"
1829
+ version = "1.0.69"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1832
+ dependencies = [
1833
+ "thiserror-impl",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "thiserror-impl"
1838
+ version = "1.0.69"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1841
+ dependencies = [
1842
+ "proc-macro2",
1843
+ "quote",
1844
+ "syn 2.0.98",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "thread-id"
1849
+ version = "4.2.2"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "cfe8f25bbdd100db7e1d34acf7fd2dc59c4bf8f7483f505eaa7d4f12f76cc0ea"
1852
+ dependencies = [
1853
+ "libc",
1854
+ "winapi",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "time"
1859
+ version = "0.3.37"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
1862
+ dependencies = [
1863
+ "deranged",
1864
+ "itoa",
1865
+ "num-conv",
1866
+ "powerfmt",
1867
+ "serde",
1868
+ "time-core",
1869
+ "time-macros",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "time-core"
1874
+ version = "0.1.2"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
1877
+
1878
+ [[package]]
1879
+ name = "time-macros"
1880
+ version = "0.2.19"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
1883
+ dependencies = [
1884
+ "num-conv",
1885
+ "time-core",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "tinystr"
1890
+ version = "0.7.6"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
1893
+ dependencies = [
1894
+ "displaydoc",
1895
+ "zerovec",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "tokio"
1900
+ version = "1.43.0"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
1903
+ dependencies = [
1904
+ "backtrace",
1905
+ "bytes",
1906
+ "libc",
1907
+ "mio",
1908
+ "parking_lot",
1909
+ "pin-project-lite",
1910
+ "signal-hook-registry",
1911
+ "socket2",
1912
+ "tokio-macros",
1913
+ "windows-sys 0.52.0",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "tokio-macros"
1918
+ version = "2.5.0"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1921
+ dependencies = [
1922
+ "proc-macro2",
1923
+ "quote",
1924
+ "syn 2.0.98",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "tokio-util"
1929
+ version = "0.7.13"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
1932
+ dependencies = [
1933
+ "bytes",
1934
+ "futures-core",
1935
+ "futures-sink",
1936
+ "pin-project-lite",
1937
+ "tokio",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "tracing"
1942
+ version = "0.1.41"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1945
+ dependencies = [
1946
+ "log",
1947
+ "pin-project-lite",
1948
+ "tracing-core",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "tracing-core"
1953
+ version = "0.1.33"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
1956
+ dependencies = [
1957
+ "once_cell",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "typemap-ors"
1962
+ version = "1.0.0"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "a68c24b707f02dd18f1e4ccceb9d49f2058c2fb86384ef9972592904d7a28867"
1965
+ dependencies = [
1966
+ "unsafe-any-ors",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "typenum"
1971
+ version = "1.17.0"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1974
+
1975
+ [[package]]
1976
+ name = "unicode-ident"
1977
+ version = "1.0.16"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
1980
+
1981
+ [[package]]
1982
+ name = "unindent"
1983
+ version = "0.2.3"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1986
+
1987
+ [[package]]
1988
+ name = "unsafe-any-ors"
1989
+ version = "1.0.0"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "e0a303d30665362d9680d7d91d78b23f5f899504d4f08b3c4cf08d055d87c0ad"
1992
+ dependencies = [
1993
+ "destructure_traitobject",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "unsafe-libyaml"
1998
+ version = "0.2.11"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2001
+
2002
+ [[package]]
2003
+ name = "url"
2004
+ version = "2.5.4"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2007
+ dependencies = [
2008
+ "form_urlencoded",
2009
+ "idna",
2010
+ "percent-encoding",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "utf16_iter"
2015
+ version = "1.0.5"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
2018
+
2019
+ [[package]]
2020
+ name = "utf8_iter"
2021
+ version = "1.0.4"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2024
+
2025
+ [[package]]
2026
+ name = "utf8parse"
2027
+ version = "0.2.2"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2030
+
2031
+ [[package]]
2032
+ name = "version_check"
2033
+ version = "0.9.5"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2036
+
2037
+ [[package]]
2038
+ name = "wasi"
2039
+ version = "0.11.0+wasi-snapshot-preview1"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2042
+
2043
+ [[package]]
2044
+ name = "wasi"
2045
+ version = "0.13.3+wasi-0.2.2"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
2048
+ dependencies = [
2049
+ "wit-bindgen-rt",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "wasm-bindgen"
2054
+ version = "0.2.100"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2057
+ dependencies = [
2058
+ "cfg-if",
2059
+ "once_cell",
2060
+ "rustversion",
2061
+ "wasm-bindgen-macro",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "wasm-bindgen-backend"
2066
+ version = "0.2.100"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2069
+ dependencies = [
2070
+ "bumpalo",
2071
+ "log",
2072
+ "proc-macro2",
2073
+ "quote",
2074
+ "syn 2.0.98",
2075
+ "wasm-bindgen-shared",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "wasm-bindgen-macro"
2080
+ version = "0.2.100"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2083
+ dependencies = [
2084
+ "quote",
2085
+ "wasm-bindgen-macro-support",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "wasm-bindgen-macro-support"
2090
+ version = "0.2.100"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2093
+ dependencies = [
2094
+ "proc-macro2",
2095
+ "quote",
2096
+ "syn 2.0.98",
2097
+ "wasm-bindgen-backend",
2098
+ "wasm-bindgen-shared",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "wasm-bindgen-shared"
2103
+ version = "0.2.100"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2106
+ dependencies = [
2107
+ "unicode-ident",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "winapi"
2112
+ version = "0.3.9"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2115
+ dependencies = [
2116
+ "winapi-i686-pc-windows-gnu",
2117
+ "winapi-x86_64-pc-windows-gnu",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "winapi-i686-pc-windows-gnu"
2122
+ version = "0.4.0"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2125
+
2126
+ [[package]]
2127
+ name = "winapi-x86_64-pc-windows-gnu"
2128
+ version = "0.4.0"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2131
+
2132
+ [[package]]
2133
+ name = "windows-core"
2134
+ version = "0.52.0"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2137
+ dependencies = [
2138
+ "windows-targets",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "windows-sys"
2143
+ version = "0.52.0"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2146
+ dependencies = [
2147
+ "windows-targets",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "windows-sys"
2152
+ version = "0.59.0"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2155
+ dependencies = [
2156
+ "windows-targets",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "windows-targets"
2161
+ version = "0.52.6"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2164
+ dependencies = [
2165
+ "windows_aarch64_gnullvm",
2166
+ "windows_aarch64_msvc",
2167
+ "windows_i686_gnu",
2168
+ "windows_i686_gnullvm",
2169
+ "windows_i686_msvc",
2170
+ "windows_x86_64_gnu",
2171
+ "windows_x86_64_gnullvm",
2172
+ "windows_x86_64_msvc",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "windows_aarch64_gnullvm"
2177
+ version = "0.52.6"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2180
+
2181
+ [[package]]
2182
+ name = "windows_aarch64_msvc"
2183
+ version = "0.52.6"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2186
+
2187
+ [[package]]
2188
+ name = "windows_i686_gnu"
2189
+ version = "0.52.6"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2192
+
2193
+ [[package]]
2194
+ name = "windows_i686_gnullvm"
2195
+ version = "0.52.6"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2198
+
2199
+ [[package]]
2200
+ name = "windows_i686_msvc"
2201
+ version = "0.52.6"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2204
+
2205
+ [[package]]
2206
+ name = "windows_x86_64_gnu"
2207
+ version = "0.52.6"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2210
+
2211
+ [[package]]
2212
+ name = "windows_x86_64_gnullvm"
2213
+ version = "0.52.6"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2216
+
2217
+ [[package]]
2218
+ name = "windows_x86_64_msvc"
2219
+ version = "0.52.6"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2222
+
2223
+ [[package]]
2224
+ name = "wit-bindgen-rt"
2225
+ version = "0.33.0"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
2228
+ dependencies = [
2229
+ "bitflags",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "write16"
2234
+ version = "1.0.0"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2237
+
2238
+ [[package]]
2239
+ name = "writeable"
2240
+ version = "0.5.5"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2243
+
2244
+ [[package]]
2245
+ name = "yoke"
2246
+ version = "0.7.5"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2249
+ dependencies = [
2250
+ "serde",
2251
+ "stable_deref_trait",
2252
+ "yoke-derive",
2253
+ "zerofrom",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "yoke-derive"
2258
+ version = "0.7.5"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2261
+ dependencies = [
2262
+ "proc-macro2",
2263
+ "quote",
2264
+ "syn 2.0.98",
2265
+ "synstructure",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "zerocopy"
2270
+ version = "0.7.35"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2273
+ dependencies = [
2274
+ "byteorder",
2275
+ "zerocopy-derive",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "zerocopy-derive"
2280
+ version = "0.7.35"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2283
+ dependencies = [
2284
+ "proc-macro2",
2285
+ "quote",
2286
+ "syn 2.0.98",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "zerofrom"
2291
+ version = "0.1.5"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
2294
+ dependencies = [
2295
+ "zerofrom-derive",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "zerofrom-derive"
2300
+ version = "0.1.5"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
2303
+ dependencies = [
2304
+ "proc-macro2",
2305
+ "quote",
2306
+ "syn 2.0.98",
2307
+ "synstructure",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "zerovec"
2312
+ version = "0.10.4"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
2315
+ dependencies = [
2316
+ "yoke",
2317
+ "zerofrom",
2318
+ "zerovec-derive",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "zerovec-derive"
2323
+ version = "0.10.3"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
2326
+ dependencies = [
2327
+ "proc-macro2",
2328
+ "quote",
2329
+ "syn 2.0.98",
2330
+ ]
2331
+
2332
+ [[package]]
2333
+ name = "zstd"
2334
+ version = "0.13.2"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
2337
+ dependencies = [
2338
+ "zstd-safe",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "zstd-safe"
2343
+ version = "7.2.1"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
2346
+ dependencies = [
2347
+ "zstd-sys",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "zstd-sys"
2352
+ version = "2.0.13+zstd.1.5.6"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
2355
+ dependencies = [
2356
+ "cc",
2357
+ "pkg-config",
2358
+ ]