band-sdk-core 0.2.1.dev1__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 (31) hide show
  1. band_sdk_core-0.2.1.dev1/Cargo.lock +936 -0
  2. band_sdk_core-0.2.1.dev1/Cargo.toml +23 -0
  3. band_sdk_core-0.2.1.dev1/PKG-INFO +5 -0
  4. band_sdk_core-0.2.1.dev1/bindings/python/Cargo.toml +26 -0
  5. band_sdk_core-0.2.1.dev1/bindings/python/_band_sdk_core.pyi +90 -0
  6. band_sdk_core-0.2.1.dev1/bindings/python/src/claim_registry.rs +205 -0
  7. band_sdk_core-0.2.1.dev1/bindings/python/src/lib.rs +31 -0
  8. band_sdk_core-0.2.1.dev1/bindings/python/src/participant_tracker.rs +114 -0
  9. band_sdk_core-0.2.1.dev1/bindings/python/src/retry_tracker.rs +48 -0
  10. band_sdk_core-0.2.1.dev1/bindings/python/src/tracing_init.rs +59 -0
  11. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_claim_registry.py +148 -0
  12. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_panic_boundary.py +34 -0
  13. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_participant_tracker.py +57 -0
  14. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_retry_tracker.py +44 -0
  15. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_smoke.py +7 -0
  16. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_stub_surface.py +166 -0
  17. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_tracing_propagation.py +96 -0
  18. band_sdk_core-0.2.1.dev1/bindings/python/tests/test_wheel_ships_typing.py +28 -0
  19. band_sdk_core-0.2.1.dev1/crates/core-runtime/Cargo.toml +18 -0
  20. band_sdk_core-0.2.1.dev1/crates/core-runtime/src/claims.rs +247 -0
  21. band_sdk_core-0.2.1.dev1/crates/core-runtime/src/lib.rs +12 -0
  22. band_sdk_core-0.2.1.dev1/crates/core-runtime/src/participant_tracker.rs +124 -0
  23. band_sdk_core-0.2.1.dev1/crates/core-runtime/src/retry_tracker.rs +149 -0
  24. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/.gitkeep +0 -0
  25. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/claims.rs +286 -0
  26. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/common/mod.rs +116 -0
  27. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/observability.rs +121 -0
  28. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/participant_tracker.rs +139 -0
  29. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/retry_tracker.proptest-regressions +7 -0
  30. band_sdk_core-0.2.1.dev1/crates/core-runtime/tests/retry_tracker.rs +266 -0
  31. band_sdk_core-0.2.1.dev1/pyproject.toml +13 -0
