aerospike-py 0.0.1.dev2__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 (44) hide show
  1. aerospike_py-0.0.1.dev2/Cargo.lock +1273 -0
  2. aerospike_py-0.0.1.dev2/Cargo.toml +3 -0
  3. aerospike_py-0.0.1.dev2/LICENSE +661 -0
  4. aerospike_py-0.0.1.dev2/PKG-INFO +165 -0
  5. aerospike_py-0.0.1.dev2/README.md +150 -0
  6. aerospike_py-0.0.1.dev2/pyproject.toml +32 -0
  7. aerospike_py-0.0.1.dev2/rust/Cargo.toml +17 -0
  8. aerospike_py-0.0.1.dev2/rust/src/async_client.rs +1282 -0
  9. aerospike_py-0.0.1.dev2/rust/src/batch_types.rs +53 -0
  10. aerospike_py-0.0.1.dev2/rust/src/client.rs +1263 -0
  11. aerospike_py-0.0.1.dev2/rust/src/constants.rs +210 -0
  12. aerospike_py-0.0.1.dev2/rust/src/errors.rs +214 -0
  13. aerospike_py-0.0.1.dev2/rust/src/expressions.rs +452 -0
  14. aerospike_py-0.0.1.dev2/rust/src/lib.rs +34 -0
  15. aerospike_py-0.0.1.dev2/rust/src/operations.rs +702 -0
  16. aerospike_py-0.0.1.dev2/rust/src/policy/admin_policy.rs +127 -0
  17. aerospike_py-0.0.1.dev2/rust/src/policy/batch_policy.rs +54 -0
  18. aerospike_py-0.0.1.dev2/rust/src/policy/client_policy.rs +70 -0
  19. aerospike_py-0.0.1.dev2/rust/src/policy/mod.rs +6 -0
  20. aerospike_py-0.0.1.dev2/rust/src/policy/query_policy.rs +59 -0
  21. aerospike_py-0.0.1.dev2/rust/src/policy/read_policy.rs +44 -0
  22. aerospike_py-0.0.1.dev2/rust/src/policy/write_policy.rs +115 -0
  23. aerospike_py-0.0.1.dev2/rust/src/query.rs +361 -0
  24. aerospike_py-0.0.1.dev2/rust/src/record_helpers.rs +42 -0
  25. aerospike_py-0.0.1.dev2/rust/src/runtime.rs +8 -0
  26. aerospike_py-0.0.1.dev2/rust/src/types/bin.rs +16 -0
  27. aerospike_py-0.0.1.dev2/rust/src/types/host.rs +40 -0
  28. aerospike_py-0.0.1.dev2/rust/src/types/key.rs +63 -0
  29. aerospike_py-0.0.1.dev2/rust/src/types/mod.rs +5 -0
  30. aerospike_py-0.0.1.dev2/rust/src/types/record.rs +39 -0
  31. aerospike_py-0.0.1.dev2/rust/src/types/value.rs +99 -0
  32. aerospike_py-0.0.1.dev2/src/aerospike_py/__init__.py +271 -0
  33. aerospike_py-0.0.1.dev2/src/aerospike_py/__init__.pyi +826 -0
  34. aerospike_py-0.0.1.dev2/src/aerospike_py/exception.py +63 -0
  35. aerospike_py-0.0.1.dev2/src/aerospike_py/exception.pyi +25 -0
  36. aerospike_py-0.0.1.dev2/src/aerospike_py/exp.py +427 -0
  37. aerospike_py-0.0.1.dev2/src/aerospike_py/exp.pyi +103 -0
  38. aerospike_py-0.0.1.dev2/src/aerospike_py/list_operations.py +308 -0
  39. aerospike_py-0.0.1.dev2/src/aerospike_py/list_operations.pyi +55 -0
  40. aerospike_py-0.0.1.dev2/src/aerospike_py/map_operations.py +307 -0
  41. aerospike_py-0.0.1.dev2/src/aerospike_py/map_operations.pyi +49 -0
  42. aerospike_py-0.0.1.dev2/src/aerospike_py/predicates.py +46 -0
  43. aerospike_py-0.0.1.dev2/src/aerospike_py/predicates.pyi +14 -0
  44. aerospike_py-0.0.1.dev2/src/aerospike_py/py.typed +0 -0
