openstockengine 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. openstockengine-0.1.0/Cargo.lock +2338 -0
  2. openstockengine-0.1.0/Cargo.toml +15 -0
  3. openstockengine-0.1.0/PKG-INFO +96 -0
  4. openstockengine-0.1.0/README.md +62 -0
  5. openstockengine-0.1.0/crates/openstock-engine-core/Cargo.toml +33 -0
  6. openstockengine-0.1.0/crates/openstock-engine-core/src/event_bus/bus.rs +125 -0
  7. openstockengine-0.1.0/crates/openstock-engine-core/src/event_bus/mod.rs +7 -0
  8. openstockengine-0.1.0/crates/openstock-engine-core/src/event_bus/router.rs +111 -0
  9. openstockengine-0.1.0/crates/openstock-engine-core/src/event_bus/types.rs +69 -0
  10. openstockengine-0.1.0/crates/openstock-engine-core/src/execution/fee.rs +63 -0
  11. openstockengine-0.1.0/crates/openstock-engine-core/src/execution/lifecycle.rs +68 -0
  12. openstockengine-0.1.0/crates/openstock-engine-core/src/execution/match_engine.rs +164 -0
  13. openstockengine-0.1.0/crates/openstock-engine-core/src/execution/mod.rs +11 -0
  14. openstockengine-0.1.0/crates/openstock-engine-core/src/execution/runner.rs +244 -0
  15. openstockengine-0.1.0/crates/openstock-engine-core/src/execution/slippage.rs +48 -0
  16. openstockengine-0.1.0/crates/openstock-engine-core/src/indicators/atr.rs +53 -0
  17. openstockengine-0.1.0/crates/openstock-engine-core/src/indicators/bollinger.rs +52 -0
  18. openstockengine-0.1.0/crates/openstock-engine-core/src/indicators/ma.rs +69 -0
  19. openstockengine-0.1.0/crates/openstock-engine-core/src/indicators/macd.rs +72 -0
  20. openstockengine-0.1.0/crates/openstock-engine-core/src/indicators/mod.rs +11 -0
  21. openstockengine-0.1.0/crates/openstock-engine-core/src/indicators/rsi.rs +72 -0
  22. openstockengine-0.1.0/crates/openstock-engine-core/src/ingestion/aggregator.rs +153 -0
  23. openstockengine-0.1.0/crates/openstock-engine-core/src/ingestion/cleansing.rs +123 -0
  24. openstockengine-0.1.0/crates/openstock-engine-core/src/ingestion/manager.rs +159 -0
  25. openstockengine-0.1.0/crates/openstock-engine-core/src/ingestion/mod.rs +9 -0
  26. openstockengine-0.1.0/crates/openstock-engine-core/src/ingestion/ring_buffer.rs +112 -0
  27. openstockengine-0.1.0/crates/openstock-engine-core/src/lib.rs +17 -0
  28. openstockengine-0.1.0/crates/openstock-engine-core/src/metrics/calculator.rs +475 -0
  29. openstockengine-0.1.0/crates/openstock-engine-core/src/metrics/mod.rs +3 -0
  30. openstockengine-0.1.0/crates/openstock-engine-core/src/risk/asset_spec.rs +84 -0
  31. openstockengine-0.1.0/crates/openstock-engine-core/src/risk/mod.rs +9 -0
  32. openstockengine-0.1.0/crates/openstock-engine-core/src/risk/portfolio.rs +258 -0
  33. openstockengine-0.1.0/crates/openstock-engine-core/src/risk/position_sizer.rs +84 -0
  34. openstockengine-0.1.0/crates/openstock-engine-core/src/risk/risk_manager.rs +221 -0
  35. openstockengine-0.1.0/crates/openstock-engine-core/src/types/market_data.rs +76 -0
  36. openstockengine-0.1.0/crates/openstock-engine-core/src/types/mod.rs +7 -0
  37. openstockengine-0.1.0/crates/openstock-engine-core/src/types/order.rs +69 -0
  38. openstockengine-0.1.0/crates/openstock-engine-core/src/types/position.rs +38 -0
  39. openstockengine-0.1.0/crates/openstock-engine-core/src/ws_server/mod.rs +3 -0
  40. openstockengine-0.1.0/crates/openstock-engine-core/src/ws_server/publisher.rs +76 -0
  41. openstockengine-0.1.0/crates/openstock-engine-py/Cargo.toml +16 -0
  42. openstockengine-0.1.0/crates/openstock-engine-py/src/lib.rs +269 -0
  43. openstockengine-0.1.0/crates/openstock-engine-py/src/py_types.rs +435 -0
  44. openstockengine-0.1.0/pyproject.toml +55 -0
  45. openstockengine-0.1.0/python/openstock_engine/__init__.py +80 -0
  46. openstockengine-0.1.0/python/openstock_engine/_engine_core.pdb +0 -0
  47. openstockengine-0.1.0/python/openstock_engine/broker/__init__.py +4 -0
  48. openstockengine-0.1.0/python/openstock_engine/broker/base.py +38 -0
  49. openstockengine-0.1.0/python/openstock_engine/broker/binance.py +161 -0
  50. openstockengine-0.1.0/python/openstock_engine/cli.py +166 -0
  51. openstockengine-0.1.0/python/openstock_engine/config.py +49 -0
  52. openstockengine-0.1.0/python/openstock_engine/daemon.py +202 -0
  53. openstockengine-0.1.0/python/openstock_engine/dashboard.py +184 -0
  54. openstockengine-0.1.0/python/openstock_engine/data_loader.py +128 -0
  55. openstockengine-0.1.0/python/openstock_engine/engine.py +81 -0
  56. openstockengine-0.1.0/python/openstock_engine/indicators.py +123 -0
  57. openstockengine-0.1.0/python/openstock_engine/strategy.py +133 -0
  58. openstockengine-0.1.0/python/openstock_engine/strategy_loader.py +81 -0
  59. openstockengine-0.1.0/python/openstock_engine/visual_formatter.py +366 -0