@@ -0,0 +1,936 @@
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 = "autocfg"
16
+ version = "1.5.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
19
+
20
+ [[package]]
21
+ name = "band-sdk-core-node"
22
+ version = "0.2.0"
23
+ dependencies = [
24
+ "core-runtime",
25
+ "napi",
26
+ "napi-build",
27
+ "napi-derive",
28
+ "tracing",
29
+ "tracing-subscriber",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "band-sdk-core-py"
34
+ version = "0.2.0"
35
+ dependencies = [
36
+ "core-runtime",
37
+ "pyo3",
38
+ "tracing",
39
+ "tracing-subscriber",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "bit-set"
44
+ version = "0.8.0"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
47
+ dependencies = [
48
+ "bit-vec",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "bit-vec"
53
+ version = "0.8.0"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
56
+
57
+ [[package]]
58
+ name = "bitflags"
59
+ version = "2.13.1"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
62
+
63
+ [[package]]
64
+ name = "cfg-if"
65
+ version = "1.0.4"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
68
+
69
+ [[package]]
70
+ name = "console"
71
+ version = "0.16.4"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
74
+ dependencies = [
75
+ "encode_unicode",
76
+ "libc",
77
+ "windows-sys",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "convert_case"
82
+ version = "0.11.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
85
+ dependencies = [
86
+ "unicode-segmentation",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "core-protocol"
91
+ version = "0.2.0"
92
+ dependencies = [
93
+ "insta",
94
+ "proptest",
95
+ "serde",
96
+ "serde_json",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "core-runtime"
101
+ version = "0.2.0"
102
+ dependencies = [
103
+ "hashlink",
104
+ "proptest",
105
+ "tracing",
106
+ "tracing-subscriber",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "core-transport"
111
+ version = "0.2.0"
112
+
113
+ [[package]]
114
+ name = "ctor"
115
+ version = "1.0.12"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "2d83cb7e7a873830708d6b02a78cd36a592c6fa14bf267b68725103b85c0d77f"
118
+
119
+ [[package]]
120
+ name = "encode_unicode"
121
+ version = "1.0.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
124
+
125
+ [[package]]
126
+ name = "errno"
127
+ version = "0.3.14"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
130
+ dependencies = [
131
+ "libc",
132
+ "windows-sys",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "fastrand"
137
+ version = "2.5.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
140
+
141
+ [[package]]
142
+ name = "fnv"
143
+ version = "1.0.7"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
146
+
147
+ [[package]]
148
+ name = "foldhash"
149
+ version = "0.2.0"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
152
+
153
+ [[package]]
154
+ name = "futures"
155
+ version = "0.3.33"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
158
+ dependencies = [
159
+ "futures-channel",
160
+ "futures-core",
161
+ "futures-executor",
162
+ "futures-io",
163
+ "futures-sink",
164
+ "futures-task",
165
+ "futures-util",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "futures-channel"
170
+ version = "0.3.33"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
173
+ dependencies = [
174
+ "futures-core",
175
+ "futures-sink",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "futures-core"
180
+ version = "0.3.33"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
183
+
184
+ [[package]]
185
+ name = "futures-executor"
186
+ version = "0.3.33"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
189
+ dependencies = [
190
+ "futures-core",
191
+ "futures-task",
192
+ "futures-util",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "futures-io"
197
+ version = "0.3.33"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
200
+
201
+ [[package]]
202
+ name = "futures-macro"
203
+ version = "0.3.33"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
206
+ dependencies = [
207
+ "proc-macro2",
208
+ "quote",
209
+ "syn 2.0.119",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "futures-sink"
214
+ version = "0.3.33"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
217
+
218
+ [[package]]
219
+ name = "futures-task"
220
+ version = "0.3.33"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
223
+
224
+ [[package]]
225
+ name = "futures-util"
226
+ version = "0.3.33"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
229
+ dependencies = [
230
+ "futures-channel",
231
+ "futures-core",
232
+ "futures-io",
233
+ "futures-macro",
234
+ "futures-sink",
235
+ "futures-task",
236
+ "memchr",
237
+ "pin-project-lite",
238
+ "slab",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "getrandom"
243
+ version = "0.3.4"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
246
+ dependencies = [
247
+ "cfg-if",
248
+ "libc",
249
+ "r-efi 5.3.0",
250
+ "wasip2",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "getrandom"
255
+ version = "0.4.3"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
258
+ dependencies = [
259
+ "cfg-if",
260
+ "libc",
261
+ "r-efi 6.0.0",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "hashbrown"
266
+ version = "0.17.1"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
269
+ dependencies = [
270
+ "foldhash",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "hashlink"
275
+ version = "0.12.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
278
+ dependencies = [
279
+ "hashbrown",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "heck"
284
+ version = "0.5.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
287
+
288
+ [[package]]
289
+ name = "insta"
290
+ version = "1.48.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "86f0f8fee8c926415c58d6ae43a08523a26faccb2323f5e6b644fe7dd4ef6b82"
293
+ dependencies = [
294
+ "console",
295
+ "once_cell",
296
+ "serde",
297
+ "similar",
298
+ "tempfile",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "itoa"
303
+ version = "1.0.18"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
306
+
307
+ [[package]]
308
+ name = "lazy_static"
309
+ version = "1.5.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
312
+
313
+ [[package]]
314
+ name = "libc"
315
+ version = "0.2.189"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
318
+
319
+ [[package]]
320
+ name = "libloading"
321
+ version = "0.9.0"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
324
+ dependencies = [
325
+ "cfg-if",
326
+ "windows-link",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "linux-raw-sys"
331
+ version = "0.12.1"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
334
+
335
+ [[package]]
336
+ name = "log"
337
+ version = "0.4.33"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
340
+
341
+ [[package]]
342
+ name = "matchers"
343
+ version = "0.2.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
346
+ dependencies = [
347
+ "regex-automata",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "memchr"
352
+ version = "2.8.3"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
355
+
356
+ [[package]]
357
+ name = "napi"
358
+ version = "3.12.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "6f71d6bc097c4a6eb853c3f24991ab8c9f50f57d1f719e305175541482217e36"
361
+ dependencies = [
362
+ "bitflags",
363
+ "ctor",
364
+ "futures",
365
+ "napi-build",
366
+ "napi-sys",
367
+ "nohash-hasher",
368
+ "rustc-hash",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "napi-build"
373
+ version = "2.4.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
376
+
377
+ [[package]]
378
+ name = "napi-derive"
379
+ version = "3.6.2"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "6d9002b2940f0184444754546e0fcd15182f56948e6f381968b019d549387c42"
382
+ dependencies = [
383
+ "convert_case",
384
+ "ctor",
385
+ "napi-derive-backend",
386
+ "proc-macro2",
387
+ "quote",
388
+ "syn 2.0.119",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "napi-derive-backend"
393
+ version = "6.1.1"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "d60b5d773ad46c698c8cc2cd9fde0b283d39cbb7f71c04bee633c7bdba4423bd"
396
+ dependencies = [
397
+ "convert_case",
398
+ "proc-macro2",
399
+ "quote",
400
+ "semver",
401
+ "syn 2.0.119",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "napi-sys"
406
+ version = "3.3.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
409
+ dependencies = [
410
+ "libloading",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "nohash-hasher"
415
+ version = "0.2.0"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
418
+
419
+ [[package]]
420
+ name = "nu-ansi-term"
421
+ version = "0.50.3"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
424
+ dependencies = [
425
+ "windows-sys",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "num-traits"
430
+ version = "0.2.19"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
433
+ dependencies = [
434
+ "autocfg",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "once_cell"
439
+ version = "1.21.4"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
442
+
443
+ [[package]]
444
+ name = "pin-project-lite"
445
+ version = "0.2.17"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
448
+
449
+ [[package]]
450
+ name = "portable-atomic"
451
+ version = "1.14.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
454
+
455
+ [[package]]
456
+ name = "ppv-lite86"
457
+ version = "0.2.21"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
460
+ dependencies = [
461
+ "zerocopy",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "proc-macro2"
466
+ version = "1.0.107"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
469
+ dependencies = [
470
+ "unicode-ident",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "proptest"
475
+ version = "1.11.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
478
+ dependencies = [
479
+ "bit-set",
480
+ "bit-vec",
481
+ "bitflags",
482
+ "num-traits",
483
+ "rand",
484
+ "rand_chacha",
485
+ "rand_xorshift",
486
+ "regex-syntax",
487
+ "rusty-fork",
488
+ "tempfile",
489
+ "unarray",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "pyo3"
494
+ version = "0.29.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "fc153f5fd745cc038b5eed86622125969f8a39834a57bc96beaaf2512b1da729"
497
+ dependencies = [
498
+ "libc",
499
+ "once_cell",
500
+ "portable-atomic",
501
+ "pyo3-build-config",
502
+ "pyo3-ffi",
503
+ "pyo3-macros",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "pyo3-build-config"
508
+ version = "0.29.1"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "bb77d9aa6d647507b55c69ee714d266d84c526c78ff0bc6dd8757f58591e64d1"
511
+ dependencies = [
512
+ "target-lexicon",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "pyo3-ffi"
517
+ version = "0.29.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "3160087aa5733bce7d9a729f8c55f85a2a53b74742a09613178eeebff0722253"
520
+ dependencies = [
521
+ "libc",
522
+ "pyo3-build-config",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "pyo3-macros"
527
+ version = "0.29.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "91f9d455db760a9a0b0ddeaac25f1390b8a36ba73dfbda9f127cac6fc340d4d5"
530
+ dependencies = [
531
+ "proc-macro2",
532
+ "pyo3-macros-backend",
533
+ "quote",
534
+ "syn 2.0.119",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "pyo3-macros-backend"
539
+ version = "0.29.1"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "e343bcec300ff262f5806a33a4e51b6d097a8a46435f512fcb83e95592581625"
542
+ dependencies = [
543
+ "heck",
544
+ "proc-macro2",
545
+ "quote",
546
+ "syn 2.0.119",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "quick-error"
551
+ version = "1.2.3"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
554
+
555
+ [[package]]
556
+ name = "quote"
557
+ version = "1.0.47"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
560
+ dependencies = [
561
+ "proc-macro2",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "r-efi"
566
+ version = "5.3.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
569
+
570
+ [[package]]
571
+ name = "r-efi"
572
+ version = "6.0.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
575
+
576
+ [[package]]
577
+ name = "rand"
578
+ version = "0.9.5"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
581
+ dependencies = [
582
+ "rand_chacha",
583
+ "rand_core",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "rand_chacha"
588
+ version = "0.9.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
591
+ dependencies = [
592
+ "ppv-lite86",
593
+ "rand_core",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "rand_core"
598
+ version = "0.9.5"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
601
+ dependencies = [
602
+ "getrandom 0.3.4",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "rand_xorshift"
607
+ version = "0.4.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
610
+ dependencies = [
611
+ "rand_core",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "regex-automata"
616
+ version = "0.4.18"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
619
+ dependencies = [
620
+ "aho-corasick",
621
+ "memchr",
622
+ "regex-syntax",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "regex-syntax"
627
+ version = "0.8.11"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
630
+
631
+ [[package]]
632
+ name = "rustc-hash"
633
+ version = "2.1.3"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
636
+
637
+ [[package]]
638
+ name = "rustix"
639
+ version = "1.1.4"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
642
+ dependencies = [
643
+ "bitflags",
644
+ "errno",
645
+ "libc",
646
+ "linux-raw-sys",
647
+ "windows-sys",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "rusty-fork"
652
+ version = "0.3.1"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
655
+ dependencies = [
656
+ "fnv",
657
+ "quick-error",
658
+ "tempfile",
659
+ "wait-timeout",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "semver"
664
+ version = "1.0.28"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
667
+
668
+ [[package]]
669
+ name = "serde"
670
+ version = "1.0.229"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
673
+ dependencies = [
674
+ "serde_core",
675
+ "serde_derive",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "serde_core"
680
+ version = "1.0.229"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
683
+ dependencies = [
684
+ "serde_derive",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "serde_derive"
689
+ version = "1.0.229"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
692
+ dependencies = [
693
+ "proc-macro2",
694
+ "quote",
695
+ "syn 3.0.3",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "serde_json"
700
+ version = "1.0.151"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
703
+ dependencies = [
704
+ "itoa",
705
+ "memchr",
706
+ "serde",
707
+ "serde_core",
708
+ "zmij",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "sharded-slab"
713
+ version = "0.1.7"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
716
+ dependencies = [
717
+ "lazy_static",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "similar"
722
+ version = "2.7.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
725
+
726
+ [[package]]
727
+ name = "slab"
728
+ version = "0.4.12"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
731
+
732
+ [[package]]
733
+ name = "smallvec"
734
+ version = "1.15.2"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
737
+
738
+ [[package]]
739
+ name = "syn"
740
+ version = "2.0.119"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
743
+ dependencies = [
744
+ "proc-macro2",
745
+ "quote",
746
+ "unicode-ident",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "syn"
751
+ version = "3.0.3"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
754
+ dependencies = [
755
+ "proc-macro2",
756
+ "quote",
757
+ "unicode-ident",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "target-lexicon"
762
+ version = "0.13.5"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
765
+
766
+ [[package]]
767
+ name = "tempfile"
768
+ version = "3.27.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
771
+ dependencies = [
772
+ "fastrand",
773
+ "getrandom 0.4.3",
774
+ "once_cell",
775
+ "rustix",
776
+ "windows-sys",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "thread_local"
781
+ version = "1.1.10"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
784
+ dependencies = [
785
+ "cfg-if",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "tracing"
790
+ version = "0.1.44"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
793
+ dependencies = [
794
+ "pin-project-lite",
795
+ "tracing-attributes",
796
+ "tracing-core",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "tracing-attributes"
801
+ version = "0.1.31"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
804
+ dependencies = [
805
+ "proc-macro2",
806
+ "quote",
807
+ "syn 2.0.119",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "tracing-core"
812
+ version = "0.1.36"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
815
+ dependencies = [
816
+ "once_cell",
817
+ "valuable",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "tracing-log"
822
+ version = "0.2.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
825
+ dependencies = [
826
+ "log",
827
+ "once_cell",
828
+ "tracing-core",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "tracing-subscriber"
833
+ version = "0.3.23"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
836
+ dependencies = [
837
+ "matchers",
838
+ "nu-ansi-term",
839
+ "once_cell",
840
+ "regex-automata",
841
+ "sharded-slab",
842
+ "smallvec",
843
+ "thread_local",
844
+ "tracing",
845
+ "tracing-core",
846
+ "tracing-log",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "unarray"
851
+ version = "0.1.4"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
854
+
855
+ [[package]]
856
+ name = "unicode-ident"
857
+ version = "1.0.24"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
860
+
861
+ [[package]]
862
+ name = "unicode-segmentation"
863
+ version = "1.13.3"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
866
+
867
+ [[package]]
868
+ name = "valuable"
869
+ version = "0.1.1"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
872
+
873
+ [[package]]
874
+ name = "wait-timeout"
875
+ version = "0.2.1"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
878
+ dependencies = [
879
+ "libc",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "wasip2"
884
+ version = "1.0.4+wasi-0.2.12"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
887
+ dependencies = [
888
+ "wit-bindgen",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "windows-link"
893
+ version = "0.2.1"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
896
+
897
+ [[package]]
898
+ name = "windows-sys"
899
+ version = "0.61.2"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
902
+ dependencies = [
903
+ "windows-link",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "wit-bindgen"
908
+ version = "0.57.1"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
911
+
912
+ [[package]]
913
+ name = "zerocopy"
914
+ version = "0.8.55"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
917
+ dependencies = [
918
+ "zerocopy-derive",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "zerocopy-derive"
923
+ version = "0.8.55"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
926
+ dependencies = [
927
+ "proc-macro2",
928
+ "quote",
929
+ "syn 2.0.119",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "zmij"
934
+ version = "1.0.23"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"