@@ -0,0 +1,1273 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aerospike"
7
+ version = "2.0.0-alpha.9"
8
+ source = "git+https://github.com/aerospike/aerospike-client-rust.git?tag=v2.0.0-alpha.9#f565393cb41fa1c0fd1ccb97766bb1de016a4955"
9
+ dependencies = [
10
+ "aerospike-core",
11
+ "aerospike-macro",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "aerospike-core"
16
+ version = "2.0.0-alpha.9"
17
+ source = "git+https://github.com/aerospike/aerospike-client-rust.git?tag=v2.0.0-alpha.9#f565393cb41fa1c0fd1ccb97766bb1de016a4955"
18
+ dependencies = [
19
+ "aerospike-rt",
20
+ "async-channel",
21
+ "async-lock",
22
+ "async-trait",
23
+ "base64",
24
+ "byteorder",
25
+ "crossbeam-queue",
26
+ "futures",
27
+ "lazy_static",
28
+ "log",
29
+ "pwhash",
30
+ "rand",
31
+ "regex",
32
+ "rhexdump",
33
+ "ripemd",
34
+ "rustls",
35
+ "serde",
36
+ "thiserror",
37
+ "tokio-rustls",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "aerospike-macro"
42
+ version = "2.0.0-alpha.9"
43
+ source = "git+https://github.com/aerospike/aerospike-client-rust.git?tag=v2.0.0-alpha.9#f565393cb41fa1c0fd1ccb97766bb1de016a4955"
44
+ dependencies = [
45
+ "aerospike-rt",
46
+ "proc-macro2",
47
+ "quote",
48
+ "syn",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "aerospike-py-native"
53
+ version = "0.0.1-dev2"
54
+ dependencies = [
55
+ "aerospike",
56
+ "aerospike-core",
57
+ "futures",
58
+ "pyo3",
59
+ "pyo3-async-runtimes",
60
+ "tokio",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "aerospike-rt"
65
+ version = "2.0.0-alpha.9"
66
+ source = "git+https://github.com/aerospike/aerospike-client-rust.git?tag=v2.0.0-alpha.9#f565393cb41fa1c0fd1ccb97766bb1de016a4955"
67
+ dependencies = [
68
+ "tokio",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "aho-corasick"
73
+ version = "1.1.4"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
76
+ dependencies = [
77
+ "memchr",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "async-channel"
82
+ version = "2.5.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
85
+ dependencies = [
86
+ "concurrent-queue",
87
+ "event-listener-strategy",
88
+ "futures-core",
89
+ "pin-project-lite",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "async-lock"
94
+ version = "3.4.2"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
97
+ dependencies = [
98
+ "event-listener",
99
+ "event-listener-strategy",
100
+ "pin-project-lite",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "async-trait"
105
+ version = "0.1.89"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
108
+ dependencies = [
109
+ "proc-macro2",
110
+ "quote",
111
+ "syn",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "aws-lc-rs"
116
+ version = "1.15.4"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
119
+ dependencies = [
120
+ "aws-lc-sys",
121
+ "zeroize",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "aws-lc-sys"
126
+ version = "0.37.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a"
129
+ dependencies = [
130
+ "cc",
131
+ "cmake",
132
+ "dunce",
133
+ "fs_extra",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "base64"
138
+ version = "0.13.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
141
+
142
+ [[package]]
143
+ name = "bitflags"
144
+ version = "2.10.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
147
+
148
+ [[package]]
149
+ name = "block-buffer"
150
+ version = "0.9.0"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
153
+ dependencies = [
154
+ "generic-array",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "block-buffer"
159
+ version = "0.10.4"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
162
+ dependencies = [
163
+ "generic-array",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "blowfish"
168
+ version = "0.7.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "32fa6a061124e37baba002e496d203e23ba3d7b73750be82dbfbc92913048a5b"
171
+ dependencies = [
172
+ "byteorder",
173
+ "cipher",
174
+ "opaque-debug",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "byteorder"
179
+ version = "1.5.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
182
+
183
+ [[package]]
184
+ name = "bytes"
185
+ version = "1.11.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
188
+
189
+ [[package]]
190
+ name = "cc"
191
+ version = "1.2.55"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
194
+ dependencies = [
195
+ "find-msvc-tools",
196
+ "jobserver",
197
+ "libc",
198
+ "shlex",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "cfg-if"
203
+ version = "1.0.4"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
206
+
207
+ [[package]]
208
+ name = "cipher"
209
+ version = "0.2.5"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
212
+ dependencies = [
213
+ "generic-array",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "cmake"
218
+ version = "0.1.57"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
221
+ dependencies = [
222
+ "cc",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "concurrent-queue"
227
+ version = "2.5.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
230
+ dependencies = [
231
+ "crossbeam-utils",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "cpufeatures"
236
+ version = "0.2.17"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
239
+ dependencies = [
240
+ "libc",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "crossbeam-queue"
245
+ version = "0.3.12"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
248
+ dependencies = [
249
+ "crossbeam-utils",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "crossbeam-utils"
254
+ version = "0.8.21"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
257
+
258
+ [[package]]
259
+ name = "crypto-common"
260
+ version = "0.1.7"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
263
+ dependencies = [
264
+ "generic-array",
265
+ "typenum",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "crypto-mac"
270
+ version = "0.10.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
273
+ dependencies = [
274
+ "generic-array",
275
+ "subtle",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "digest"
280
+ version = "0.9.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
283
+ dependencies = [
284
+ "generic-array",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "digest"
289
+ version = "0.10.7"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
292
+ dependencies = [
293
+ "block-buffer 0.10.4",
294
+ "crypto-common",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "dunce"
299
+ version = "1.0.5"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
302
+
303
+ [[package]]
304
+ name = "errno"
305
+ version = "0.3.14"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
308
+ dependencies = [
309
+ "libc",
310
+ "windows-sys 0.61.2",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "event-listener"
315
+ version = "5.4.1"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
318
+ dependencies = [
319
+ "concurrent-queue",
320
+ "parking",
321
+ "pin-project-lite",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "event-listener-strategy"
326
+ version = "0.5.4"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
329
+ dependencies = [
330
+ "event-listener",
331
+ "pin-project-lite",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "find-msvc-tools"
336
+ version = "0.1.9"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
339
+
340
+ [[package]]
341
+ name = "fs_extra"
342
+ version = "1.3.0"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
345
+
346
+ [[package]]
347
+ name = "futures"
348
+ version = "0.3.31"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
351
+ dependencies = [
352
+ "futures-channel",
353
+ "futures-core",
354
+ "futures-executor",
355
+ "futures-io",
356
+ "futures-sink",
357
+ "futures-task",
358
+ "futures-util",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "futures-channel"
363
+ version = "0.3.31"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
366
+ dependencies = [
367
+ "futures-core",
368
+ "futures-sink",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "futures-core"
373
+ version = "0.3.31"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
376
+
377
+ [[package]]
378
+ name = "futures-executor"
379
+ version = "0.3.31"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
382
+ dependencies = [
383
+ "futures-core",
384
+ "futures-task",
385
+ "futures-util",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "futures-io"
390
+ version = "0.3.31"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
393
+
394
+ [[package]]
395
+ name = "futures-macro"
396
+ version = "0.3.31"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
399
+ dependencies = [
400
+ "proc-macro2",
401
+ "quote",
402
+ "syn",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "futures-sink"
407
+ version = "0.3.31"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
410
+
411
+ [[package]]
412
+ name = "futures-task"
413
+ version = "0.3.31"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
416
+
417
+ [[package]]
418
+ name = "futures-util"
419
+ version = "0.3.31"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
422
+ dependencies = [
423
+ "futures-channel",
424
+ "futures-core",
425
+ "futures-io",
426
+ "futures-macro",
427
+ "futures-sink",
428
+ "futures-task",
429
+ "memchr",
430
+ "pin-project-lite",
431
+ "pin-utils",
432
+ "slab",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "generic-array"
437
+ version = "0.14.7"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
440
+ dependencies = [
441
+ "typenum",
442
+ "version_check",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "getrandom"
447
+ version = "0.2.17"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
450
+ dependencies = [
451
+ "cfg-if",
452
+ "libc",
453
+ "wasi",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "getrandom"
458
+ version = "0.3.4"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
461
+ dependencies = [
462
+ "cfg-if",
463
+ "libc",
464
+ "r-efi",
465
+ "wasip2",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "heck"
470
+ version = "0.5.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
473
+
474
+ [[package]]
475
+ name = "hmac"
476
+ version = "0.10.1"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
479
+ dependencies = [
480
+ "crypto-mac",
481
+ "digest 0.9.0",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "jobserver"
486
+ version = "0.1.34"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
489
+ dependencies = [
490
+ "getrandom 0.3.4",
491
+ "libc",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "lazy_static"
496
+ version = "1.5.0"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
499
+
500
+ [[package]]
501
+ name = "libc"
502
+ version = "0.2.180"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
505
+
506
+ [[package]]
507
+ name = "lock_api"
508
+ version = "0.4.14"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
511
+ dependencies = [
512
+ "scopeguard",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "log"
517
+ version = "0.4.29"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
520
+
521
+ [[package]]
522
+ name = "md-5"
523
+ version = "0.9.1"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
526
+ dependencies = [
527
+ "block-buffer 0.9.0",
528
+ "digest 0.9.0",
529
+ "opaque-debug",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "memchr"
534
+ version = "2.7.6"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
537
+
538
+ [[package]]
539
+ name = "mio"
540
+ version = "1.1.1"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
543
+ dependencies = [
544
+ "libc",
545
+ "wasi",
546
+ "windows-sys 0.61.2",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "once_cell"
551
+ version = "1.21.3"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
554
+
555
+ [[package]]
556
+ name = "opaque-debug"
557
+ version = "0.3.1"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
560
+
561
+ [[package]]
562
+ name = "parking"
563
+ version = "2.2.1"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
566
+
567
+ [[package]]
568
+ name = "parking_lot"
569
+ version = "0.12.5"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
572
+ dependencies = [
573
+ "lock_api",
574
+ "parking_lot_core",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "parking_lot_core"
579
+ version = "0.9.12"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
582
+ dependencies = [
583
+ "cfg-if",
584
+ "libc",
585
+ "redox_syscall",
586
+ "smallvec",
587
+ "windows-link",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "pin-project-lite"
592
+ version = "0.2.16"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
595
+
596
+ [[package]]
597
+ name = "pin-utils"
598
+ version = "0.1.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
601
+
602
+ [[package]]
603
+ name = "portable-atomic"
604
+ version = "1.13.1"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
607
+
608
+ [[package]]
609
+ name = "ppv-lite86"
610
+ version = "0.2.21"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
613
+ dependencies = [
614
+ "zerocopy",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "proc-macro2"
619
+ version = "1.0.106"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
622
+ dependencies = [
623
+ "unicode-ident",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "pwhash"
628
+ version = "1.0.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "419a3ad8fa9f9d445e69d9b185a24878ae6e6f55c96e4512f4a0e28cd3bc5c56"
631
+ dependencies = [
632
+ "blowfish",
633
+ "byteorder",
634
+ "hmac",
635
+ "md-5",
636
+ "rand",
637
+ "sha-1",
638
+ "sha2",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "pyo3"
643
+ version = "0.28.0"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "fcf3ccafdf54c050be48a3a086d372f77ba6615f5057211607cd30e5ac5cec6d"
646
+ dependencies = [
647
+ "libc",
648
+ "once_cell",
649
+ "portable-atomic",
650
+ "pyo3-build-config",
651
+ "pyo3-ffi",
652
+ "pyo3-macros",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "pyo3-async-runtimes"
657
+ version = "0.28.0"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
660
+ dependencies = [
661
+ "futures-channel",
662
+ "futures-util",
663
+ "once_cell",
664
+ "pin-project-lite",
665
+ "pyo3",
666
+ "tokio",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "pyo3-build-config"
671
+ version = "0.28.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "972720a441c91fd9c49f212a1d2d74c6e3803b231ebc8d66c51efbd7ccab11c8"
674
+ dependencies = [
675
+ "target-lexicon",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "pyo3-ffi"
680
+ version = "0.28.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "5994456d9dab8934d600d3867571b6410f24fbd6002570ad56356733eb54859b"
683
+ dependencies = [
684
+ "libc",
685
+ "pyo3-build-config",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "pyo3-macros"
690
+ version = "0.28.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "11ce9cc8d81b3c4969748807604d92b4eef363c5bb82b1a1bdb34ec6f1093a18"
693
+ dependencies = [
694
+ "proc-macro2",
695
+ "pyo3-macros-backend",
696
+ "quote",
697
+ "syn",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "pyo3-macros-backend"
702
+ version = "0.28.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "eaf4b60036a154d23282679b658e3cc7d88d3b8c9a40b43824785f232d2e1b98"
705
+ dependencies = [
706
+ "heck",
707
+ "proc-macro2",
708
+ "pyo3-build-config",
709
+ "quote",
710
+ "syn",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "quote"
715
+ version = "1.0.44"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
718
+ dependencies = [
719
+ "proc-macro2",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "r-efi"
724
+ version = "5.3.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
727
+
728
+ [[package]]
729
+ name = "rand"
730
+ version = "0.8.5"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
733
+ dependencies = [
734
+ "libc",
735
+ "rand_chacha",
736
+ "rand_core",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "rand_chacha"
741
+ version = "0.3.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
744
+ dependencies = [
745
+ "ppv-lite86",
746
+ "rand_core",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "rand_core"
751
+ version = "0.6.4"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
754
+ dependencies = [
755
+ "getrandom 0.2.17",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "redox_syscall"
760
+ version = "0.5.18"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
763
+ dependencies = [
764
+ "bitflags",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "regex"
769
+ version = "1.12.3"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
772
+ dependencies = [
773
+ "aho-corasick",
774
+ "memchr",
775
+ "regex-automata",
776
+ "regex-syntax",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "regex-automata"
781
+ version = "0.4.14"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
784
+ dependencies = [
785
+ "aho-corasick",
786
+ "memchr",
787
+ "regex-syntax",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "regex-syntax"
792
+ version = "0.8.9"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
795
+
796
+ [[package]]
797
+ name = "rhexdump"
798
+ version = "0.2.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "9a92cbe1a3dd221e3777fef339115d3b85e17a538668e03a0f3ae9c6a98351c7"
801
+
802
+ [[package]]
803
+ name = "ring"
804
+ version = "0.17.14"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
807
+ dependencies = [
808
+ "cc",
809
+ "cfg-if",
810
+ "getrandom 0.2.17",
811
+ "libc",
812
+ "untrusted",
813
+ "windows-sys 0.52.0",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "ripemd"
818
+ version = "0.1.3"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
821
+ dependencies = [
822
+ "digest 0.10.7",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "rustls"
827
+ version = "0.23.36"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
830
+ dependencies = [
831
+ "aws-lc-rs",
832
+ "log",
833
+ "once_cell",
834
+ "rustls-pki-types",
835
+ "rustls-webpki",
836
+ "subtle",
837
+ "zeroize",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "rustls-pki-types"
842
+ version = "1.14.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
845
+ dependencies = [
846
+ "zeroize",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "rustls-webpki"
851
+ version = "0.103.9"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
854
+ dependencies = [
855
+ "aws-lc-rs",
856
+ "ring",
857
+ "rustls-pki-types",
858
+ "untrusted",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "scopeguard"
863
+ version = "1.2.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
866
+
867
+ [[package]]
868
+ name = "serde"
869
+ version = "1.0.228"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
872
+ dependencies = [
873
+ "serde_core",
874
+ "serde_derive",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "serde_core"
879
+ version = "1.0.228"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
882
+ dependencies = [
883
+ "serde_derive",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "serde_derive"
888
+ version = "1.0.228"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
891
+ dependencies = [
892
+ "proc-macro2",
893
+ "quote",
894
+ "syn",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "sha-1"
899
+ version = "0.9.8"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
902
+ dependencies = [
903
+ "block-buffer 0.9.0",
904
+ "cfg-if",
905
+ "cpufeatures",
906
+ "digest 0.9.0",
907
+ "opaque-debug",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "sha2"
912
+ version = "0.9.9"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
915
+ dependencies = [
916
+ "block-buffer 0.9.0",
917
+ "cfg-if",
918
+ "cpufeatures",
919
+ "digest 0.9.0",
920
+ "opaque-debug",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "shlex"
925
+ version = "1.3.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
928
+
929
+ [[package]]
930
+ name = "signal-hook-registry"
931
+ version = "1.4.8"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
934
+ dependencies = [
935
+ "errno",
936
+ "libc",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "slab"
941
+ version = "0.4.12"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
944
+
945
+ [[package]]
946
+ name = "smallvec"
947
+ version = "1.15.1"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
950
+
951
+ [[package]]
952
+ name = "socket2"
953
+ version = "0.6.2"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
956
+ dependencies = [
957
+ "libc",
958
+ "windows-sys 0.60.2",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "subtle"
963
+ version = "2.6.1"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
966
+
967
+ [[package]]
968
+ name = "syn"
969
+ version = "2.0.114"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
972
+ dependencies = [
973
+ "proc-macro2",
974
+ "quote",
975
+ "unicode-ident",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "target-lexicon"
980
+ version = "0.13.4"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
983
+
984
+ [[package]]
985
+ name = "thiserror"
986
+ version = "1.0.69"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
989
+ dependencies = [
990
+ "thiserror-impl",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "thiserror-impl"
995
+ version = "1.0.69"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
998
+ dependencies = [
999
+ "proc-macro2",
1000
+ "quote",
1001
+ "syn",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "tokio"
1006
+ version = "1.49.0"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1009
+ dependencies = [
1010
+ "bytes",
1011
+ "libc",
1012
+ "mio",
1013
+ "parking_lot",
1014
+ "pin-project-lite",
1015
+ "signal-hook-registry",
1016
+ "socket2",
1017
+ "tokio-macros",
1018
+ "windows-sys 0.61.2",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "tokio-macros"
1023
+ version = "2.6.0"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1026
+ dependencies = [
1027
+ "proc-macro2",
1028
+ "quote",
1029
+ "syn",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "tokio-rustls"
1034
+ version = "0.26.4"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1037
+ dependencies = [
1038
+ "rustls",
1039
+ "tokio",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "typenum"
1044
+ version = "1.19.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1047
+
1048
+ [[package]]
1049
+ name = "unicode-ident"
1050
+ version = "1.0.22"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1053
+
1054
+ [[package]]
1055
+ name = "untrusted"
1056
+ version = "0.9.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1059
+
1060
+ [[package]]
1061
+ name = "version_check"
1062
+ version = "0.9.5"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1065
+
1066
+ [[package]]
1067
+ name = "wasi"
1068
+ version = "0.11.1+wasi-snapshot-preview1"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1071
+
1072
+ [[package]]
1073
+ name = "wasip2"
1074
+ version = "1.0.2+wasi-0.2.9"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1077
+ dependencies = [
1078
+ "wit-bindgen",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "windows-link"
1083
+ version = "0.2.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1086
+
1087
+ [[package]]
1088
+ name = "windows-sys"
1089
+ version = "0.52.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1092
+ dependencies = [
1093
+ "windows-targets 0.52.6",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "windows-sys"
1098
+ version = "0.60.2"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1101
+ dependencies = [
1102
+ "windows-targets 0.53.5",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "windows-sys"
1107
+ version = "0.61.2"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1110
+ dependencies = [
1111
+ "windows-link",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "windows-targets"
1116
+ version = "0.52.6"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1119
+ dependencies = [
1120
+ "windows_aarch64_gnullvm 0.52.6",
1121
+ "windows_aarch64_msvc 0.52.6",
1122
+ "windows_i686_gnu 0.52.6",
1123
+ "windows_i686_gnullvm 0.52.6",
1124
+ "windows_i686_msvc 0.52.6",
1125
+ "windows_x86_64_gnu 0.52.6",
1126
+ "windows_x86_64_gnullvm 0.52.6",
1127
+ "windows_x86_64_msvc 0.52.6",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "windows-targets"
1132
+ version = "0.53.5"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1135
+ dependencies = [
1136
+ "windows-link",
1137
+ "windows_aarch64_gnullvm 0.53.1",
1138
+ "windows_aarch64_msvc 0.53.1",
1139
+ "windows_i686_gnu 0.53.1",
1140
+ "windows_i686_gnullvm 0.53.1",
1141
+ "windows_i686_msvc 0.53.1",
1142
+ "windows_x86_64_gnu 0.53.1",
1143
+ "windows_x86_64_gnullvm 0.53.1",
1144
+ "windows_x86_64_msvc 0.53.1",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "windows_aarch64_gnullvm"
1149
+ version = "0.52.6"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1152
+
1153
+ [[package]]
1154
+ name = "windows_aarch64_gnullvm"
1155
+ version = "0.53.1"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1158
+
1159
+ [[package]]
1160
+ name = "windows_aarch64_msvc"
1161
+ version = "0.52.6"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1164
+
1165
+ [[package]]
1166
+ name = "windows_aarch64_msvc"
1167
+ version = "0.53.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1170
+
1171
+ [[package]]
1172
+ name = "windows_i686_gnu"
1173
+ version = "0.52.6"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1176
+
1177
+ [[package]]
1178
+ name = "windows_i686_gnu"
1179
+ version = "0.53.1"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1182
+
1183
+ [[package]]
1184
+ name = "windows_i686_gnullvm"
1185
+ version = "0.52.6"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1188
+
1189
+ [[package]]
1190
+ name = "windows_i686_gnullvm"
1191
+ version = "0.53.1"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1194
+
1195
+ [[package]]
1196
+ name = "windows_i686_msvc"
1197
+ version = "0.52.6"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1200
+
1201
+ [[package]]
1202
+ name = "windows_i686_msvc"
1203
+ version = "0.53.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1206
+
1207
+ [[package]]
1208
+ name = "windows_x86_64_gnu"
1209
+ version = "0.52.6"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1212
+
1213
+ [[package]]
1214
+ name = "windows_x86_64_gnu"
1215
+ version = "0.53.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1218
+
1219
+ [[package]]
1220
+ name = "windows_x86_64_gnullvm"
1221
+ version = "0.52.6"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1224
+
1225
+ [[package]]
1226
+ name = "windows_x86_64_gnullvm"
1227
+ version = "0.53.1"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1230
+
1231
+ [[package]]
1232
+ name = "windows_x86_64_msvc"
1233
+ version = "0.52.6"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1236
+
1237
+ [[package]]
1238
+ name = "windows_x86_64_msvc"
1239
+ version = "0.53.1"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1242
+
1243
+ [[package]]
1244
+ name = "wit-bindgen"
1245
+ version = "0.51.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1248
+
1249
+ [[package]]
1250
+ name = "zerocopy"
1251
+ version = "0.8.39"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
1254
+ dependencies = [
1255
+ "zerocopy-derive",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "zerocopy-derive"
1260
+ version = "0.8.39"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
1263
+ dependencies = [
1264
+ "proc-macro2",
1265
+ "quote",
1266
+ "syn",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "zeroize"
1271
+ version = "1.8.2"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"