@@ -0,0 +1,2338 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "autocfg"
37
+ version = "1.5.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
40
+
41
+ [[package]]
42
+ name = "base64"
43
+ version = "0.21.7"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
46
+
47
+ [[package]]
48
+ name = "bitflags"
49
+ version = "1.3.2"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
52
+
53
+ [[package]]
54
+ name = "bitflags"
55
+ version = "2.13.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
58
+
59
+ [[package]]
60
+ name = "block-buffer"
61
+ version = "0.10.4"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
64
+ dependencies = [
65
+ "generic-array",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "bumpalo"
70
+ version = "3.20.3"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
73
+
74
+ [[package]]
75
+ name = "byteorder"
76
+ version = "1.5.0"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
79
+
80
+ [[package]]
81
+ name = "bytes"
82
+ version = "1.12.1"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
85
+
86
+ [[package]]
87
+ name = "cast"
88
+ version = "0.3.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
91
+
92
+ [[package]]
93
+ name = "cc"
94
+ version = "1.4.3"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
97
+ dependencies = [
98
+ "find-msvc-tools",
99
+ "shlex",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "cfg-if"
104
+ version = "1.0.4"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
107
+
108
+ [[package]]
109
+ name = "chrono"
110
+ version = "0.4.45"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
113
+ dependencies = [
114
+ "iana-time-zone",
115
+ "js-sys",
116
+ "num-traits",
117
+ "serde",
118
+ "wasm-bindgen",
119
+ "windows-link",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "ciborium"
124
+ version = "0.2.2"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
127
+ dependencies = [
128
+ "ciborium-io",
129
+ "ciborium-ll",
130
+ "serde",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "ciborium-io"
135
+ version = "0.2.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
138
+
139
+ [[package]]
140
+ name = "ciborium-ll"
141
+ version = "0.2.2"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
144
+ dependencies = [
145
+ "ciborium-io",
146
+ "half",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "clap"
151
+ version = "4.6.6"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
154
+ dependencies = [
155
+ "clap_builder",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "clap_builder"
160
+ version = "4.6.6"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
163
+ dependencies = [
164
+ "anstyle",
165
+ "clap_lex",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "clap_lex"
170
+ version = "1.1.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
173
+
174
+ [[package]]
175
+ name = "core-foundation"
176
+ version = "0.9.4"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
179
+ dependencies = [
180
+ "core-foundation-sys",
181
+ "libc",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "core-foundation"
186
+ version = "0.10.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
189
+ dependencies = [
190
+ "core-foundation-sys",
191
+ "libc",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "core-foundation-sys"
196
+ version = "0.8.7"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
199
+
200
+ [[package]]
201
+ name = "cpufeatures"
202
+ version = "0.2.17"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
205
+ dependencies = [
206
+ "libc",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "criterion"
211
+ version = "0.5.1"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
214
+ dependencies = [
215
+ "anes",
216
+ "cast",
217
+ "ciborium",
218
+ "clap",
219
+ "criterion-plot",
220
+ "is-terminal",
221
+ "itertools",
222
+ "num-traits",
223
+ "once_cell",
224
+ "oorandom",
225
+ "plotters",
226
+ "rayon",
227
+ "regex",
228
+ "serde",
229
+ "serde_derive",
230
+ "serde_json",
231
+ "tinytemplate",
232
+ "walkdir",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "criterion-plot"
237
+ version = "0.5.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
240
+ dependencies = [
241
+ "cast",
242
+ "itertools",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "crossbeam-channel"
247
+ version = "0.5.16"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
250
+ dependencies = [
251
+ "crossbeam-utils",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "crossbeam-deque"
256
+ version = "0.8.7"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
259
+ dependencies = [
260
+ "crossbeam-epoch",
261
+ "crossbeam-utils",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "crossbeam-epoch"
266
+ version = "0.9.20"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
269
+ dependencies = [
270
+ "crossbeam-utils",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "crossbeam-utils"
275
+ version = "0.8.22"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
278
+
279
+ [[package]]
280
+ name = "crunchy"
281
+ version = "0.2.4"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
284
+
285
+ [[package]]
286
+ name = "crypto-common"
287
+ version = "0.1.7"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
290
+ dependencies = [
291
+ "generic-array",
292
+ "typenum",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "dashmap"
297
+ version = "5.5.3"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
300
+ dependencies = [
301
+ "cfg-if",
302
+ "hashbrown 0.14.5",
303
+ "lock_api",
304
+ "once_cell",
305
+ "parking_lot_core",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "data-encoding"
310
+ version = "2.11.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
313
+
314
+ [[package]]
315
+ name = "digest"
316
+ version = "0.10.7"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
319
+ dependencies = [
320
+ "block-buffer",
321
+ "crypto-common",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "displaydoc"
326
+ version = "0.2.7"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
329
+ dependencies = [
330
+ "proc-macro2",
331
+ "quote",
332
+ "syn 3.0.3",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "either"
337
+ version = "1.17.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
340
+
341
+ [[package]]
342
+ name = "encoding_rs"
343
+ version = "0.8.35"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
346
+ dependencies = [
347
+ "cfg-if",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "equivalent"
352
+ version = "1.0.2"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
355
+
356
+ [[package]]
357
+ name = "errno"
358
+ version = "0.3.14"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
361
+ dependencies = [
362
+ "libc",
363
+ "windows-sys 0.61.2",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "fastrand"
368
+ version = "2.5.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
371
+
372
+ [[package]]
373
+ name = "find-msvc-tools"
374
+ version = "0.1.11"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
377
+
378
+ [[package]]
379
+ name = "fnv"
380
+ version = "1.0.7"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
383
+
384
+ [[package]]
385
+ name = "foreign-types"
386
+ version = "0.3.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
389
+ dependencies = [
390
+ "foreign-types-shared",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "foreign-types-shared"
395
+ version = "0.1.1"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
398
+
399
+ [[package]]
400
+ name = "form_urlencoded"
401
+ version = "1.2.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
404
+ dependencies = [
405
+ "percent-encoding",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "futures-channel"
410
+ version = "0.3.34"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
413
+ dependencies = [
414
+ "futures-core",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "futures-core"
419
+ version = "0.3.34"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
422
+
423
+ [[package]]
424
+ name = "futures-macro"
425
+ version = "0.3.34"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
428
+ dependencies = [
429
+ "proc-macro2",
430
+ "quote",
431
+ "syn 3.0.3",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "futures-sink"
436
+ version = "0.3.34"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
439
+
440
+ [[package]]
441
+ name = "futures-task"
442
+ version = "0.3.34"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
445
+
446
+ [[package]]
447
+ name = "futures-util"
448
+ version = "0.3.34"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
451
+ dependencies = [
452
+ "futures-core",
453
+ "futures-macro",
454
+ "futures-sink",
455
+ "futures-task",
456
+ "pin-project-lite",
457
+ "slab",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "generic-array"
462
+ version = "0.14.7"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
465
+ dependencies = [
466
+ "typenum",
467
+ "version_check",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "getrandom"
472
+ version = "0.2.17"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
475
+ dependencies = [
476
+ "cfg-if",
477
+ "libc",
478
+ "wasi",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "getrandom"
483
+ version = "0.4.3"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
486
+ dependencies = [
487
+ "cfg-if",
488
+ "libc",
489
+ "r-efi",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "h2"
494
+ version = "0.3.27"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
497
+ dependencies = [
498
+ "bytes",
499
+ "fnv",
500
+ "futures-core",
501
+ "futures-sink",
502
+ "futures-util",
503
+ "http 0.2.12",
504
+ "indexmap",
505
+ "slab",
506
+ "tokio",
507
+ "tokio-util",
508
+ "tracing",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "half"
513
+ version = "2.7.1"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
516
+ dependencies = [
517
+ "cfg-if",
518
+ "crunchy",
519
+ "zerocopy",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "hashbrown"
524
+ version = "0.14.5"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
527
+
528
+ [[package]]
529
+ name = "hashbrown"
530
+ version = "0.17.1"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
533
+
534
+ [[package]]
535
+ name = "heck"
536
+ version = "0.5.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
539
+
540
+ [[package]]
541
+ name = "hermit-abi"
542
+ version = "0.5.2"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
545
+
546
+ [[package]]
547
+ name = "http"
548
+ version = "0.2.12"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
551
+ dependencies = [
552
+ "bytes",
553
+ "fnv",
554
+ "itoa",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "http"
559
+ version = "1.5.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
562
+ dependencies = [
563
+ "bytes",
564
+ "itoa",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "http-body"
569
+ version = "0.4.6"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
572
+ dependencies = [
573
+ "bytes",
574
+ "http 0.2.12",
575
+ "pin-project-lite",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "httparse"
580
+ version = "1.10.1"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
583
+
584
+ [[package]]
585
+ name = "httpdate"
586
+ version = "1.0.3"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
589
+
590
+ [[package]]
591
+ name = "hyper"
592
+ version = "0.14.32"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
595
+ dependencies = [
596
+ "bytes",
597
+ "futures-channel",
598
+ "futures-core",
599
+ "futures-util",
600
+ "h2",
601
+ "http 0.2.12",
602
+ "http-body",
603
+ "httparse",
604
+ "httpdate",
605
+ "itoa",
606
+ "pin-project-lite",
607
+ "socket2 0.5.10",
608
+ "tokio",
609
+ "tower-service",
610
+ "tracing",
611
+ "want",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "hyper-tls"
616
+ version = "0.5.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
619
+ dependencies = [
620
+ "bytes",
621
+ "hyper",
622
+ "native-tls",
623
+ "tokio",
624
+ "tokio-native-tls",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "iana-time-zone"
629
+ version = "0.1.65"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
632
+ dependencies = [
633
+ "android_system_properties",
634
+ "core-foundation-sys",
635
+ "iana-time-zone-haiku",
636
+ "js-sys",
637
+ "log",
638
+ "wasm-bindgen",
639
+ "windows-core",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "iana-time-zone-haiku"
644
+ version = "0.1.2"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
647
+ dependencies = [
648
+ "cc",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "icu_collections"
653
+ version = "2.3.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
656
+ dependencies = [
657
+ "displaydoc",
658
+ "potential_utf",
659
+ "utf8_iter",
660
+ "yoke",
661
+ "zerofrom",
662
+ "zerovec",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "icu_locale_core"
667
+ version = "2.3.0"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
670
+ dependencies = [
671
+ "displaydoc",
672
+ "litemap",
673
+ "tinystr",
674
+ "writeable",
675
+ "zerovec",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "icu_normalizer"
680
+ version = "2.3.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
683
+ dependencies = [
684
+ "icu_collections",
685
+ "icu_normalizer_data",
686
+ "icu_properties",
687
+ "icu_provider",
688
+ "smallvec",
689
+ "zerovec",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "icu_normalizer_data"
694
+ version = "2.3.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
697
+
698
+ [[package]]
699
+ name = "icu_properties"
700
+ version = "2.3.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
703
+ dependencies = [
704
+ "displaydoc",
705
+ "icu_collections",
706
+ "icu_locale_core",
707
+ "icu_properties_data",
708
+ "icu_provider",
709
+ "zerotrie",
710
+ "zerovec",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "icu_properties_data"
715
+ version = "2.3.0"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
718
+
719
+ [[package]]
720
+ name = "icu_provider"
721
+ version = "2.3.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
724
+ dependencies = [
725
+ "displaydoc",
726
+ "icu_locale_core",
727
+ "writeable",
728
+ "yoke",
729
+ "zerofrom",
730
+ "zerotrie",
731
+ "zerovec",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "idna"
736
+ version = "1.1.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
739
+ dependencies = [
740
+ "idna_adapter",
741
+ "smallvec",
742
+ "utf8_iter",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "idna_adapter"
747
+ version = "1.2.2"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
750
+ dependencies = [
751
+ "icu_normalizer",
752
+ "icu_properties",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "indexmap"
757
+ version = "2.14.0"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
760
+ dependencies = [
761
+ "equivalent",
762
+ "hashbrown 0.17.1",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "indoc"
767
+ version = "2.0.7"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
770
+ dependencies = [
771
+ "rustversion",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "ipnet"
776
+ version = "2.12.1"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
779
+
780
+ [[package]]
781
+ name = "is-terminal"
782
+ version = "0.4.17"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
785
+ dependencies = [
786
+ "hermit-abi",
787
+ "libc",
788
+ "windows-sys 0.61.2",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "itertools"
793
+ version = "0.10.5"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
796
+ dependencies = [
797
+ "either",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "itoa"
802
+ version = "1.0.18"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
805
+
806
+ [[package]]
807
+ name = "js-sys"
808
+ version = "0.3.104"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
811
+ dependencies = [
812
+ "cfg-if",
813
+ "futures-util",
814
+ "wasm-bindgen",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "lazy_static"
819
+ version = "1.5.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
822
+
823
+ [[package]]
824
+ name = "libc"
825
+ version = "0.2.189"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
828
+
829
+ [[package]]
830
+ name = "linux-raw-sys"
831
+ version = "0.12.1"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
834
+
835
+ [[package]]
836
+ name = "litemap"
837
+ version = "0.8.3"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
840
+
841
+ [[package]]
842
+ name = "lock_api"
843
+ version = "0.4.14"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
846
+ dependencies = [
847
+ "scopeguard",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "log"
852
+ version = "0.4.33"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
855
+
856
+ [[package]]
857
+ name = "memchr"
858
+ version = "2.8.3"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
861
+
862
+ [[package]]
863
+ name = "memoffset"
864
+ version = "0.9.1"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
867
+ dependencies = [
868
+ "autocfg",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "mime"
873
+ version = "0.3.17"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
876
+
877
+ [[package]]
878
+ name = "mio"
879
+ version = "1.2.2"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
882
+ dependencies = [
883
+ "libc",
884
+ "wasi",
885
+ "windows-sys 0.61.2",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "native-tls"
890
+ version = "0.2.18"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
893
+ dependencies = [
894
+ "libc",
895
+ "log",
896
+ "openssl",
897
+ "openssl-probe",
898
+ "openssl-sys",
899
+ "schannel",
900
+ "security-framework",
901
+ "security-framework-sys",
902
+ "tempfile",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "nu-ansi-term"
907
+ version = "0.50.3"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
910
+ dependencies = [
911
+ "windows-sys 0.61.2",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "num-traits"
916
+ version = "0.2.19"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
919
+ dependencies = [
920
+ "autocfg",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "once_cell"
925
+ version = "1.21.4"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
928
+
929
+ [[package]]
930
+ name = "oorandom"
931
+ version = "11.1.5"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
934
+
935
+ [[package]]
936
+ name = "openssl"
937
+ version = "0.10.81"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
940
+ dependencies = [
941
+ "bitflags 2.13.1",
942
+ "cfg-if",
943
+ "foreign-types",
944
+ "libc",
945
+ "openssl-macros",
946
+ "openssl-sys",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "openssl-macros"
951
+ version = "0.1.1"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
954
+ dependencies = [
955
+ "proc-macro2",
956
+ "quote",
957
+ "syn 2.0.119",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "openssl-probe"
962
+ version = "0.2.1"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
965
+
966
+ [[package]]
967
+ name = "openssl-sys"
968
+ version = "0.9.117"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
971
+ dependencies = [
972
+ "cc",
973
+ "libc",
974
+ "pkg-config",
975
+ "vcpkg",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "openstock-engine-core"
980
+ version = "0.1.0"
981
+ dependencies = [
982
+ "chrono",
983
+ "criterion",
984
+ "crossbeam-channel",
985
+ "dashmap",
986
+ "futures-util",
987
+ "ordered-float",
988
+ "rayon",
989
+ "reqwest",
990
+ "serde",
991
+ "serde_json",
992
+ "tokio",
993
+ "tokio-test",
994
+ "tokio-tungstenite",
995
+ "tracing",
996
+ "tracing-subscriber",
997
+ "uuid",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "openstock-engine-py"
1002
+ version = "0.1.0"
1003
+ dependencies = [
1004
+ "openstock-engine-core",
1005
+ "pyo3",
1006
+ "serde_json",
1007
+ "tokio",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "ordered-float"
1012
+ version = "4.6.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
1015
+ dependencies = [
1016
+ "num-traits",
1017
+ "rand",
1018
+ "serde",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "parking_lot"
1023
+ version = "0.12.5"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1026
+ dependencies = [
1027
+ "lock_api",
1028
+ "parking_lot_core",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "parking_lot_core"
1033
+ version = "0.9.12"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1036
+ dependencies = [
1037
+ "cfg-if",
1038
+ "libc",
1039
+ "redox_syscall",
1040
+ "smallvec",
1041
+ "windows-link",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "percent-encoding"
1046
+ version = "2.3.2"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1049
+
1050
+ [[package]]
1051
+ name = "pin-project-lite"
1052
+ version = "0.2.17"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1055
+
1056
+ [[package]]
1057
+ name = "pkg-config"
1058
+ version = "0.3.34"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
1061
+
1062
+ [[package]]
1063
+ name = "plotters"
1064
+ version = "0.3.7"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1067
+ dependencies = [
1068
+ "num-traits",
1069
+ "plotters-backend",
1070
+ "plotters-svg",
1071
+ "wasm-bindgen",
1072
+ "web-sys",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "plotters-backend"
1077
+ version = "0.3.7"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1080
+
1081
+ [[package]]
1082
+ name = "plotters-svg"
1083
+ version = "0.3.7"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1086
+ dependencies = [
1087
+ "plotters-backend",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "portable-atomic"
1092
+ version = "1.15.0"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1095
+
1096
+ [[package]]
1097
+ name = "potential_utf"
1098
+ version = "0.1.6"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1101
+ dependencies = [
1102
+ "zerovec",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "ppv-lite86"
1107
+ version = "0.2.21"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1110
+ dependencies = [
1111
+ "zerocopy",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "proc-macro2"
1116
+ version = "1.0.107"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1119
+ dependencies = [
1120
+ "unicode-ident",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "pyo3"
1125
+ version = "0.22.6"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1128
+ dependencies = [
1129
+ "cfg-if",
1130
+ "indoc",
1131
+ "libc",
1132
+ "memoffset",
1133
+ "once_cell",
1134
+ "portable-atomic",
1135
+ "pyo3-build-config",
1136
+ "pyo3-ffi",
1137
+ "pyo3-macros",
1138
+ "unindent",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "pyo3-build-config"
1143
+ version = "0.22.6"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1146
+ dependencies = [
1147
+ "once_cell",
1148
+ "target-lexicon",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "pyo3-ffi"
1153
+ version = "0.22.6"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1156
+ dependencies = [
1157
+ "libc",
1158
+ "pyo3-build-config",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "pyo3-macros"
1163
+ version = "0.22.6"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1166
+ dependencies = [
1167
+ "proc-macro2",
1168
+ "pyo3-macros-backend",
1169
+ "quote",
1170
+ "syn 2.0.119",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "pyo3-macros-backend"
1175
+ version = "0.22.6"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1178
+ dependencies = [
1179
+ "heck",
1180
+ "proc-macro2",
1181
+ "pyo3-build-config",
1182
+ "quote",
1183
+ "syn 2.0.119",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "quote"
1188
+ version = "1.0.47"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1191
+ dependencies = [
1192
+ "proc-macro2",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "r-efi"
1197
+ version = "6.0.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1200
+
1201
+ [[package]]
1202
+ name = "rand"
1203
+ version = "0.8.7"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1206
+ dependencies = [
1207
+ "libc",
1208
+ "rand_chacha",
1209
+ "rand_core",
1210
+ "serde",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "rand_chacha"
1215
+ version = "0.3.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1218
+ dependencies = [
1219
+ "ppv-lite86",
1220
+ "rand_core",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "rand_core"
1225
+ version = "0.6.4"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1228
+ dependencies = [
1229
+ "getrandom 0.2.17",
1230
+ "serde",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "rayon"
1235
+ version = "1.12.0"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1238
+ dependencies = [
1239
+ "either",
1240
+ "rayon-core",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "rayon-core"
1245
+ version = "1.13.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1248
+ dependencies = [
1249
+ "crossbeam-deque",
1250
+ "crossbeam-utils",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "redox_syscall"
1255
+ version = "0.5.18"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1258
+ dependencies = [
1259
+ "bitflags 2.13.1",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "regex"
1264
+ version = "1.13.1"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1267
+ dependencies = [
1268
+ "aho-corasick",
1269
+ "memchr",
1270
+ "regex-automata",
1271
+ "regex-syntax",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "regex-automata"
1276
+ version = "0.4.18"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1279
+ dependencies = [
1280
+ "aho-corasick",
1281
+ "memchr",
1282
+ "regex-syntax",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "regex-syntax"
1287
+ version = "0.8.11"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1290
+
1291
+ [[package]]
1292
+ name = "reqwest"
1293
+ version = "0.11.27"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1296
+ dependencies = [
1297
+ "base64",
1298
+ "bytes",
1299
+ "encoding_rs",
1300
+ "futures-core",
1301
+ "futures-util",
1302
+ "h2",
1303
+ "http 0.2.12",
1304
+ "http-body",
1305
+ "hyper",
1306
+ "hyper-tls",
1307
+ "ipnet",
1308
+ "js-sys",
1309
+ "log",
1310
+ "mime",
1311
+ "native-tls",
1312
+ "once_cell",
1313
+ "percent-encoding",
1314
+ "pin-project-lite",
1315
+ "rustls-pemfile",
1316
+ "serde",
1317
+ "serde_json",
1318
+ "serde_urlencoded",
1319
+ "sync_wrapper",
1320
+ "system-configuration",
1321
+ "tokio",
1322
+ "tokio-native-tls",
1323
+ "tower-service",
1324
+ "url",
1325
+ "wasm-bindgen",
1326
+ "wasm-bindgen-futures",
1327
+ "web-sys",
1328
+ "winreg",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "rustix"
1333
+ version = "1.1.4"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1336
+ dependencies = [
1337
+ "bitflags 2.13.1",
1338
+ "errno",
1339
+ "libc",
1340
+ "linux-raw-sys",
1341
+ "windows-sys 0.61.2",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "rustls-pemfile"
1346
+ version = "1.0.4"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
1349
+ dependencies = [
1350
+ "base64",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "rustversion"
1355
+ version = "1.0.23"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1358
+
1359
+ [[package]]
1360
+ name = "ryu"
1361
+ version = "1.0.23"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1364
+
1365
+ [[package]]
1366
+ name = "same-file"
1367
+ version = "1.0.6"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1370
+ dependencies = [
1371
+ "winapi-util",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "schannel"
1376
+ version = "0.1.29"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1379
+ dependencies = [
1380
+ "windows-sys 0.61.2",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "scopeguard"
1385
+ version = "1.2.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1388
+
1389
+ [[package]]
1390
+ name = "security-framework"
1391
+ version = "3.7.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1394
+ dependencies = [
1395
+ "bitflags 2.13.1",
1396
+ "core-foundation 0.10.1",
1397
+ "core-foundation-sys",
1398
+ "libc",
1399
+ "security-framework-sys",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "security-framework-sys"
1404
+ version = "2.17.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1407
+ dependencies = [
1408
+ "core-foundation-sys",
1409
+ "libc",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "serde"
1414
+ version = "1.0.229"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1417
+ dependencies = [
1418
+ "serde_core",
1419
+ "serde_derive",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "serde_core"
1424
+ version = "1.0.229"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1427
+ dependencies = [
1428
+ "serde_derive",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "serde_derive"
1433
+ version = "1.0.229"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1436
+ dependencies = [
1437
+ "proc-macro2",
1438
+ "quote",
1439
+ "syn 3.0.3",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "serde_json"
1444
+ version = "1.0.151"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1447
+ dependencies = [
1448
+ "itoa",
1449
+ "memchr",
1450
+ "serde",
1451
+ "serde_core",
1452
+ "zmij",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "serde_urlencoded"
1457
+ version = "0.7.1"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1460
+ dependencies = [
1461
+ "form_urlencoded",
1462
+ "itoa",
1463
+ "ryu",
1464
+ "serde",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "sha1"
1469
+ version = "0.10.7"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
1472
+ dependencies = [
1473
+ "cfg-if",
1474
+ "cpufeatures",
1475
+ "digest",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "sharded-slab"
1480
+ version = "0.1.7"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1483
+ dependencies = [
1484
+ "lazy_static",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "shlex"
1489
+ version = "2.0.1"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1492
+
1493
+ [[package]]
1494
+ name = "signal-hook-registry"
1495
+ version = "1.4.8"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1498
+ dependencies = [
1499
+ "errno",
1500
+ "libc",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "slab"
1505
+ version = "0.4.12"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1508
+
1509
+ [[package]]
1510
+ name = "smallvec"
1511
+ version = "1.15.2"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1514
+
1515
+ [[package]]
1516
+ name = "socket2"
1517
+ version = "0.5.10"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1520
+ dependencies = [
1521
+ "libc",
1522
+ "windows-sys 0.52.0",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "socket2"
1527
+ version = "0.6.5"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1530
+ dependencies = [
1531
+ "libc",
1532
+ "windows-sys 0.61.2",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "stable_deref_trait"
1537
+ version = "1.2.1"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1540
+
1541
+ [[package]]
1542
+ name = "syn"
1543
+ version = "2.0.119"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1546
+ dependencies = [
1547
+ "proc-macro2",
1548
+ "quote",
1549
+ "unicode-ident",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "syn"
1554
+ version = "3.0.3"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1557
+ dependencies = [
1558
+ "proc-macro2",
1559
+ "quote",
1560
+ "unicode-ident",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "sync_wrapper"
1565
+ version = "0.1.2"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
1568
+
1569
+ [[package]]
1570
+ name = "synstructure"
1571
+ version = "0.13.2"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1574
+ dependencies = [
1575
+ "proc-macro2",
1576
+ "quote",
1577
+ "syn 2.0.119",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "system-configuration"
1582
+ version = "0.5.1"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
1585
+ dependencies = [
1586
+ "bitflags 1.3.2",
1587
+ "core-foundation 0.9.4",
1588
+ "system-configuration-sys",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "system-configuration-sys"
1593
+ version = "0.5.0"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
1596
+ dependencies = [
1597
+ "core-foundation-sys",
1598
+ "libc",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "target-lexicon"
1603
+ version = "0.12.16"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1606
+
1607
+ [[package]]
1608
+ name = "tempfile"
1609
+ version = "3.27.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1612
+ dependencies = [
1613
+ "fastrand",
1614
+ "getrandom 0.4.3",
1615
+ "once_cell",
1616
+ "rustix",
1617
+ "windows-sys 0.61.2",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "thiserror"
1622
+ version = "1.0.69"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1625
+ dependencies = [
1626
+ "thiserror-impl",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "thiserror-impl"
1631
+ version = "1.0.69"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1634
+ dependencies = [
1635
+ "proc-macro2",
1636
+ "quote",
1637
+ "syn 2.0.119",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "thread_local"
1642
+ version = "1.1.10"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1645
+ dependencies = [
1646
+ "cfg-if",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "tinystr"
1651
+ version = "0.8.4"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
1654
+ dependencies = [
1655
+ "displaydoc",
1656
+ "zerovec",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "tinytemplate"
1661
+ version = "1.2.1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1664
+ dependencies = [
1665
+ "serde",
1666
+ "serde_json",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "tokio"
1671
+ version = "1.53.1"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1674
+ dependencies = [
1675
+ "bytes",
1676
+ "libc",
1677
+ "mio",
1678
+ "parking_lot",
1679
+ "pin-project-lite",
1680
+ "signal-hook-registry",
1681
+ "socket2 0.6.5",
1682
+ "tokio-macros",
1683
+ "windows-sys 0.61.2",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "tokio-macros"
1688
+ version = "2.7.2"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
1691
+ dependencies = [
1692
+ "proc-macro2",
1693
+ "quote",
1694
+ "syn 3.0.3",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "tokio-native-tls"
1699
+ version = "0.3.1"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1702
+ dependencies = [
1703
+ "native-tls",
1704
+ "tokio",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "tokio-stream"
1709
+ version = "0.1.19"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
1712
+ dependencies = [
1713
+ "futures-core",
1714
+ "pin-project-lite",
1715
+ "tokio",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "tokio-test"
1720
+ version = "0.4.5"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
1723
+ dependencies = [
1724
+ "futures-core",
1725
+ "tokio",
1726
+ "tokio-stream",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "tokio-tungstenite"
1731
+ version = "0.21.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
1734
+ dependencies = [
1735
+ "futures-util",
1736
+ "log",
1737
+ "tokio",
1738
+ "tungstenite",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "tokio-util"
1743
+ version = "0.7.19"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
1746
+ dependencies = [
1747
+ "bytes",
1748
+ "futures-core",
1749
+ "futures-sink",
1750
+ "libc",
1751
+ "pin-project-lite",
1752
+ "tokio",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "tower-service"
1757
+ version = "0.3.3"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1760
+
1761
+ [[package]]
1762
+ name = "tracing"
1763
+ version = "0.1.44"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1766
+ dependencies = [
1767
+ "pin-project-lite",
1768
+ "tracing-attributes",
1769
+ "tracing-core",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "tracing-attributes"
1774
+ version = "0.1.31"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1777
+ dependencies = [
1778
+ "proc-macro2",
1779
+ "quote",
1780
+ "syn 2.0.119",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "tracing-core"
1785
+ version = "0.1.36"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1788
+ dependencies = [
1789
+ "once_cell",
1790
+ "valuable",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "tracing-log"
1795
+ version = "0.2.0"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1798
+ dependencies = [
1799
+ "log",
1800
+ "once_cell",
1801
+ "tracing-core",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "tracing-subscriber"
1806
+ version = "0.3.23"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1809
+ dependencies = [
1810
+ "nu-ansi-term",
1811
+ "sharded-slab",
1812
+ "smallvec",
1813
+ "thread_local",
1814
+ "tracing-core",
1815
+ "tracing-log",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "try-lock"
1820
+ version = "0.2.5"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1823
+
1824
+ [[package]]
1825
+ name = "tungstenite"
1826
+ version = "0.21.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
1829
+ dependencies = [
1830
+ "byteorder",
1831
+ "bytes",
1832
+ "data-encoding",
1833
+ "http 1.5.0",
1834
+ "httparse",
1835
+ "log",
1836
+ "rand",
1837
+ "sha1",
1838
+ "thiserror",
1839
+ "url",
1840
+ "utf-8",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "typenum"
1845
+ version = "1.20.1"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1848
+
1849
+ [[package]]
1850
+ name = "unicode-ident"
1851
+ version = "1.0.24"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1854
+
1855
+ [[package]]
1856
+ name = "unindent"
1857
+ version = "0.2.4"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1860
+
1861
+ [[package]]
1862
+ name = "url"
1863
+ version = "2.5.8"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1866
+ dependencies = [
1867
+ "form_urlencoded",
1868
+ "idna",
1869
+ "percent-encoding",
1870
+ "serde",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "utf-8"
1875
+ version = "0.7.6"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1878
+
1879
+ [[package]]
1880
+ name = "utf8_iter"
1881
+ version = "1.0.4"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1884
+
1885
+ [[package]]
1886
+ name = "uuid"
1887
+ version = "1.24.1"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
1890
+ dependencies = [
1891
+ "getrandom 0.4.3",
1892
+ "js-sys",
1893
+ "serde_core",
1894
+ "wasm-bindgen",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "valuable"
1899
+ version = "0.1.1"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1902
+
1903
+ [[package]]
1904
+ name = "vcpkg"
1905
+ version = "0.2.15"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1908
+
1909
+ [[package]]
1910
+ name = "version_check"
1911
+ version = "0.9.5"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1914
+
1915
+ [[package]]
1916
+ name = "walkdir"
1917
+ version = "2.5.0"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1920
+ dependencies = [
1921
+ "same-file",
1922
+ "winapi-util",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "want"
1927
+ version = "0.3.1"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1930
+ dependencies = [
1931
+ "try-lock",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "wasi"
1936
+ version = "0.11.1+wasi-snapshot-preview1"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1939
+
1940
+ [[package]]
1941
+ name = "wasm-bindgen"
1942
+ version = "0.2.127"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
1945
+ dependencies = [
1946
+ "cfg-if",
1947
+ "once_cell",
1948
+ "rustversion",
1949
+ "wasm-bindgen-macro",
1950
+ "wasm-bindgen-shared",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "wasm-bindgen-futures"
1955
+ version = "0.4.77"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
1958
+ dependencies = [
1959
+ "js-sys",
1960
+ "wasm-bindgen",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "wasm-bindgen-macro"
1965
+ version = "0.2.127"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
1968
+ dependencies = [
1969
+ "quote",
1970
+ "wasm-bindgen-macro-support",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "wasm-bindgen-macro-support"
1975
+ version = "0.2.127"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
1978
+ dependencies = [
1979
+ "bumpalo",
1980
+ "proc-macro2",
1981
+ "quote",
1982
+ "syn 2.0.119",
1983
+ "wasm-bindgen-shared",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "wasm-bindgen-shared"
1988
+ version = "0.2.127"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
1991
+ dependencies = [
1992
+ "unicode-ident",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "web-sys"
1997
+ version = "0.3.104"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
2000
+ dependencies = [
2001
+ "js-sys",
2002
+ "wasm-bindgen",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "winapi-util"
2007
+ version = "0.1.11"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2010
+ dependencies = [
2011
+ "windows-sys 0.61.2",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "windows-core"
2016
+ version = "0.62.2"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2019
+ dependencies = [
2020
+ "windows-implement",
2021
+ "windows-interface",
2022
+ "windows-link",
2023
+ "windows-result",
2024
+ "windows-strings",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "windows-implement"
2029
+ version = "0.60.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2032
+ dependencies = [
2033
+ "proc-macro2",
2034
+ "quote",
2035
+ "syn 2.0.119",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "windows-interface"
2040
+ version = "0.59.3"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2043
+ dependencies = [
2044
+ "proc-macro2",
2045
+ "quote",
2046
+ "syn 2.0.119",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "windows-link"
2051
+ version = "0.2.1"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2054
+
2055
+ [[package]]
2056
+ name = "windows-result"
2057
+ version = "0.4.1"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2060
+ dependencies = [
2061
+ "windows-link",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "windows-strings"
2066
+ version = "0.5.1"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2069
+ dependencies = [
2070
+ "windows-link",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "windows-sys"
2075
+ version = "0.48.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2078
+ dependencies = [
2079
+ "windows-targets 0.48.5",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "windows-sys"
2084
+ version = "0.52.0"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2087
+ dependencies = [
2088
+ "windows-targets 0.52.6",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "windows-sys"
2093
+ version = "0.61.2"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2096
+ dependencies = [
2097
+ "windows-link",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "windows-targets"
2102
+ version = "0.48.5"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2105
+ dependencies = [
2106
+ "windows_aarch64_gnullvm 0.48.5",
2107
+ "windows_aarch64_msvc 0.48.5",
2108
+ "windows_i686_gnu 0.48.5",
2109
+ "windows_i686_msvc 0.48.5",
2110
+ "windows_x86_64_gnu 0.48.5",
2111
+ "windows_x86_64_gnullvm 0.48.5",
2112
+ "windows_x86_64_msvc 0.48.5",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "windows-targets"
2117
+ version = "0.52.6"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2120
+ dependencies = [
2121
+ "windows_aarch64_gnullvm 0.52.6",
2122
+ "windows_aarch64_msvc 0.52.6",
2123
+ "windows_i686_gnu 0.52.6",
2124
+ "windows_i686_gnullvm",
2125
+ "windows_i686_msvc 0.52.6",
2126
+ "windows_x86_64_gnu 0.52.6",
2127
+ "windows_x86_64_gnullvm 0.52.6",
2128
+ "windows_x86_64_msvc 0.52.6",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "windows_aarch64_gnullvm"
2133
+ version = "0.48.5"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2136
+
2137
+ [[package]]
2138
+ name = "windows_aarch64_gnullvm"
2139
+ version = "0.52.6"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2142
+
2143
+ [[package]]
2144
+ name = "windows_aarch64_msvc"
2145
+ version = "0.48.5"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2148
+
2149
+ [[package]]
2150
+ name = "windows_aarch64_msvc"
2151
+ version = "0.52.6"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2154
+
2155
+ [[package]]
2156
+ name = "windows_i686_gnu"
2157
+ version = "0.48.5"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2160
+
2161
+ [[package]]
2162
+ name = "windows_i686_gnu"
2163
+ version = "0.52.6"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2166
+
2167
+ [[package]]
2168
+ name = "windows_i686_gnullvm"
2169
+ version = "0.52.6"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2172
+
2173
+ [[package]]
2174
+ name = "windows_i686_msvc"
2175
+ version = "0.48.5"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2178
+
2179
+ [[package]]
2180
+ name = "windows_i686_msvc"
2181
+ version = "0.52.6"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2184
+
2185
+ [[package]]
2186
+ name = "windows_x86_64_gnu"
2187
+ version = "0.48.5"
2188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2189
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2190
+
2191
+ [[package]]
2192
+ name = "windows_x86_64_gnu"
2193
+ version = "0.52.6"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2196
+
2197
+ [[package]]
2198
+ name = "windows_x86_64_gnullvm"
2199
+ version = "0.48.5"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2202
+
2203
+ [[package]]
2204
+ name = "windows_x86_64_gnullvm"
2205
+ version = "0.52.6"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2208
+
2209
+ [[package]]
2210
+ name = "windows_x86_64_msvc"
2211
+ version = "0.48.5"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2214
+
2215
+ [[package]]
2216
+ name = "windows_x86_64_msvc"
2217
+ version = "0.52.6"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2220
+
2221
+ [[package]]
2222
+ name = "winreg"
2223
+ version = "0.50.0"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2226
+ dependencies = [
2227
+ "cfg-if",
2228
+ "windows-sys 0.48.0",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "writeable"
2233
+ version = "0.6.4"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2236
+
2237
+ [[package]]
2238
+ name = "yoke"
2239
+ version = "0.8.3"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2242
+ dependencies = [
2243
+ "stable_deref_trait",
2244
+ "yoke-derive",
2245
+ "zerofrom",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "yoke-derive"
2250
+ version = "0.8.2"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2253
+ dependencies = [
2254
+ "proc-macro2",
2255
+ "quote",
2256
+ "syn 2.0.119",
2257
+ "synstructure",
2258
+ ]
2259
+
2260
+ [[package]]
2261
+ name = "zerocopy"
2262
+ version = "0.8.56"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2265
+ dependencies = [
2266
+ "zerocopy-derive",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "zerocopy-derive"
2271
+ version = "0.8.56"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2274
+ dependencies = [
2275
+ "proc-macro2",
2276
+ "quote",
2277
+ "syn 2.0.119",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "zerofrom"
2282
+ version = "0.1.8"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2285
+ dependencies = [
2286
+ "zerofrom-derive",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "zerofrom-derive"
2291
+ version = "0.1.7"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2294
+ dependencies = [
2295
+ "proc-macro2",
2296
+ "quote",
2297
+ "syn 2.0.119",
2298
+ "synstructure",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "zerotrie"
2303
+ version = "0.2.5"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2306
+ dependencies = [
2307
+ "displaydoc",
2308
+ "yoke",
2309
+ "zerofrom",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "zerovec"
2314
+ version = "0.11.8"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
2317
+ dependencies = [
2318
+ "yoke",
2319
+ "zerofrom",
2320
+ "zerovec-derive",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "zerovec-derive"
2325
+ version = "0.11.5"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "9f212a141d820099d57ffafb9569be9617a6f27d3dc881fbee8fb56642f917a9"
2328
+ dependencies = [
2329
+ "proc-macro2",
2330
+ "quote",
2331
+ "syn 3.0.3",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "zmij"
2336
+ version = "1.0.23"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"