subetha-ipc 0.3.2__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 (487) hide show
  1. subetha_ipc-0.3.2/Cargo.lock +2889 -0
  2. subetha_ipc-0.3.2/Cargo.toml +64 -0
  3. subetha_ipc-0.3.2/PKG-INFO +210 -0
  4. subetha_ipc-0.3.2/README.md +193 -0
  5. subetha_ipc-0.3.2/crates/subetha-core/Cargo.toml +17 -0
  6. subetha_ipc-0.3.2/crates/subetha-core/LICENSE-MIT +21 -0
  7. subetha_ipc-0.3.2/crates/subetha-core/README.md +105 -0
  8. subetha_ipc-0.3.2/crates/subetha-core/examples/obs_ring_memory.rs +62 -0
  9. subetha_ipc-0.3.2/crates/subetha-core/src/axis_signature.rs +357 -0
  10. subetha_ipc-0.3.2/crates/subetha-core/src/cpuid.rs +129 -0
  11. subetha_ipc-0.3.2/crates/subetha-core/src/handshake.rs +200 -0
  12. subetha_ipc-0.3.2/crates/subetha-core/src/lib.rs +36 -0
  13. subetha_ipc-0.3.2/crates/subetha-core/src/marshal.rs +295 -0
  14. subetha_ipc-0.3.2/crates/subetha-core/src/migration.rs +90 -0
  15. subetha_ipc-0.3.2/crates/subetha-core/src/observation.rs +421 -0
  16. subetha_ipc-0.3.2/crates/subetha-cxc/Cargo.toml +668 -0
  17. subetha_ipc-0.3.2/crates/subetha-cxc/LICENSE-MIT +21 -0
  18. subetha_ipc-0.3.2/crates/subetha-cxc/README.md +192 -0
  19. subetha_ipc-0.3.2/crates/subetha-cxc/benches/adaptive_ipc_overhead.rs +180 -0
  20. subetha_ipc-0.3.2/crates/subetha-cxc/benches/adaptive_khl_batch.rs +102 -0
  21. subetha_ipc-0.3.2/crates/subetha-cxc/benches/adaptive_ring_overhead.rs +509 -0
  22. subetha_ipc-0.3.2/crates/subetha-cxc/benches/adaptive_send_specialized_ab.rs +170 -0
  23. subetha_ipc-0.3.2/crates/subetha-cxc/benches/async_fanout.rs +208 -0
  24. subetha_ipc-0.3.2/crates/subetha-cxc/benches/async_overhead.rs +112 -0
  25. subetha_ipc-0.3.2/crates/subetha-cxc/benches/bloom_filter_ab.rs +107 -0
  26. subetha_ipc-0.3.2/crates/subetha-cxc/benches/capacity_adaptive_ring.rs +256 -0
  27. subetha_ipc-0.3.2/crates/subetha-cxc/benches/capacity_broadcast_ring.rs +150 -0
  28. subetha_ipc-0.3.2/crates/subetha-cxc/benches/capacity_pubsub_ring.rs +162 -0
  29. subetha_ipc-0.3.2/crates/subetha-cxc/benches/concurrent_methods.rs +544 -0
  30. subetha_ipc-0.3.2/crates/subetha-cxc/benches/epoch_barrier.rs +202 -0
  31. subetha_ipc-0.3.2/crates/subetha-cxc/benches/event_state_log.rs +156 -0
  32. subetha_ipc-0.3.2/crates/subetha-cxc/benches/failover.rs +183 -0
  33. subetha_ipc-0.3.2/crates/subetha-cxc/benches/fec_gf_simd.rs +113 -0
  34. subetha_ipc-0.3.2/crates/subetha-cxc/benches/generator_recovery.rs +213 -0
  35. subetha_ipc-0.3.2/crates/subetha-cxc/benches/heartbeat.rs +230 -0
  36. subetha_ipc-0.3.2/crates/subetha-cxc/benches/holder_table.rs +97 -0
  37. subetha_ipc-0.3.2/crates/subetha-cxc/benches/k_tower_cascade.rs +274 -0
  38. subetha_ipc-0.3.2/crates/subetha-cxc/benches/laned_versioned_map.rs +304 -0
  39. subetha_ipc-0.3.2/crates/subetha-cxc/benches/lazy_config.rs +98 -0
  40. subetha_ipc-0.3.2/crates/subetha-cxc/benches/multi_thief.rs +268 -0
  41. subetha_ipc-0.3.2/crates/subetha-cxc/benches/owner_lease.rs +209 -0
  42. subetha_ipc-0.3.2/crates/subetha-cxc/benches/pass_registry.rs +157 -0
  43. subetha_ipc-0.3.2/crates/subetha-cxc/benches/priority_fanout.rs +185 -0
  44. subetha_ipc-0.3.2/crates/subetha-cxc/benches/progress_task.rs +205 -0
  45. subetha_ipc-0.3.2/crates/subetha-cxc/benches/residue_vs_rlc.rs +144 -0
  46. subetha_ipc-0.3.2/crates/subetha-cxc/benches/rs_ingest_overhead.rs +137 -0
  47. subetha_ipc-0.3.2/crates/subetha-cxc/benches/scheduler.rs +143 -0
  48. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_arc.rs +107 -0
  49. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_async_pointer.rs +223 -0
  50. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_atomic.rs +104 -0
  51. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_bit_vec.rs +183 -0
  52. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_blocked_bloom_filter.rs +152 -0
  53. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_bloom_filter.rs +208 -0
  54. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_broadcast_ring.rs +192 -0
  55. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_btree_map.rs +135 -0
  56. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_cell.rs +89 -0
  57. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_count_min_sketch.rs +77 -0
  58. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_deque.rs +481 -0
  59. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_deque_khpd.rs +236 -0
  60. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_deque_loh.rs +543 -0
  61. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_deque_urd.rs +285 -0
  62. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_epochs.rs +167 -0
  63. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_fence_clock.rs +154 -0
  64. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_graph.rs +126 -0
  65. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_handle_table.rs +106 -0
  66. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_hash_map.rs +178 -0
  67. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_hash_map_compact.rs +147 -0
  68. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_histogram.rs +126 -0
  69. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_hyper_log_log.rs +98 -0
  70. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_leader_election.rs +75 -0
  71. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_lift_trio.rs +132 -0
  72. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_linked_list.rs +200 -0
  73. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_lru_cache.rs +243 -0
  74. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_nan_tagged_value.rs +143 -0
  75. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_nan_value.rs +151 -0
  76. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_once_cell.rs +68 -0
  77. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_rate_limiter.rs +137 -0
  78. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_region.rs +159 -0
  79. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_reservoir_sampler.rs +117 -0
  80. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_ring.rs +309 -0
  81. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_rw_lock.rs +128 -0
  82. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_semaphore.rs +153 -0
  83. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_slab.rs +142 -0
  84. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_string_arena.rs +128 -0
  85. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_time_point.rs +161 -0
  86. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_topology_map.rs +159 -0
  87. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_treiber_stack.rs +64 -0
  88. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_umbra_pointer.rs +143 -0
  89. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_universal.rs +115 -0
  90. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_vec.rs +119 -0
  91. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_versioned_chain.rs +97 -0
  92. subetha_ipc-0.3.2/crates/subetha-cxc/benches/shared_versioned_slab.rs +158 -0
  93. subetha_ipc-0.3.2/crates/subetha-cxc/benches/tagged_offset_ptr.rs +139 -0
  94. subetha_ipc-0.3.2/crates/subetha-cxc/benches/tap_search.rs +469 -0
  95. subetha_ipc-0.3.2/crates/subetha-cxc/benches/transport_indirection.rs +97 -0
  96. subetha_ipc-0.3.2/crates/subetha-cxc/benches/umbra_port_ab.rs +163 -0
  97. subetha_ipc-0.3.2/crates/subetha-cxc/benches/versioned_btree_map.rs +146 -0
  98. subetha_ipc-0.3.2/crates/subetha-cxc/docs/CROSS_PLATFORM_BENCHMARKS.md +160 -0
  99. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/EPOCH_BARRIER.md +371 -0
  100. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/EVENT_STATE_LOG.md +322 -0
  101. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/FAILOVER.md +332 -0
  102. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/FRAME_RING.md +119 -0
  103. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/HEARTBEAT.md +362 -0
  104. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/HOLDER_TABLE.md +172 -0
  105. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/K_TOWER_CASCADE.md +394 -0
  106. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/LANED_VERSIONED_MAP.md +301 -0
  107. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/LAZY_CONFIG.md +329 -0
  108. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/OFFSET_PTR.md +548 -0
  109. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/OWNER_LEASE.md +402 -0
  110. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/PASS_REGISTRY.md +344 -0
  111. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/PRIORITY_FANOUT.md +371 -0
  112. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/PROGRESS_TASK.md +374 -0
  113. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SCHEDULER.md +404 -0
  114. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_ARC.md +203 -0
  115. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_ARRAY.md +149 -0
  116. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_ASYNC_POINTER.md +445 -0
  117. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_ATOMIC.md +380 -0
  118. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_BIT_VEC.md +295 -0
  119. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_BLOCKED_BLOOM_FILTER.md +209 -0
  120. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_BLOOM_FILTER.md +360 -0
  121. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_BROADCAST_RING.md +352 -0
  122. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_BTREE_MAP.md +239 -0
  123. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_CELL.md +374 -0
  124. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_COUNT_MIN_SKETCH.md +278 -0
  125. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_DEQUE.md +83 -0
  126. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_EPOCHS.md +244 -0
  127. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_FENCE_CLOCK.md +297 -0
  128. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_GRAPH.md +289 -0
  129. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_HANDLE_TABLE.md +246 -0
  130. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_HASH_MAP.md +269 -0
  131. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_HISTOGRAM.md +221 -0
  132. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_HYPER_LOG_LOG.md +239 -0
  133. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_LEADER_ELECTION.md +343 -0
  134. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_LINKED_LIST.md +241 -0
  135. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_LRU_CACHE.md +225 -0
  136. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_NAN_TAGGED_VALUE.md +430 -0
  137. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_NAN_VALUE.md +410 -0
  138. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_ONCE_CELL.md +274 -0
  139. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RATE_LIMITER.md +173 -0
  140. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_REGION.md +186 -0
  141. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RESERVOIR_SAMPLER.md +169 -0
  142. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RING.md +482 -0
  143. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RING_ADAPTIVE.md +485 -0
  144. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RING_MPMC.md +308 -0
  145. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RING_MPSC.md +341 -0
  146. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RING_SPSC.md +298 -0
  147. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_RW_LOCK.md +265 -0
  148. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_SEMAPHORE.md +167 -0
  149. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_SLAB.md +179 -0
  150. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_STRING_ARENA.md +167 -0
  151. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_TIME_POINT.md +177 -0
  152. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_TOPOLOGY_MAP.md +166 -0
  153. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_TREIBER_STACK.md +163 -0
  154. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_UMBRA_POINTER.md +500 -0
  155. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_UNIVERSAL.md +169 -0
  156. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_VEC.md +158 -0
  157. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_VERSIONED_CHAIN.md +180 -0
  158. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/SHARED_VERSIONED_SLAB.md +235 -0
  159. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/TAGGED_OFFSET_PTR.md +512 -0
  160. subetha_ipc-0.3.2/crates/subetha-cxc/docs/pointers/VERSIONED_BTREE_MAP.md +226 -0
  161. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_growth_xproc.rs +322 -0
  162. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_ipc_demo.rs +203 -0
  163. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_ipc_pinned.rs +260 -0
  164. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_khl_e2e.rs +41 -0
  165. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_passthrough.rs +280 -0
  166. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_ring_frames.rs +56 -0
  167. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_ring_hugepage.rs +124 -0
  168. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_ring_morph.rs +295 -0
  169. subetha_ipc-0.3.2/crates/subetha-cxc/examples/adaptive_ring_sidecar.rs +259 -0
  170. subetha_ipc-0.3.2/crates/subetha-cxc/examples/async_ring_demo.rs +164 -0
  171. subetha_ipc-0.3.2/crates/subetha-cxc/examples/async_subscriber_scale.rs +113 -0
  172. subetha_ipc-0.3.2/crates/subetha-cxc/examples/auto_ipc_demo.rs +178 -0
  173. subetha_ipc-0.3.2/crates/subetha-cxc/examples/auto_order_xproc.rs +228 -0
  174. subetha_ipc-0.3.2/crates/subetha-cxc/examples/bench_throughput.rs +1555 -0
  175. subetha_ipc-0.3.2/crates/subetha-cxc/examples/blocked_bloom_compare.rs +113 -0
  176. subetha_ipc-0.3.2/crates/subetha-cxc/examples/blocking_locks_demo.rs +156 -0
  177. subetha_ipc-0.3.2/crates/subetha-cxc/examples/blocking_ring_demo.rs +286 -0
  178. subetha_ipc-0.3.2/crates/subetha-cxc/examples/blocking_tcp_bridge_e2e.rs +125 -0
  179. subetha_ipc-0.3.2/crates/subetha-cxc/examples/bridge_lan.rs +2101 -0
  180. subetha_ipc-0.3.2/crates/subetha-cxc/examples/cacheline_probe.rs +136 -0
  181. subetha_ipc-0.3.2/crates/subetha-cxc/examples/cap_morph_sidecar_e2e.rs +171 -0
  182. subetha_ipc-0.3.2/crates/subetha-cxc/examples/capacity_broadcast_morph_matrix.rs +215 -0
  183. subetha_ipc-0.3.2/crates/subetha-cxc/examples/capacity_morph_e2e.rs +153 -0
  184. subetha_ipc-0.3.2/crates/subetha-cxc/examples/capacity_morph_matrix.rs +338 -0
  185. subetha_ipc-0.3.2/crates/subetha-cxc/examples/capacity_morph_xproc.rs +178 -0
  186. subetha_ipc-0.3.2/crates/subetha-cxc/examples/capacity_morph_xproc_producer.rs +95 -0
  187. subetha_ipc-0.3.2/crates/subetha-cxc/examples/capacity_pubsub_morph_matrix.rs +239 -0
  188. subetha_ipc-0.3.2/crates/subetha-cxc/examples/channel_async.rs +182 -0
  189. subetha_ipc-0.3.2/crates/subetha-cxc/examples/competitor_matrix.rs +389 -0
  190. subetha_ipc-0.3.2/crates/subetha-cxc/examples/compound_morph_probe.rs +344 -0
  191. subetha_ipc-0.3.2/crates/subetha-cxc/examples/compressed_sharded_lan.rs +203 -0
  192. subetha_ipc-0.3.2/crates/subetha-cxc/examples/condvar_xproc_notifier.rs +77 -0
  193. subetha_ipc-0.3.2/crates/subetha-cxc/examples/condvar_xproc_waiter.rs +82 -0
  194. subetha_ipc-0.3.2/crates/subetha-cxc/examples/construction_cost.rs +159 -0
  195. subetha_ipc-0.3.2/crates/subetha-cxc/examples/contract_guard_probe.rs +195 -0
  196. subetha_ipc-0.3.2/crates/subetha-cxc/examples/cross_process_compare.rs +819 -0
  197. subetha_ipc-0.3.2/crates/subetha-cxc/examples/cross_process_throughput.rs +332 -0
  198. subetha_ipc-0.3.2/crates/subetha-cxc/examples/dgram_iouring_demo.rs +81 -0
  199. subetha_ipc-0.3.2/crates/subetha-cxc/examples/dgram_wire_gate.rs +64 -0
  200. subetha_ipc-0.3.2/crates/subetha-cxc/examples/direct_file_round_trip.rs +83 -0
  201. subetha_ipc-0.3.2/crates/subetha-cxc/examples/direct_file_xproc.rs +115 -0
  202. subetha_ipc-0.3.2/crates/subetha-cxc/examples/dispatcher_demo.rs +269 -0
  203. subetha_ipc-0.3.2/crates/subetha-cxc/examples/encode_bench.rs +20 -0
  204. subetha_ipc-0.3.2/crates/subetha-cxc/examples/fd_handoff_xproc.rs +239 -0
  205. subetha_ipc-0.3.2/crates/subetha-cxc/examples/fence_clock_xproc.rs +44 -0
  206. subetha_ipc-0.3.2/crates/subetha-cxc/examples/frame_payload_sweep.rs +103 -0
  207. subetha_ipc-0.3.2/crates/subetha-cxc/examples/gso_probe.rs +200 -0
  208. subetha_ipc-0.3.2/crates/subetha-cxc/examples/host_vm_loopback_xproc.rs +117 -0
  209. subetha_ipc-0.3.2/crates/subetha-cxc/examples/kernel_async_ring_demo.rs +136 -0
  210. subetha_ipc-0.3.2/crates/subetha-cxc/examples/large_page_ring.rs +561 -0
  211. subetha_ipc-0.3.2/crates/subetha-cxc/examples/large_pages_demo.rs +203 -0
  212. subetha_ipc-0.3.2/crates/subetha-cxc/examples/link_probe.rs +41 -0
  213. subetha_ipc-0.3.2/crates/subetha-cxc/examples/locale_migrate_sidecar_e2e.rs +175 -0
  214. subetha_ipc-0.3.2/crates/subetha-cxc/examples/locale_morph.rs +206 -0
  215. subetha_ipc-0.3.2/crates/subetha-cxc/examples/locale_shmfs.rs +171 -0
  216. subetha_ipc-0.3.2/crates/subetha-cxc/examples/loss_burst_probe.rs +282 -0
  217. subetha_ipc-0.3.2/crates/subetha-cxc/examples/mmf_dispatcher_demo.rs +296 -0
  218. subetha_ipc-0.3.2/crates/subetha-cxc/examples/monitor_wait_probe.rs +201 -0
  219. subetha_ipc-0.3.2/crates/subetha-cxc/examples/morph_exactly_once_repro.rs +118 -0
  220. subetha_ipc-0.3.2/crates/subetha-cxc/examples/morph_latency_probe.rs +434 -0
  221. subetha_ipc-0.3.2/crates/subetha-cxc/examples/mpmc_contention_bench.rs +161 -0
  222. subetha_ipc-0.3.2/crates/subetha-cxc/examples/mpmc_sharded_compare.rs +198 -0
  223. subetha_ipc-0.3.2/crates/subetha-cxc/examples/mpmc_shootout.rs +464 -0
  224. subetha_ipc-0.3.2/crates/subetha-cxc/examples/net_async_ring.rs +119 -0
  225. subetha_ipc-0.3.2/crates/subetha-cxc/examples/offset_frame_xproc_e2e.rs +166 -0
  226. subetha_ipc-0.3.2/crates/subetha-cxc/examples/one_port_e2e.rs +241 -0
  227. subetha_ipc-0.3.2/crates/subetha-cxc/examples/one_port_tls_e2e.rs +219 -0
  228. subetha_ipc-0.3.2/crates/subetha-cxc/examples/open_shmfs_attach_e2e.rs +118 -0
  229. subetha_ipc-0.3.2/crates/subetha-cxc/examples/ordering_modes_compare.rs +466 -0
  230. subetha_ipc-0.3.2/crates/subetha-cxc/examples/ordering_race_proof.rs +253 -0
  231. subetha_ipc-0.3.2/crates/subetha-cxc/examples/ordering_reorder_experiment.rs +252 -0
  232. subetha_ipc-0.3.2/crates/subetha-cxc/examples/ordering_xproc_consumer.rs +248 -0
  233. subetha_ipc-0.3.2/crates/subetha-cxc/examples/ordering_xproc_producer.rs +77 -0
  234. subetha_ipc-0.3.2/crates/subetha-cxc/examples/payload_entropy.rs +228 -0
  235. subetha_ipc-0.3.2/crates/subetha-cxc/examples/phase_lock_probe.rs +225 -0
  236. subetha_ipc-0.3.2/crates/subetha-cxc/examples/phase_lock_xproc.rs +260 -0
  237. subetha_ipc-0.3.2/crates/subetha-cxc/examples/policy_thrash_probe.rs +558 -0
  238. subetha_ipc-0.3.2/crates/subetha-cxc/examples/pubsub_fanout.rs +197 -0
  239. subetha_ipc-0.3.2/crates/subetha-cxc/examples/qos_driven_morph.rs +162 -0
  240. subetha_ipc-0.3.2/crates/subetha-cxc/examples/qos_ordering_morph.rs +169 -0
  241. subetha_ipc-0.3.2/crates/subetha-cxc/examples/quic_bridge_e2e.rs +170 -0
  242. subetha_ipc-0.3.2/crates/subetha-cxc/examples/ring_async_executor.rs +100 -0
  243. subetha_ipc-0.3.2/crates/subetha-cxc/examples/rlc_transport_e2e.rs +86 -0
  244. subetha_ipc-0.3.2/crates/subetha-cxc/examples/rlc_wire_e2e.rs +178 -0
  245. subetha_ipc-0.3.2/crates/subetha-cxc/examples/schema_bridge_demo.rs +196 -0
  246. subetha_ipc-0.3.2/crates/subetha-cxc/examples/sparse_mesh_repro.rs +101 -0
  247. subetha_ipc-0.3.2/crates/subetha-cxc/examples/spsc_shootout.rs +381 -0
  248. subetha_ipc-0.3.2/crates/subetha-cxc/examples/stress_test.rs +588 -0
  249. subetha_ipc-0.3.2/crates/subetha-cxc/examples/stuck_slot_recovery.rs +171 -0
  250. subetha_ipc-0.3.2/crates/subetha-cxc/examples/subscriber_restart.rs +173 -0
  251. subetha_ipc-0.3.2/crates/subetha-cxc/examples/tcp_bridge_e2e.rs +138 -0
  252. subetha_ipc-0.3.2/crates/subetha-cxc/examples/tokio_interop.rs +85 -0
  253. subetha_ipc-0.3.2/crates/subetha-cxc/examples/txtime_pace_probe.rs +288 -0
  254. subetha_ipc-0.3.2/crates/subetha-cxc/examples/udp_bridge_e2e.rs +69 -0
  255. subetha_ipc-0.3.2/crates/subetha-cxc/examples/udp_xhost.rs +268 -0
  256. subetha_ipc-0.3.2/crates/subetha-cxc/examples/unified_fastshift_probe.rs +288 -0
  257. subetha_ipc-0.3.2/crates/subetha-cxc/examples/unified_flame.rs +414 -0
  258. subetha_ipc-0.3.2/crates/subetha-cxc/examples/unified_policy_probe.rs +461 -0
  259. subetha_ipc-0.3.2/crates/subetha-cxc/examples/uso_loopback.rs +135 -0
  260. subetha_ipc-0.3.2/crates/subetha-cxc/examples/virtual_endpoint_lifecycle.rs +212 -0
  261. subetha_ipc-0.3.2/crates/subetha-cxc/examples/waker_intra_process_e2e.rs +144 -0
  262. subetha_ipc-0.3.2/crates/subetha-cxc/examples/waker_xproc_consumer.rs +98 -0
  263. subetha_ipc-0.3.2/crates/subetha-cxc/examples/waker_xproc_producer.rs +73 -0
  264. subetha_ipc-0.3.2/crates/subetha-cxc/examples/wire_feth_e2e.rs +97 -0
  265. subetha_ipc-0.3.2/crates/subetha-cxc/examples/wire_netmap_e2e.rs +95 -0
  266. subetha_ipc-0.3.2/crates/subetha-cxc/examples/wire_veth_e2e.rs +270 -0
  267. subetha_ipc-0.3.2/crates/subetha-cxc/examples/wire_xdp_win_e2e.rs +263 -0
  268. subetha_ipc-0.3.2/crates/subetha-cxc/examples/xproc_async_ring.rs +157 -0
  269. subetha_ipc-0.3.2/crates/subetha-cxc/src/adaptive_ipc.rs +1896 -0
  270. subetha_ipc-0.3.2/crates/subetha-cxc/src/adaptive_ring.rs +5738 -0
  271. subetha_ipc-0.3.2/crates/subetha-cxc/src/api.rs +1179 -0
  272. subetha_ipc-0.3.2/crates/subetha-cxc/src/async_ring.rs +344 -0
  273. subetha_ipc-0.3.2/crates/subetha-cxc/src/bbr.rs +497 -0
  274. subetha_ipc-0.3.2/crates/subetha-cxc/src/blocking_mpmc_ring.rs +499 -0
  275. subetha_ipc-0.3.2/crates/subetha-cxc/src/blocking_mpsc_ring.rs +438 -0
  276. subetha_ipc-0.3.2/crates/subetha-cxc/src/blocking_rw_lock.rs +466 -0
  277. subetha_ipc-0.3.2/crates/subetha-cxc/src/blocking_semaphore.rs +332 -0
  278. subetha_ipc-0.3.2/crates/subetha-cxc/src/blocking_spsc_ring.rs +785 -0
  279. subetha_ipc-0.3.2/crates/subetha-cxc/src/blocking_tcp_bridge.rs +259 -0
  280. subetha_ipc-0.3.2/crates/subetha-cxc/src/burst_model_sensor.rs +209 -0
  281. subetha_ipc-0.3.2/crates/subetha-cxc/src/cache_ops.rs +137 -0
  282. subetha_ipc-0.3.2/crates/subetha-cxc/src/cached_clock.rs +132 -0
  283. subetha_ipc-0.3.2/crates/subetha-cxc/src/capacity_adaptive_ring.rs +2117 -0
  284. subetha_ipc-0.3.2/crates/subetha-cxc/src/capacity_broadcast_ring.rs +568 -0
  285. subetha_ipc-0.3.2/crates/subetha-cxc/src/capacity_pubsub_ring.rs +499 -0
  286. subetha_ipc-0.3.2/crates/subetha-cxc/src/compressed_udp.rs +534 -0
  287. subetha_ipc-0.3.2/crates/subetha-cxc/src/control_frame.rs +921 -0
  288. subetha_ipc-0.3.2/crates/subetha-cxc/src/control_table.rs +198 -0
  289. subetha_ipc-0.3.2/crates/subetha-cxc/src/cpu_affinity.rs +62 -0
  290. subetha_ipc-0.3.2/crates/subetha-cxc/src/cross_process_notifier.rs +864 -0
  291. subetha_ipc-0.3.2/crates/subetha-cxc/src/cross_process_waker.rs +1211 -0
  292. subetha_ipc-0.3.2/crates/subetha-cxc/src/dgram.rs +1421 -0
  293. subetha_ipc-0.3.2/crates/subetha-cxc/src/dispatch_deque.rs +896 -0
  294. subetha_ipc-0.3.2/crates/subetha-cxc/src/epoch_barrier.rs +560 -0
  295. subetha_ipc-0.3.2/crates/subetha-cxc/src/event_state_log.rs +384 -0
  296. subetha_ipc-0.3.2/crates/subetha-cxc/src/failover.rs +182 -0
  297. subetha_ipc-0.3.2/crates/subetha-cxc/src/fd_handoff.rs +395 -0
  298. subetha_ipc-0.3.2/crates/subetha-cxc/src/fec.rs +1342 -0
  299. subetha_ipc-0.3.2/crates/subetha-cxc/src/forecast_sensor.rs +159 -0
  300. subetha_ipc-0.3.2/crates/subetha-cxc/src/frame_region.rs +556 -0
  301. subetha_ipc-0.3.2/crates/subetha-cxc/src/frame_ring.rs +771 -0
  302. subetha_ipc-0.3.2/crates/subetha-cxc/src/fusion.rs +573 -0
  303. subetha_ipc-0.3.2/crates/subetha-cxc/src/heartbeat.rs +407 -0
  304. subetha_ipc-0.3.2/crates/subetha-cxc/src/holder_table.rs +414 -0
  305. subetha_ipc-0.3.2/crates/subetha-cxc/src/hugepages.rs +391 -0
  306. subetha_ipc-0.3.2/crates/subetha-cxc/src/interleave.rs +313 -0
  307. subetha_ipc-0.3.2/crates/subetha-cxc/src/k_tower_cascade.rs +639 -0
  308. subetha_ipc-0.3.2/crates/subetha-cxc/src/kernel_async_ring.rs +671 -0
  309. subetha_ipc-0.3.2/crates/subetha-cxc/src/laned_versioned_map.rs +755 -0
  310. subetha_ipc-0.3.2/crates/subetha-cxc/src/large_pages.rs +446 -0
  311. subetha_ipc-0.3.2/crates/subetha-cxc/src/lazy_config.rs +260 -0
  312. subetha_ipc-0.3.2/crates/subetha-cxc/src/lib.rs +605 -0
  313. subetha_ipc-0.3.2/crates/subetha-cxc/src/link_sensor.rs +759 -0
  314. subetha_ipc-0.3.2/crates/subetha-cxc/src/locale_adaptive_ring.rs +959 -0
  315. subetha_ipc-0.3.2/crates/subetha-cxc/src/locale_vsock.rs +441 -0
  316. subetha_ipc-0.3.2/crates/subetha-cxc/src/locale_wire.rs +1413 -0
  317. subetha_ipc-0.3.2/crates/subetha-cxc/src/loss_class_sensor.rs +347 -0
  318. subetha_ipc-0.3.2/crates/subetha-cxc/src/message_transport.rs +243 -0
  319. subetha_ipc-0.3.2/crates/subetha-cxc/src/mmf_attach.rs +296 -0
  320. subetha_ipc-0.3.2/crates/subetha-cxc/src/mmf_dispatcher.rs +279 -0
  321. subetha_ipc-0.3.2/crates/subetha-cxc/src/mmf_warm.rs +138 -0
  322. subetha_ipc-0.3.2/crates/subetha-cxc/src/monitor_wait.rs +597 -0
  323. subetha_ipc-0.3.2/crates/subetha-cxc/src/mpmc_ring.rs +446 -0
  324. subetha_ipc-0.3.2/crates/subetha-cxc/src/mpsc_ring.rs +446 -0
  325. subetha_ipc-0.3.2/crates/subetha-cxc/src/net_bridge.rs +330 -0
  326. subetha_ipc-0.3.2/crates/subetha-cxc/src/net_events.rs +852 -0
  327. subetha_ipc-0.3.2/crates/subetha-cxc/src/net_tune.rs +70 -0
  328. subetha_ipc-0.3.2/crates/subetha-cxc/src/ordering.rs +1073 -0
  329. subetha_ipc-0.3.2/crates/subetha-cxc/src/owner_lease.rs +590 -0
  330. subetha_ipc-0.3.2/crates/subetha-cxc/src/pass_registry.rs +178 -0
  331. subetha_ipc-0.3.2/crates/subetha-cxc/src/path_model_sensor.rs +554 -0
  332. subetha_ipc-0.3.2/crates/subetha-cxc/src/path_sensor.rs +147 -0
  333. subetha_ipc-0.3.2/crates/subetha-cxc/src/peer_directory.rs +959 -0
  334. subetha_ipc-0.3.2/crates/subetha-cxc/src/periodicity_sensor.rs +202 -0
  335. subetha_ipc-0.3.2/crates/subetha-cxc/src/phase_estimator.rs +250 -0
  336. subetha_ipc-0.3.2/crates/subetha-cxc/src/policy_gate.rs +270 -0
  337. subetha_ipc-0.3.2/crates/subetha-cxc/src/priority_fanout.rs +587 -0
  338. subetha_ipc-0.3.2/crates/subetha-cxc/src/progress_task.rs +535 -0
  339. subetha_ipc-0.3.2/crates/subetha-cxc/src/protocol_direct_file.rs +587 -0
  340. subetha_ipc-0.3.2/crates/subetha-cxc/src/protocol_pubsub.rs +527 -0
  341. subetha_ipc-0.3.2/crates/subetha-cxc/src/qos_policy.rs +444 -0
  342. subetha_ipc-0.3.2/crates/subetha-cxc/src/quic_bridge.rs +401 -0
  343. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_btree_map.rs +1321 -0
  344. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_cell.rs +271 -0
  345. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_deque.rs +458 -0
  346. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_graph.rs +534 -0
  347. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_hash_map.rs +889 -0
  348. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_k_tower.rs +455 -0
  349. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_laned_versioned_map.rs +626 -0
  350. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_linked_list.rs +530 -0
  351. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_lru_cache.rs +511 -0
  352. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_owner_lease.rs +414 -0
  353. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_region.rs +507 -0
  354. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_slab.rs +416 -0
  355. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_time_point.rs +490 -0
  356. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_treiber_stack.rs +456 -0
  357. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_umbra_pointer.rs +428 -0
  358. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_universal.rs +767 -0
  359. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_vec.rs +554 -0
  360. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_versioned_btree_map.rs +533 -0
  361. subetha_ipc-0.3.2/crates/subetha-cxc/src/raw_versioned_slab.rs +496 -0
  362. subetha_ipc-0.3.2/crates/subetha-cxc/src/reactor.rs +542 -0
  363. subetha_ipc-0.3.2/crates/subetha-cxc/src/region_file.rs +193 -0
  364. subetha_ipc-0.3.2/crates/subetha-cxc/src/reliable_udp.rs +2322 -0
  365. subetha_ipc-0.3.2/crates/subetha-cxc/src/reorder.rs +598 -0
  366. subetha_ipc-0.3.2/crates/subetha-cxc/src/replay_positions.rs +191 -0
  367. subetha_ipc-0.3.2/crates/subetha-cxc/src/residue_fec.rs +572 -0
  368. subetha_ipc-0.3.2/crates/subetha-cxc/src/ring_contract.rs +246 -0
  369. subetha_ipc-0.3.2/crates/subetha-cxc/src/ring_executor.rs +407 -0
  370. subetha_ipc-0.3.2/crates/subetha-cxc/src/ring_holders.rs +426 -0
  371. subetha_ipc-0.3.2/crates/subetha-cxc/src/ring_trace.rs +230 -0
  372. subetha_ipc-0.3.2/crates/subetha-cxc/src/rlc_control.rs +482 -0
  373. subetha_ipc-0.3.2/crates/subetha-cxc/src/rlc_crypto.rs +299 -0
  374. subetha_ipc-0.3.2/crates/subetha-cxc/src/rlc_fec.rs +1123 -0
  375. subetha_ipc-0.3.2/crates/subetha-cxc/src/rtt_shape_sensor.rs +147 -0
  376. subetha_ipc-0.3.2/crates/subetha-cxc/src/salvage.rs +200 -0
  377. subetha_ipc-0.3.2/crates/subetha-cxc/src/scheduler.rs +768 -0
  378. subetha_ipc-0.3.2/crates/subetha-cxc/src/schema_codec.rs +323 -0
  379. subetha_ipc-0.3.2/crates/subetha-cxc/src/sens_quic.rs +375 -0
  380. subetha_ipc-0.3.2/crates/subetha-cxc/src/sens_rlc.rs +4381 -0
  381. subetha_ipc-0.3.2/crates/subetha-cxc/src/sens_unified.rs +3979 -0
  382. subetha_ipc-0.3.2/crates/subetha-cxc/src/sharded_udp.rs +292 -0
  383. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_arc.rs +925 -0
  384. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_array.rs +513 -0
  385. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_async_pointer.rs +470 -0
  386. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_atomic.rs +523 -0
  387. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_bit_vec.rs +668 -0
  388. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_blocked_bloom_filter.rs +386 -0
  389. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_bloom_filter.rs +542 -0
  390. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_broadcast_ring.rs +845 -0
  391. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_btree_map.rs +1266 -0
  392. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_cell.rs +389 -0
  393. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_condvar.rs +470 -0
  394. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_count_min_sketch.rs +494 -0
  395. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_deque.rs +619 -0
  396. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_deque_fcl.rs +309 -0
  397. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_deque_khl.rs +960 -0
  398. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_deque_khpd.rs +860 -0
  399. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_deque_loh.rs +993 -0
  400. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_deque_urd.rs +856 -0
  401. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_epochs.rs +950 -0
  402. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_fence_clock.rs +667 -0
  403. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_graph.rs +546 -0
  404. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_handle_table.rs +632 -0
  405. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_hash_map.rs +1569 -0
  406. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_histogram.rs +597 -0
  407. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_holder_table.rs +359 -0
  408. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_hyper_log_log.rs +442 -0
  409. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_leader_election.rs +430 -0
  410. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_linked_list.rs +692 -0
  411. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_lru_cache.rs +631 -0
  412. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_nan_tagged_value.rs +399 -0
  413. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_nan_value.rs +389 -0
  414. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_once_cell.rs +689 -0
  415. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_rate_limiter.rs +603 -0
  416. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_region.rs +711 -0
  417. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_reservoir_sampler.rs +518 -0
  418. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_ring.rs +1487 -0
  419. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_rw_lock.rs +673 -0
  420. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_semaphore.rs +632 -0
  421. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_slab.rs +623 -0
  422. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_string_arena.rs +889 -0
  423. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_time_point.rs +566 -0
  424. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_topology_map.rs +725 -0
  425. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_treiber_stack.rs +576 -0
  426. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_umbra_pointer.rs +640 -0
  427. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_universal.rs +951 -0
  428. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_vec.rs +968 -0
  429. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_versioned_chain.rs +495 -0
  430. subetha_ipc-0.3.2/crates/subetha-cxc/src/shared_versioned_slab.rs +539 -0
  431. subetha_ipc-0.3.2/crates/subetha-cxc/src/shm_file.rs +569 -0
  432. subetha_ipc-0.3.2/crates/subetha-cxc/src/sidecar_ops.rs +277 -0
  433. subetha_ipc-0.3.2/crates/subetha-cxc/src/spec_doc.rs +138 -0
  434. subetha_ipc-0.3.2/crates/subetha-cxc/src/spsc_ring.rs +902 -0
  435. subetha_ipc-0.3.2/crates/subetha-cxc/src/stream_mux.rs +993 -0
  436. subetha_ipc-0.3.2/crates/subetha-cxc/src/super_pages.rs +150 -0
  437. subetha_ipc-0.3.2/crates/subetha-cxc/src/tagged_offset_ptr.rs +468 -0
  438. subetha_ipc-0.3.2/crates/subetha-cxc/src/task_pool.rs +195 -0
  439. subetha_ipc-0.3.2/crates/subetha-cxc/src/tcp_bridge.rs +268 -0
  440. subetha_ipc-0.3.2/crates/subetha-cxc/src/tcp_tls_bridge.rs +94 -0
  441. subetha_ipc-0.3.2/crates/subetha-cxc/src/temporal_sensor.rs +324 -0
  442. subetha_ipc-0.3.2/crates/subetha-cxc/src/test_paths.rs +71 -0
  443. subetha_ipc-0.3.2/crates/subetha-cxc/src/tower.rs +151 -0
  444. subetha_ipc-0.3.2/crates/subetha-cxc/src/trace_sensor.rs +256 -0
  445. subetha_ipc-0.3.2/crates/subetha-cxc/src/udp_bridge.rs +5070 -0
  446. subetha_ipc-0.3.2/crates/subetha-cxc/src/unified_policy.rs +523 -0
  447. subetha_ipc-0.3.2/crates/subetha-cxc/src/versioned_btree_map.rs +727 -0
  448. subetha_ipc-0.3.2/crates/subetha-cxc/src/virtual_endpoint.rs +367 -0
  449. subetha_ipc-0.3.2/crates/subetha-cxc/src/waker_ring.rs +194 -0
  450. subetha_ipc-0.3.2/crates/subetha-cxc/src/wbest_sensor.rs +230 -0
  451. subetha_ipc-0.3.2/crates/subetha-cxc/vectors/rlc.txt +179 -0
  452. subetha_ipc-0.3.2/crates/subetha-cxc/vectors/rs.txt +96 -0
  453. subetha_ipc-0.3.2/crates/subetha-pointers/Cargo.toml +39 -0
  454. subetha_ipc-0.3.2/crates/subetha-pointers/LICENSE-MIT +21 -0
  455. subetha_ipc-0.3.2/crates/subetha-pointers/README.md +74 -0
  456. subetha_ipc-0.3.2/crates/subetha-pointers/benches/bitsteal_pointers.rs +393 -0
  457. subetha_ipc-0.3.2/crates/subetha-pointers/benches/hybrid_pointers.rs +88 -0
  458. subetha_ipc-0.3.2/crates/subetha-pointers/benches/umbra_pointer.rs +228 -0
  459. subetha_ipc-0.3.2/crates/subetha-pointers/benches/unified.rs +182 -0
  460. subetha_ipc-0.3.2/crates/subetha-pointers/benches/versioned_bloom.rs +429 -0
  461. subetha_ipc-0.3.2/crates/subetha-pointers/src/adaptive_cheri_pointer.rs +743 -0
  462. subetha_ipc-0.3.2/crates/subetha-pointers/src/adaptive_rasp_batch.rs +851 -0
  463. subetha_ipc-0.3.2/crates/subetha-pointers/src/bloom_pointer.rs +490 -0
  464. subetha_ipc-0.3.2/crates/subetha-pointers/src/cardinality_pointer.rs +343 -0
  465. subetha_ipc-0.3.2/crates/subetha-pointers/src/k_tower_pointer.rs +245 -0
  466. subetha_ipc-0.3.2/crates/subetha-pointers/src/kstep_pointer.rs +246 -0
  467. subetha_ipc-0.3.2/crates/subetha-pointers/src/lib.rs +36 -0
  468. subetha_ipc-0.3.2/crates/subetha-pointers/src/self_desc_pointer.rs +272 -0
  469. subetha_ipc-0.3.2/crates/subetha-pointers/src/umbra_pointer.rs +345 -0
  470. subetha_ipc-0.3.2/crates/subetha-pointers/src/versioned_pointer.rs +525 -0
  471. subetha_ipc-0.3.2/crates/subetha-py/Cargo.toml +60 -0
  472. subetha_ipc-0.3.2/crates/subetha-py/README.md +193 -0
  473. subetha_ipc-0.3.2/crates/subetha-py/bench/call_shapes.py +151 -0
  474. subetha_ipc-0.3.2/crates/subetha-py/build.rs +11 -0
  475. subetha_ipc-0.3.2/crates/subetha-py/src/lib.rs +9917 -0
  476. subetha_ipc-0.3.2/crates/subetha-py/tests/test_subetha.py +3587 -0
  477. subetha_ipc-0.3.2/crates/subetha-py/tests/test_surface.py +103 -0
  478. subetha_ipc-0.3.2/crates/subetha-py/tests/test_threading.py +243 -0
  479. subetha_ipc-0.3.2/crates/subetha-sidecar/Cargo.toml +20 -0
  480. subetha_ipc-0.3.2/crates/subetha-sidecar/LICENSE-MIT +21 -0
  481. subetha_ipc-0.3.2/crates/subetha-sidecar/README.md +117 -0
  482. subetha_ipc-0.3.2/crates/subetha-sidecar/src/bench_safe.rs +85 -0
  483. subetha_ipc-0.3.2/crates/subetha-sidecar/src/lib.rs +1102 -0
  484. subetha_ipc-0.3.2/pyproject.toml +32 -0
  485. subetha_ipc-0.3.2/python/subetha/__init__.py +224 -0
  486. subetha_ipc-0.3.2/python/subetha/__init__.pyi +1451 -0
  487. subetha_ipc-0.3.2/python/subetha/py.typed +1 -0
@@ -0,0 +1,2889 @@
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 = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys 0.61.2",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys 0.61.2",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "arc-swap"
72
+ version = "1.9.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
75
+ dependencies = [
76
+ "rustversion",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "autocfg"
81
+ version = "1.5.1"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
84
+
85
+ [[package]]
86
+ name = "base64"
87
+ version = "0.22.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
90
+
91
+ [[package]]
92
+ name = "bindgen"
93
+ version = "0.72.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
96
+ dependencies = [
97
+ "bitflags 2.13.2",
98
+ "cexpr",
99
+ "clang-sys",
100
+ "itertools 0.13.0",
101
+ "log",
102
+ "prettyplease",
103
+ "proc-macro2",
104
+ "quote",
105
+ "regex",
106
+ "rustc-hash",
107
+ "shlex 1.3.0",
108
+ "syn 2.0.119",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "bitflags"
113
+ version = "1.3.2"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
116
+
117
+ [[package]]
118
+ name = "bitflags"
119
+ version = "2.13.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
122
+
123
+ [[package]]
124
+ name = "bumpalo"
125
+ version = "3.20.3"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
128
+
129
+ [[package]]
130
+ name = "bytes"
131
+ version = "1.12.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
134
+
135
+ [[package]]
136
+ name = "cast"
137
+ version = "0.3.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
140
+
141
+ [[package]]
142
+ name = "cbindgen"
143
+ version = "0.28.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
146
+ dependencies = [
147
+ "clap",
148
+ "heck 0.4.1",
149
+ "indexmap",
150
+ "log",
151
+ "proc-macro2",
152
+ "quote",
153
+ "serde",
154
+ "serde_json",
155
+ "syn 2.0.119",
156
+ "tempfile",
157
+ "toml 0.8.23",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "cc"
162
+ version = "1.4.5"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
165
+ dependencies = [
166
+ "find-msvc-tools",
167
+ "jobserver",
168
+ "libc",
169
+ "shlex 2.0.1",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "cexpr"
174
+ version = "0.6.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
177
+ dependencies = [
178
+ "nom",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "cfg-expr"
183
+ version = "0.15.8"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
186
+ dependencies = [
187
+ "smallvec",
188
+ "target-lexicon 0.12.16",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "cfg-if"
193
+ version = "1.0.4"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
196
+
197
+ [[package]]
198
+ name = "cfg_aliases"
199
+ version = "0.2.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
202
+
203
+ [[package]]
204
+ name = "chacha20"
205
+ version = "0.10.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
208
+ dependencies = [
209
+ "cfg-if",
210
+ "cpufeatures",
211
+ "rand_core 0.10.1",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "ciborium"
216
+ version = "0.2.2"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
219
+ dependencies = [
220
+ "ciborium-io",
221
+ "ciborium-ll",
222
+ "serde",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "ciborium-io"
227
+ version = "0.2.2"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
230
+
231
+ [[package]]
232
+ name = "ciborium-ll"
233
+ version = "0.2.2"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
236
+ dependencies = [
237
+ "ciborium-io",
238
+ "half",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "clang-sys"
243
+ version = "1.9.1"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
246
+ dependencies = [
247
+ "glob",
248
+ "libc",
249
+ "libloading",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "clap"
254
+ version = "4.6.6"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
257
+ dependencies = [
258
+ "clap_builder",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "clap_builder"
263
+ version = "4.6.6"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
266
+ dependencies = [
267
+ "anstream",
268
+ "anstyle",
269
+ "clap_lex",
270
+ "strsim",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "clap_lex"
275
+ version = "1.1.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
278
+
279
+ [[package]]
280
+ name = "cobs"
281
+ version = "0.3.0"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
284
+ dependencies = [
285
+ "thiserror",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "colorchoice"
290
+ version = "1.0.5"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
293
+
294
+ [[package]]
295
+ name = "combine"
296
+ version = "4.6.8"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
299
+ dependencies = [
300
+ "bytes",
301
+ "memchr",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "core-foundation"
306
+ version = "0.10.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
309
+ dependencies = [
310
+ "core-foundation-sys",
311
+ "libc",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "core-foundation-sys"
316
+ version = "0.8.7"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
319
+
320
+ [[package]]
321
+ name = "cpufeatures"
322
+ version = "0.3.1"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
325
+ dependencies = [
326
+ "libc",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "criterion"
331
+ version = "0.5.1"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
334
+ dependencies = [
335
+ "anes",
336
+ "cast",
337
+ "ciborium",
338
+ "clap",
339
+ "criterion-plot",
340
+ "is-terminal",
341
+ "itertools 0.10.5",
342
+ "num-traits",
343
+ "once_cell",
344
+ "oorandom",
345
+ "plotters",
346
+ "rayon",
347
+ "regex",
348
+ "serde",
349
+ "serde_derive",
350
+ "serde_json",
351
+ "tinytemplate",
352
+ "walkdir",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "criterion-plot"
357
+ version = "0.5.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
360
+ dependencies = [
361
+ "cast",
362
+ "itertools 0.10.5",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "crossbeam"
367
+ version = "0.8.5"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "e71406cd8807725f7ac2f999a4cdd32e98f829fdf65f528343cebf945e41df1e"
370
+ dependencies = [
371
+ "crossbeam-channel",
372
+ "crossbeam-deque",
373
+ "crossbeam-epoch",
374
+ "crossbeam-queue",
375
+ "crossbeam-utils",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "crossbeam-channel"
380
+ version = "0.5.17"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
383
+ dependencies = [
384
+ "crossbeam-utils",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "crossbeam-deque"
389
+ version = "0.8.8"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
392
+ dependencies = [
393
+ "crossbeam-epoch",
394
+ "crossbeam-utils",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "crossbeam-epoch"
399
+ version = "0.9.21"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
402
+ dependencies = [
403
+ "crossbeam-utils",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "crossbeam-queue"
408
+ version = "0.3.14"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "03e8bd762f7479489c70ed6c768ddca99d7296857de437a68dcb2a94365b3fae"
411
+ dependencies = [
412
+ "crossbeam-utils",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "crossbeam-utils"
417
+ version = "0.8.23"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
420
+
421
+ [[package]]
422
+ name = "crunchy"
423
+ version = "0.2.4"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
426
+
427
+ [[package]]
428
+ name = "deranged"
429
+ version = "0.5.8"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
432
+
433
+ [[package]]
434
+ name = "dircpy"
435
+ version = "0.3.20"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "ebcbec2b9a580ddee352ac38523d2ecd4dcaad53532957034394556909e27f4b"
438
+ dependencies = [
439
+ "jwalk",
440
+ "log",
441
+ "walkdir",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "doctest-file"
446
+ version = "1.1.1"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "c2db04e74f0a9a93103b50e90b96024c9b2bdca8bce6a632ec71b88736d3d359"
449
+
450
+ [[package]]
451
+ name = "either"
452
+ version = "1.18.0"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
455
+
456
+ [[package]]
457
+ name = "embedded-io"
458
+ version = "0.4.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
461
+
462
+ [[package]]
463
+ name = "embedded-io"
464
+ version = "0.6.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
467
+
468
+ [[package]]
469
+ name = "enum-iterator"
470
+ version = "2.3.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "a4549325971814bda7a44061bf3fe7e487d447cba01e4220a4b454d630d7a016"
473
+ dependencies = [
474
+ "enum-iterator-derive",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "enum-iterator-derive"
479
+ version = "1.5.0"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "685adfa4d6f3d765a26bc5dbc936577de9abf756c1feeb3089b01dd395034842"
482
+ dependencies = [
483
+ "proc-macro2",
484
+ "quote",
485
+ "syn 2.0.119",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "equivalent"
490
+ version = "1.0.2"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
493
+
494
+ [[package]]
495
+ name = "errno"
496
+ version = "0.3.14"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
499
+ dependencies = [
500
+ "libc",
501
+ "windows-sys 0.61.2",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "fastbloom"
506
+ version = "0.17.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "ef975e30683b2d965054bb0a836f8973857c4ebf6acf274fe46617cd285060d8"
509
+ dependencies = [
510
+ "foldhash",
511
+ "libm",
512
+ "portable-atomic",
513
+ "siphasher",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "fastrand"
518
+ version = "2.5.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
521
+ dependencies = [
522
+ "getrandom 0.4.3",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "find-msvc-tools"
527
+ version = "0.1.12"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
530
+
531
+ [[package]]
532
+ name = "flume"
533
+ version = "0.12.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
536
+ dependencies = [
537
+ "fastrand",
538
+ "futures-core",
539
+ "futures-sink",
540
+ "spin",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "foldhash"
545
+ version = "0.2.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
548
+
549
+ [[package]]
550
+ name = "futures-core"
551
+ version = "0.3.34"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
554
+
555
+ [[package]]
556
+ name = "futures-sink"
557
+ version = "0.3.34"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
560
+
561
+ [[package]]
562
+ name = "futures-task"
563
+ version = "0.3.34"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
566
+
567
+ [[package]]
568
+ name = "futures-util"
569
+ version = "0.3.34"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
572
+ dependencies = [
573
+ "futures-core",
574
+ "futures-task",
575
+ "pin-project-lite",
576
+ "slab",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "getrandom"
581
+ version = "0.2.17"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
584
+ dependencies = [
585
+ "cfg-if",
586
+ "js-sys",
587
+ "libc",
588
+ "wasi",
589
+ "wasm-bindgen",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "getrandom"
594
+ version = "0.3.4"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
597
+ dependencies = [
598
+ "cfg-if",
599
+ "libc",
600
+ "r-efi 5.3.0",
601
+ "wasip2",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "getrandom"
606
+ version = "0.4.3"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
609
+ dependencies = [
610
+ "cfg-if",
611
+ "js-sys",
612
+ "libc",
613
+ "r-efi 6.0.0",
614
+ "rand_core 0.10.1",
615
+ "wasm-bindgen",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "glob"
620
+ version = "0.3.4"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
623
+
624
+ [[package]]
625
+ name = "half"
626
+ version = "2.7.1"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
629
+ dependencies = [
630
+ "cfg-if",
631
+ "crunchy",
632
+ "zerocopy",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "hashbrown"
637
+ version = "0.17.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
640
+
641
+ [[package]]
642
+ name = "heck"
643
+ version = "0.4.1"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
646
+
647
+ [[package]]
648
+ name = "heck"
649
+ version = "0.5.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
652
+
653
+ [[package]]
654
+ name = "hermit-abi"
655
+ version = "0.5.3"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
658
+
659
+ [[package]]
660
+ name = "iceoryx2"
661
+ version = "0.9.3"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "e226c6041866b416e8c384d69a54a8578cb26619725253351e3e17ea5f32627f"
664
+ dependencies = [
665
+ "iceoryx2-bb-concurrency",
666
+ "iceoryx2-bb-container",
667
+ "iceoryx2-bb-derive-macros",
668
+ "iceoryx2-bb-elementary",
669
+ "iceoryx2-bb-elementary-traits",
670
+ "iceoryx2-bb-lock-free",
671
+ "iceoryx2-bb-loggers",
672
+ "iceoryx2-bb-memory",
673
+ "iceoryx2-bb-posix",
674
+ "iceoryx2-bb-print",
675
+ "iceoryx2-bb-system-types",
676
+ "iceoryx2-cal",
677
+ "iceoryx2-log",
678
+ "iceoryx2-pal-configuration",
679
+ "serde",
680
+ "tiny-fn",
681
+ "toml 0.9.12+spec-1.1.0",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "iceoryx2-bb-concurrency"
686
+ version = "0.9.3"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "92f5a5122514aef83c9f947292102131069cc296685a99f97d9821cd2b0f6c9b"
689
+ dependencies = [
690
+ "iceoryx2-bb-elementary-traits",
691
+ "iceoryx2-pal-concurrency-sync",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "iceoryx2-bb-container"
696
+ version = "0.9.3"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "78387e1744f5549cf0946b6ab9a70e130be8d43b0c81d25f90b39be283daa140"
699
+ dependencies = [
700
+ "iceoryx2-bb-concurrency",
701
+ "iceoryx2-bb-derive-macros",
702
+ "iceoryx2-bb-elementary",
703
+ "iceoryx2-bb-elementary-traits",
704
+ "iceoryx2-log",
705
+ "serde",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "iceoryx2-bb-derive-macros"
710
+ version = "0.9.3"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "dfc348e72e9376b4cfe4bb5a2314ff07dd544c8c478f5f331fb281cf3cef7022"
713
+ dependencies = [
714
+ "iceoryx2-bb-elementary",
715
+ "iceoryx2-bb-elementary-traits",
716
+ "proc-macro2",
717
+ "quote",
718
+ "syn 2.0.119",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "iceoryx2-bb-elementary"
723
+ version = "0.9.3"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "5e589b707c3ddd2c008fa92c45f555b064c2d93481abbc75ac93f2a2dde1ca21"
726
+ dependencies = [
727
+ "iceoryx2-bb-elementary-traits",
728
+ "iceoryx2-pal-concurrency-sync",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "iceoryx2-bb-elementary-traits"
733
+ version = "0.9.3"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "9d911ebc02d8a896014a490e2a2b8b9ce673ec3cc35c3b7c6e5b0a998a6e8e75"
736
+
737
+ [[package]]
738
+ name = "iceoryx2-bb-linux"
739
+ version = "0.9.3"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "0ba5cef69bfbd1a4a73309b3629c9bc52d96174724fe78c61be8a8a804f4c805"
742
+ dependencies = [
743
+ "iceoryx2-bb-concurrency",
744
+ "iceoryx2-bb-container",
745
+ "iceoryx2-bb-posix",
746
+ "iceoryx2-bb-system-types",
747
+ "iceoryx2-log",
748
+ "iceoryx2-pal-os-api",
749
+ "iceoryx2-pal-posix",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "iceoryx2-bb-lock-free"
754
+ version = "0.9.3"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "ffa54d8ba354cc21bc287edcdb5c962821efd5d1a22baf89671331e6071487e5"
757
+ dependencies = [
758
+ "iceoryx2-bb-concurrency",
759
+ "iceoryx2-bb-elementary",
760
+ "iceoryx2-bb-elementary-traits",
761
+ "iceoryx2-log",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "iceoryx2-bb-loggers"
766
+ version = "0.9.3"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "1b54b1cd9dfd232a4a6b9d05a6f53a7746780c96ba9e2ec30ae64ce91cfb1f82"
769
+ dependencies = [
770
+ "iceoryx2-bb-print",
771
+ "iceoryx2-log-types",
772
+ "iceoryx2-pal-concurrency-sync",
773
+ "iceoryx2-pal-posix",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "iceoryx2-bb-memory"
778
+ version = "0.9.3"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "69796385ec8785ec5e85b21b04f313460888533ec506308ace35d8f85033f95e"
781
+ dependencies = [
782
+ "iceoryx2-bb-concurrency",
783
+ "iceoryx2-bb-elementary",
784
+ "iceoryx2-bb-elementary-traits",
785
+ "iceoryx2-bb-lock-free",
786
+ "iceoryx2-bb-posix",
787
+ "iceoryx2-log",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "iceoryx2-bb-posix"
792
+ version = "0.9.3"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "93835d17196e329040741a8e4b8bfa764d8449b00a77eedf34e10a2f4a837e6c"
795
+ dependencies = [
796
+ "enum-iterator",
797
+ "iceoryx2-bb-concurrency",
798
+ "iceoryx2-bb-container",
799
+ "iceoryx2-bb-derive-macros",
800
+ "iceoryx2-bb-elementary",
801
+ "iceoryx2-bb-elementary-traits",
802
+ "iceoryx2-bb-print",
803
+ "iceoryx2-bb-system-types",
804
+ "iceoryx2-log",
805
+ "iceoryx2-pal-configuration",
806
+ "iceoryx2-pal-posix",
807
+ "serde",
808
+ "tiny-fn",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "iceoryx2-bb-print"
813
+ version = "0.9.3"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "f2eb7bf29b62bdff3915c1e3abb4e8421c100c5745b4af92c94dce3a9585877b"
816
+ dependencies = [
817
+ "iceoryx2-pal-print",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "iceoryx2-bb-system-types"
822
+ version = "0.9.3"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "d045f46c0f24fb6e89f006c37231f622c5e8b0614d6561778071d8e684dc3fb9"
825
+ dependencies = [
826
+ "iceoryx2-bb-container",
827
+ "iceoryx2-bb-derive-macros",
828
+ "iceoryx2-bb-elementary",
829
+ "iceoryx2-bb-elementary-traits",
830
+ "iceoryx2-log",
831
+ "iceoryx2-pal-configuration",
832
+ "iceoryx2-pal-posix",
833
+ "serde",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "iceoryx2-cal"
838
+ version = "0.9.3"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "bd00991d2e43e9315f555f8ec07bda7fd1a67da3beac9a504b5edaf7de25502f"
841
+ dependencies = [
842
+ "iceoryx2-bb-concurrency",
843
+ "iceoryx2-bb-container",
844
+ "iceoryx2-bb-derive-macros",
845
+ "iceoryx2-bb-elementary",
846
+ "iceoryx2-bb-elementary-traits",
847
+ "iceoryx2-bb-linux",
848
+ "iceoryx2-bb-lock-free",
849
+ "iceoryx2-bb-memory",
850
+ "iceoryx2-bb-posix",
851
+ "iceoryx2-bb-system-types",
852
+ "iceoryx2-log",
853
+ "postcard",
854
+ "serde",
855
+ "sha1_smol",
856
+ "tiny-fn",
857
+ "toml 0.9.12+spec-1.1.0",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "iceoryx2-log"
862
+ version = "0.9.3"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "5296f7ff5f04b5378e3d360b801cb5384f370a95e822e9442e94af7ac57be8f8"
865
+ dependencies = [
866
+ "iceoryx2-log-types",
867
+ "iceoryx2-pal-concurrency-sync",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "iceoryx2-log-types"
872
+ version = "0.9.3"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "05f1ef22f30abf32da694f1ef6790e12cea9cc3ff6b0238c5a02bfa604572638"
875
+
876
+ [[package]]
877
+ name = "iceoryx2-pal-concurrency-sync"
878
+ version = "0.9.3"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "627f54dcaf712224abb2dce636407f0667955f4645a73469029cd3ae4342f1e4"
881
+
882
+ [[package]]
883
+ name = "iceoryx2-pal-configuration"
884
+ version = "0.9.3"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "d92f4bbfd5f739200d75eeb319618de947400c1fc4f2b8f08864590934d5c960"
887
+
888
+ [[package]]
889
+ name = "iceoryx2-pal-os-api"
890
+ version = "0.9.3"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "9dc3ab48aa7043a5d2248857b288d69a970affd453a643bc55487d9a0505e069"
893
+ dependencies = [
894
+ "bindgen",
895
+ "cc",
896
+ "iceoryx2-pal-posix",
897
+ "libc",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "iceoryx2-pal-posix"
902
+ version = "0.9.3"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "717117199992be87c4c49bd058e65d470a90519274c11d4a2b004f79b20234ba"
905
+ dependencies = [
906
+ "bindgen",
907
+ "cc",
908
+ "iceoryx2-pal-concurrency-sync",
909
+ "iceoryx2-pal-configuration",
910
+ "libc",
911
+ "windows-sys 0.48.0",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "iceoryx2-pal-print"
916
+ version = "0.9.3"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "101bf2e1e867c7d3d5b192a76c373badb32ac186d48140624435625dce21844a"
919
+ dependencies = [
920
+ "iceoryx2-pal-posix",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "indexmap"
925
+ version = "2.14.2"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
928
+ dependencies = [
929
+ "equivalent",
930
+ "hashbrown",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "interprocess"
935
+ version = "2.4.4"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "6cb02ffbf25e8ef0f4a95bff054eef75f6d1bf16919474cf2caa63b21997478a"
938
+ dependencies = [
939
+ "doctest-file",
940
+ "libc",
941
+ "recvmsg",
942
+ "widestring",
943
+ "windows-sys 0.61.2",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "io-uring"
948
+ version = "0.7.15"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "ed3bd0ecfbb87805f538bb7b32e5239ca0763890c623e349860ecba69469f2bb"
951
+ dependencies = [
952
+ "bitflags 2.13.2",
953
+ "cfg-if",
954
+ "libc",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "ipc-channel"
959
+ version = "0.22.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "347ef783e380784658248bdb0b87ca1293e3e3df3fc7dee061e129aa5f013d61"
962
+ dependencies = [
963
+ "crossbeam-channel",
964
+ "libc",
965
+ "mio",
966
+ "postcard",
967
+ "rand 0.9.5",
968
+ "rustc-hash",
969
+ "serde_core",
970
+ "tempfile",
971
+ "thiserror",
972
+ "uuid",
973
+ "windows",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "is-terminal"
978
+ version = "0.4.17"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
981
+ dependencies = [
982
+ "hermit-abi",
983
+ "libc",
984
+ "windows-sys 0.61.2",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "is_terminal_polyfill"
989
+ version = "1.70.2"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
992
+
993
+ [[package]]
994
+ name = "itertools"
995
+ version = "0.10.5"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
998
+ dependencies = [
999
+ "either",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "itertools"
1004
+ version = "0.13.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1007
+ dependencies = [
1008
+ "either",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "itoa"
1013
+ version = "1.0.18"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1016
+
1017
+ [[package]]
1018
+ name = "jni"
1019
+ version = "0.22.4"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1022
+ dependencies = [
1023
+ "cfg-if",
1024
+ "combine",
1025
+ "jni-macros",
1026
+ "jni-sys",
1027
+ "log",
1028
+ "simd_cesu8",
1029
+ "thiserror",
1030
+ "walkdir",
1031
+ "windows-link 0.2.1",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "jni-macros"
1036
+ version = "0.22.4"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1039
+ dependencies = [
1040
+ "proc-macro2",
1041
+ "quote",
1042
+ "rustc_version",
1043
+ "simd_cesu8",
1044
+ "syn 2.0.119",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "jni-sys"
1049
+ version = "0.4.1"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1052
+ dependencies = [
1053
+ "jni-sys-macros",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "jni-sys-macros"
1058
+ version = "0.4.1"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1061
+ dependencies = [
1062
+ "quote",
1063
+ "syn 2.0.119",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "jobserver"
1068
+ version = "0.1.35"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1071
+ dependencies = [
1072
+ "getrandom 0.4.3",
1073
+ "libc",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "js-sys"
1078
+ version = "0.3.105"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
1081
+ dependencies = [
1082
+ "cfg-if",
1083
+ "futures-util",
1084
+ "wasm-bindgen",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "jwalk"
1089
+ version = "0.8.1"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
1092
+ dependencies = [
1093
+ "crossbeam",
1094
+ "rayon",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "libbpf-sys"
1099
+ version = "1.5.1+v1.5.1"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "912fae30b08bcbdb861d4b85bd09c05352c0ac9d7b93765ced5ca23709e7e590"
1102
+ dependencies = [
1103
+ "cc",
1104
+ "nix",
1105
+ "pkg-config",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "libc"
1110
+ version = "0.2.189"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1113
+
1114
+ [[package]]
1115
+ name = "libloading"
1116
+ version = "0.8.9"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1119
+ dependencies = [
1120
+ "cfg-if",
1121
+ "windows-link 0.2.1",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "libm"
1126
+ version = "0.2.16"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1129
+
1130
+ [[package]]
1131
+ name = "libxdp-sys"
1132
+ version = "0.2.4+1.6.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "6098c8281e42ed6f46240af889297dae1e37f70ee505dd26fe5c7199563e4d86"
1135
+ dependencies = [
1136
+ "bindgen",
1137
+ "cc",
1138
+ "libbpf-sys",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "linux-raw-sys"
1143
+ version = "0.12.1"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1146
+
1147
+ [[package]]
1148
+ name = "lock_api"
1149
+ version = "0.4.14"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1152
+ dependencies = [
1153
+ "scopeguard",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "log"
1158
+ version = "0.4.34"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
1161
+
1162
+ [[package]]
1163
+ name = "lru-slab"
1164
+ version = "0.1.2"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1167
+
1168
+ [[package]]
1169
+ name = "memchr"
1170
+ version = "2.8.3"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1173
+
1174
+ [[package]]
1175
+ name = "memmap2"
1176
+ version = "0.9.11"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1179
+ dependencies = [
1180
+ "libc",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "minimal-lexical"
1185
+ version = "0.2.1"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1188
+
1189
+ [[package]]
1190
+ name = "mio"
1191
+ version = "1.2.3"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
1194
+ dependencies = [
1195
+ "libc",
1196
+ "wasi",
1197
+ "windows-sys 0.61.2",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "nix"
1202
+ version = "0.30.1"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1205
+ dependencies = [
1206
+ "bitflags 2.13.2",
1207
+ "cfg-if",
1208
+ "cfg_aliases",
1209
+ "libc",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "nom"
1214
+ version = "7.1.3"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1217
+ dependencies = [
1218
+ "memchr",
1219
+ "minimal-lexical",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "num-conv"
1224
+ version = "0.2.2"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1227
+
1228
+ [[package]]
1229
+ name = "num-traits"
1230
+ version = "0.2.19"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1233
+ dependencies = [
1234
+ "autocfg",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "once_cell"
1239
+ version = "1.21.4"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1242
+
1243
+ [[package]]
1244
+ name = "once_cell_polyfill"
1245
+ version = "1.70.2"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1248
+
1249
+ [[package]]
1250
+ name = "oorandom"
1251
+ version = "11.1.5"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1254
+
1255
+ [[package]]
1256
+ name = "openssl-probe"
1257
+ version = "0.2.1"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1260
+
1261
+ [[package]]
1262
+ name = "parking_lot"
1263
+ version = "0.12.5"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1266
+ dependencies = [
1267
+ "lock_api",
1268
+ "parking_lot_core",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "parking_lot_core"
1273
+ version = "0.9.12"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1276
+ dependencies = [
1277
+ "cfg-if",
1278
+ "libc",
1279
+ "redox_syscall",
1280
+ "smallvec",
1281
+ "windows-link 0.2.1",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "pem"
1286
+ version = "3.0.6"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1289
+ dependencies = [
1290
+ "base64",
1291
+ "serde_core",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "pin-project-lite"
1296
+ version = "0.2.17"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1299
+
1300
+ [[package]]
1301
+ name = "pkg-config"
1302
+ version = "0.3.34"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
1305
+
1306
+ [[package]]
1307
+ name = "plotters"
1308
+ version = "0.3.7"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1311
+ dependencies = [
1312
+ "num-traits",
1313
+ "plotters-backend",
1314
+ "plotters-svg",
1315
+ "wasm-bindgen",
1316
+ "web-sys",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "plotters-backend"
1321
+ version = "0.3.7"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1324
+
1325
+ [[package]]
1326
+ name = "plotters-svg"
1327
+ version = "0.3.7"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1330
+ dependencies = [
1331
+ "plotters-backend",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "portable-atomic"
1336
+ version = "1.15.0"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1339
+
1340
+ [[package]]
1341
+ name = "postcard"
1342
+ version = "1.1.3"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1345
+ dependencies = [
1346
+ "cobs",
1347
+ "embedded-io 0.4.0",
1348
+ "embedded-io 0.6.1",
1349
+ "serde",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "powerfmt"
1354
+ version = "0.2.0"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1357
+
1358
+ [[package]]
1359
+ name = "ppv-lite86"
1360
+ version = "0.2.21"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1363
+ dependencies = [
1364
+ "zerocopy",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "prettyplease"
1369
+ version = "0.2.37"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1372
+ dependencies = [
1373
+ "proc-macro2",
1374
+ "syn 2.0.119",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "proc-macro2"
1379
+ version = "1.0.107"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1382
+ dependencies = [
1383
+ "unicode-ident",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "pyo3"
1388
+ version = "0.29.2"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1391
+ dependencies = [
1392
+ "libc",
1393
+ "once_cell",
1394
+ "portable-atomic",
1395
+ "pyo3-build-config",
1396
+ "pyo3-ffi",
1397
+ "pyo3-macros",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "pyo3-build-config"
1402
+ version = "0.29.2"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1405
+ dependencies = [
1406
+ "target-lexicon 0.13.5",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "pyo3-ffi"
1411
+ version = "0.29.2"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1414
+ dependencies = [
1415
+ "libc",
1416
+ "pyo3-build-config",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "pyo3-macros"
1421
+ version = "0.29.2"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1424
+ dependencies = [
1425
+ "proc-macro2",
1426
+ "pyo3-macros-backend",
1427
+ "quote",
1428
+ "syn 2.0.119",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "pyo3-macros-backend"
1433
+ version = "0.29.2"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1436
+ dependencies = [
1437
+ "heck 0.5.0",
1438
+ "proc-macro2",
1439
+ "quote",
1440
+ "syn 2.0.119",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "quinn"
1445
+ version = "0.11.11"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1448
+ dependencies = [
1449
+ "bytes",
1450
+ "cfg_aliases",
1451
+ "pin-project-lite",
1452
+ "quinn-proto",
1453
+ "quinn-udp",
1454
+ "rustc-hash",
1455
+ "rustls",
1456
+ "socket2",
1457
+ "thiserror",
1458
+ "tokio",
1459
+ "tracing",
1460
+ "web-time",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "quinn-proto"
1465
+ version = "0.11.17"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83"
1468
+ dependencies = [
1469
+ "bytes",
1470
+ "fastbloom",
1471
+ "getrandom 0.4.3",
1472
+ "lru-slab",
1473
+ "rand 0.10.2",
1474
+ "rand_pcg",
1475
+ "ring",
1476
+ "rustc-hash",
1477
+ "rustls",
1478
+ "rustls-pki-types",
1479
+ "rustls-platform-verifier",
1480
+ "slab",
1481
+ "thiserror",
1482
+ "tinyvec",
1483
+ "tracing",
1484
+ "web-time",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "quinn-udp"
1489
+ version = "0.5.15"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
1492
+ dependencies = [
1493
+ "cfg_aliases",
1494
+ "libc",
1495
+ "once_cell",
1496
+ "socket2",
1497
+ "tracing",
1498
+ "windows-sys 0.61.2",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "quote"
1503
+ version = "1.0.47"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1506
+ dependencies = [
1507
+ "proc-macro2",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "r-efi"
1512
+ version = "5.3.0"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1515
+
1516
+ [[package]]
1517
+ name = "r-efi"
1518
+ version = "6.0.0"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1521
+
1522
+ [[package]]
1523
+ name = "rand"
1524
+ version = "0.9.5"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1527
+ dependencies = [
1528
+ "rand_chacha",
1529
+ "rand_core 0.9.5",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "rand"
1534
+ version = "0.10.2"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1537
+ dependencies = [
1538
+ "chacha20",
1539
+ "getrandom 0.4.3",
1540
+ "rand_core 0.10.1",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "rand_chacha"
1545
+ version = "0.9.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1548
+ dependencies = [
1549
+ "ppv-lite86",
1550
+ "rand_core 0.9.5",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "rand_core"
1555
+ version = "0.9.5"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1558
+ dependencies = [
1559
+ "getrandom 0.3.4",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "rand_core"
1564
+ version = "0.10.1"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1567
+
1568
+ [[package]]
1569
+ name = "rand_pcg"
1570
+ version = "0.10.2"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
1573
+ dependencies = [
1574
+ "rand_core 0.10.1",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "rayon"
1579
+ version = "1.12.0"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1582
+ dependencies = [
1583
+ "either",
1584
+ "rayon-core",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "rayon-core"
1589
+ version = "1.13.0"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1592
+ dependencies = [
1593
+ "crossbeam-deque",
1594
+ "crossbeam-utils",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "rcgen"
1599
+ version = "0.13.2"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
1602
+ dependencies = [
1603
+ "pem",
1604
+ "ring",
1605
+ "rustls-pki-types",
1606
+ "time",
1607
+ "yasna",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "recvmsg"
1612
+ version = "1.0.0"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "d3edd4d5d42c92f0a659926464d4cce56b562761267ecf0f469d85b7de384175"
1615
+
1616
+ [[package]]
1617
+ name = "redox_syscall"
1618
+ version = "0.5.18"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1621
+ dependencies = [
1622
+ "bitflags 2.13.2",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "regex"
1627
+ version = "1.13.1"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1630
+ dependencies = [
1631
+ "aho-corasick",
1632
+ "memchr",
1633
+ "regex-automata",
1634
+ "regex-syntax",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "regex-automata"
1639
+ version = "0.4.18"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1642
+ dependencies = [
1643
+ "aho-corasick",
1644
+ "memchr",
1645
+ "regex-syntax",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "regex-syntax"
1650
+ version = "0.8.11"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1653
+
1654
+ [[package]]
1655
+ name = "ring"
1656
+ version = "0.17.14"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1659
+ dependencies = [
1660
+ "cc",
1661
+ "cfg-if",
1662
+ "getrandom 0.2.17",
1663
+ "libc",
1664
+ "untrusted",
1665
+ "windows-sys 0.52.0",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "rtrb"
1670
+ version = "0.3.5"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "fae8ee26b0371a29a77d2b2d6b3ae13aa81def6f9bf1b1b92a32d279a5e709b7"
1673
+
1674
+ [[package]]
1675
+ name = "rustc-hash"
1676
+ version = "2.1.3"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1679
+
1680
+ [[package]]
1681
+ name = "rustc_version"
1682
+ version = "0.4.1"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1685
+ dependencies = [
1686
+ "semver",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "rustix"
1691
+ version = "1.1.4"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1694
+ dependencies = [
1695
+ "bitflags 2.13.2",
1696
+ "errno",
1697
+ "libc",
1698
+ "linux-raw-sys",
1699
+ "windows-sys 0.61.2",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "rustls"
1704
+ version = "0.23.44"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "6725596c3f2c3a0aef021139e145d4eafe314a6623e4680ca83852b2c67ab2ba"
1707
+ dependencies = [
1708
+ "once_cell",
1709
+ "ring",
1710
+ "rustls-pki-types",
1711
+ "rustls-webpki",
1712
+ "subtle",
1713
+ "zeroize",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "rustls-native-certs"
1718
+ version = "0.8.4"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
1721
+ dependencies = [
1722
+ "openssl-probe",
1723
+ "rustls-pki-types",
1724
+ "schannel",
1725
+ "security-framework",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "rustls-pki-types"
1730
+ version = "1.15.1"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
1733
+ dependencies = [
1734
+ "web-time",
1735
+ "zeroize",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "rustls-platform-verifier"
1740
+ version = "0.7.0"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
1743
+ dependencies = [
1744
+ "core-foundation",
1745
+ "core-foundation-sys",
1746
+ "jni",
1747
+ "log",
1748
+ "once_cell",
1749
+ "rustls",
1750
+ "rustls-native-certs",
1751
+ "rustls-platform-verifier-android",
1752
+ "rustls-webpki",
1753
+ "security-framework",
1754
+ "security-framework-sys",
1755
+ "webpki-root-certs",
1756
+ "windows-sys 0.61.2",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "rustls-platform-verifier-android"
1761
+ version = "0.1.1"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1764
+
1765
+ [[package]]
1766
+ name = "rustls-webpki"
1767
+ version = "0.103.15"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
1770
+ dependencies = [
1771
+ "ring",
1772
+ "rustls-pki-types",
1773
+ "untrusted",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "rustversion"
1778
+ version = "1.0.23"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1781
+
1782
+ [[package]]
1783
+ name = "same-file"
1784
+ version = "1.0.6"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1787
+ dependencies = [
1788
+ "winapi-util",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "schannel"
1793
+ version = "0.1.29"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1796
+ dependencies = [
1797
+ "windows-sys 0.61.2",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "scopeguard"
1802
+ version = "1.2.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1805
+
1806
+ [[package]]
1807
+ name = "security-framework"
1808
+ version = "3.7.0"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1811
+ dependencies = [
1812
+ "bitflags 2.13.2",
1813
+ "core-foundation",
1814
+ "core-foundation-sys",
1815
+ "libc",
1816
+ "security-framework-sys",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "security-framework-sys"
1821
+ version = "2.17.0"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1824
+ dependencies = [
1825
+ "core-foundation-sys",
1826
+ "libc",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "semver"
1831
+ version = "1.0.28"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1834
+
1835
+ [[package]]
1836
+ name = "serde"
1837
+ version = "1.0.229"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1840
+ dependencies = [
1841
+ "serde_core",
1842
+ "serde_derive",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "serde_core"
1847
+ version = "1.0.229"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1850
+ dependencies = [
1851
+ "serde_derive",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "serde_derive"
1856
+ version = "1.0.229"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1859
+ dependencies = [
1860
+ "proc-macro2",
1861
+ "quote",
1862
+ "syn 3.0.5",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "serde_json"
1867
+ version = "1.0.151"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1870
+ dependencies = [
1871
+ "itoa",
1872
+ "memchr",
1873
+ "serde",
1874
+ "serde_core",
1875
+ "zmij",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "serde_spanned"
1880
+ version = "0.6.9"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1883
+ dependencies = [
1884
+ "serde",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "serde_spanned"
1889
+ version = "1.1.1"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1892
+ dependencies = [
1893
+ "serde_core",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "sha1_smol"
1898
+ version = "1.0.1"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
1901
+
1902
+ [[package]]
1903
+ name = "shlex"
1904
+ version = "1.3.0"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1907
+
1908
+ [[package]]
1909
+ name = "shlex"
1910
+ version = "2.0.1"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1913
+
1914
+ [[package]]
1915
+ name = "simd_cesu8"
1916
+ version = "1.2.0"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
1919
+ dependencies = [
1920
+ "rustc_version",
1921
+ "simdutf8",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "simdutf8"
1926
+ version = "0.1.5"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1929
+
1930
+ [[package]]
1931
+ name = "siphasher"
1932
+ version = "1.0.3"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1935
+
1936
+ [[package]]
1937
+ name = "slab"
1938
+ version = "0.4.12"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1941
+
1942
+ [[package]]
1943
+ name = "smallvec"
1944
+ version = "1.16.1"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
1947
+
1948
+ [[package]]
1949
+ name = "socket2"
1950
+ version = "0.6.5"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1953
+ dependencies = [
1954
+ "libc",
1955
+ "windows-sys 0.61.2",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "spin"
1960
+ version = "0.9.9"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1963
+ dependencies = [
1964
+ "lock_api",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "strsim"
1969
+ version = "0.11.1"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1972
+
1973
+ [[package]]
1974
+ name = "subetha"
1975
+ version = "0.3.2"
1976
+ dependencies = [
1977
+ "subetha-core",
1978
+ "subetha-cxc",
1979
+ "subetha-pointers",
1980
+ "subetha-sidecar",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "subetha-core"
1985
+ version = "0.3.2"
1986
+ dependencies = [
1987
+ "criterion",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "subetha-cxc"
1992
+ version = "0.3.2"
1993
+ dependencies = [
1994
+ "arc-swap",
1995
+ "criterion",
1996
+ "crossbeam-channel",
1997
+ "crossbeam-deque",
1998
+ "flume",
1999
+ "iceoryx2",
2000
+ "interprocess",
2001
+ "io-uring",
2002
+ "ipc-channel",
2003
+ "libc",
2004
+ "memmap2",
2005
+ "once_cell",
2006
+ "parking_lot",
2007
+ "quinn",
2008
+ "rcgen",
2009
+ "rtrb",
2010
+ "rustls",
2011
+ "serde",
2012
+ "serde_json",
2013
+ "socket2",
2014
+ "subetha-core",
2015
+ "subetha-pointers",
2016
+ "subetha-sidecar",
2017
+ "tokio",
2018
+ "tokio-rustls",
2019
+ "windows-sys 0.59.0",
2020
+ "xsk-rs",
2021
+ "zmq",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "subetha-e2e"
2026
+ version = "0.3.2"
2027
+ dependencies = [
2028
+ "subetha-core",
2029
+ "subetha-cxc",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "subetha-ffi"
2034
+ version = "0.3.2"
2035
+ dependencies = [
2036
+ "arc-swap",
2037
+ "cbindgen",
2038
+ "criterion",
2039
+ "libc",
2040
+ "parking_lot",
2041
+ "subetha-cxc",
2042
+ "tokio",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "subetha-ffi-tests"
2047
+ version = "0.3.2"
2048
+ dependencies = [
2049
+ "cc",
2050
+ "subetha-ffi",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "subetha-pointers"
2055
+ version = "0.3.2"
2056
+ dependencies = [
2057
+ "criterion",
2058
+ "parking_lot",
2059
+ "subetha-core",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "subetha-py"
2064
+ version = "0.3.2"
2065
+ dependencies = [
2066
+ "pyo3",
2067
+ "pyo3-build-config",
2068
+ "subetha-core",
2069
+ "subetha-cxc",
2070
+ "tokio",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "subetha-sidecar"
2075
+ version = "0.3.2"
2076
+ dependencies = [
2077
+ "criterion",
2078
+ "once_cell",
2079
+ "parking_lot",
2080
+ "subetha-core",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "subtle"
2085
+ version = "2.6.1"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2088
+
2089
+ [[package]]
2090
+ name = "syn"
2091
+ version = "2.0.119"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2094
+ dependencies = [
2095
+ "proc-macro2",
2096
+ "quote",
2097
+ "unicode-ident",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "syn"
2102
+ version = "3.0.5"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
2105
+ dependencies = [
2106
+ "proc-macro2",
2107
+ "quote",
2108
+ "unicode-ident",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "system-deps"
2113
+ version = "6.2.2"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
2116
+ dependencies = [
2117
+ "cfg-expr",
2118
+ "heck 0.5.0",
2119
+ "pkg-config",
2120
+ "toml 0.8.23",
2121
+ "version-compare",
2122
+ ]
2123
+
2124
+ [[package]]
2125
+ name = "target-lexicon"
2126
+ version = "0.12.16"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2129
+
2130
+ [[package]]
2131
+ name = "target-lexicon"
2132
+ version = "0.13.5"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2135
+
2136
+ [[package]]
2137
+ name = "tempfile"
2138
+ version = "3.27.0"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2141
+ dependencies = [
2142
+ "fastrand",
2143
+ "getrandom 0.4.3",
2144
+ "once_cell",
2145
+ "rustix",
2146
+ "windows-sys 0.61.2",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "thiserror"
2151
+ version = "2.0.20"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
2154
+ dependencies = [
2155
+ "thiserror-impl",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "thiserror-impl"
2160
+ version = "2.0.20"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
2163
+ dependencies = [
2164
+ "proc-macro2",
2165
+ "quote",
2166
+ "syn 3.0.5",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "time"
2171
+ version = "0.3.55"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
2174
+ dependencies = [
2175
+ "deranged",
2176
+ "num-conv",
2177
+ "powerfmt",
2178
+ "serde_core",
2179
+ "time-core",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "time-core"
2184
+ version = "0.1.9"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2187
+
2188
+ [[package]]
2189
+ name = "tiny-fn"
2190
+ version = "0.1.9"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "9659b108631d1e1cf3e8e489f894bee40bc9d68fd6cc67ec4d4ce9b72d565228"
2193
+
2194
+ [[package]]
2195
+ name = "tinytemplate"
2196
+ version = "1.2.1"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2199
+ dependencies = [
2200
+ "serde",
2201
+ "serde_json",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "tinyvec"
2206
+ version = "1.13.2"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "4cf0ded5c4e56918d8f8a339e1bb67d038d3bc6d144ac407904015ba2e4cde9b"
2209
+ dependencies = [
2210
+ "tinyvec_macros",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "tinyvec_macros"
2215
+ version = "0.1.1"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2218
+
2219
+ [[package]]
2220
+ name = "tokio"
2221
+ version = "1.53.1"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
2224
+ dependencies = [
2225
+ "bytes",
2226
+ "libc",
2227
+ "mio",
2228
+ "pin-project-lite",
2229
+ "socket2",
2230
+ "tokio-macros",
2231
+ "windows-sys 0.61.2",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "tokio-macros"
2236
+ version = "2.7.2"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
2239
+ dependencies = [
2240
+ "proc-macro2",
2241
+ "quote",
2242
+ "syn 3.0.5",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "tokio-rustls"
2247
+ version = "0.26.5"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "b0c85f2c3ef0b1cd58b36682f4b17aaa995f0e5db534d85692b4903abce21f67"
2250
+ dependencies = [
2251
+ "rustls",
2252
+ "tokio",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "toml"
2257
+ version = "0.8.23"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2260
+ dependencies = [
2261
+ "serde",
2262
+ "serde_spanned 0.6.9",
2263
+ "toml_datetime 0.6.11",
2264
+ "toml_edit",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "toml"
2269
+ version = "0.9.12+spec-1.1.0"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2272
+ dependencies = [
2273
+ "serde_core",
2274
+ "serde_spanned 1.1.1",
2275
+ "toml_datetime 0.7.5+spec-1.1.0",
2276
+ "toml_parser",
2277
+ "toml_writer",
2278
+ "winnow 0.7.15",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "toml_datetime"
2283
+ version = "0.6.11"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2286
+ dependencies = [
2287
+ "serde",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "toml_datetime"
2292
+ version = "0.7.5+spec-1.1.0"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2295
+ dependencies = [
2296
+ "serde_core",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "toml_edit"
2301
+ version = "0.22.27"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2304
+ dependencies = [
2305
+ "indexmap",
2306
+ "serde",
2307
+ "serde_spanned 0.6.9",
2308
+ "toml_datetime 0.6.11",
2309
+ "toml_write",
2310
+ "winnow 0.7.15",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "toml_parser"
2315
+ version = "1.1.3+spec-1.1.0"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
2318
+ dependencies = [
2319
+ "winnow 1.0.4",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "toml_write"
2324
+ version = "0.1.2"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2327
+
2328
+ [[package]]
2329
+ name = "toml_writer"
2330
+ version = "1.1.2+spec-1.1.0"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
2333
+
2334
+ [[package]]
2335
+ name = "tracing"
2336
+ version = "0.1.44"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2339
+ dependencies = [
2340
+ "log",
2341
+ "pin-project-lite",
2342
+ "tracing-core",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "tracing-core"
2347
+ version = "0.1.36"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2350
+ dependencies = [
2351
+ "once_cell",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "unicode-ident"
2356
+ version = "1.0.24"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2359
+
2360
+ [[package]]
2361
+ name = "untrusted"
2362
+ version = "0.9.0"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2365
+
2366
+ [[package]]
2367
+ name = "utf8parse"
2368
+ version = "0.2.2"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2371
+
2372
+ [[package]]
2373
+ name = "uuid"
2374
+ version = "1.26.1"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "2ef6dac1e96601b4fb3acccccff2139741fcb757cb9a36089bf5be91cfb285ce"
2377
+ dependencies = [
2378
+ "getrandom 0.4.3",
2379
+ "js-sys",
2380
+ "wasm-bindgen",
2381
+ ]
2382
+
2383
+ [[package]]
2384
+ name = "version-compare"
2385
+ version = "0.2.1"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
2388
+
2389
+ [[package]]
2390
+ name = "walkdir"
2391
+ version = "2.5.0"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2394
+ dependencies = [
2395
+ "same-file",
2396
+ "winapi-util",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "wasi"
2401
+ version = "0.11.1+wasi-snapshot-preview1"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2404
+
2405
+ [[package]]
2406
+ name = "wasip2"
2407
+ version = "1.0.4+wasi-0.2.12"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2410
+ dependencies = [
2411
+ "wit-bindgen",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "wasm-bindgen"
2416
+ version = "0.2.128"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
2419
+ dependencies = [
2420
+ "cfg-if",
2421
+ "once_cell",
2422
+ "rustversion",
2423
+ "wasm-bindgen-macro",
2424
+ "wasm-bindgen-shared",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "wasm-bindgen-macro"
2429
+ version = "0.2.128"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
2432
+ dependencies = [
2433
+ "quote",
2434
+ "wasm-bindgen-macro-support",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "wasm-bindgen-macro-support"
2439
+ version = "0.2.128"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
2442
+ dependencies = [
2443
+ "bumpalo",
2444
+ "proc-macro2",
2445
+ "quote",
2446
+ "syn 3.0.5",
2447
+ "wasm-bindgen-shared",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "wasm-bindgen-shared"
2452
+ version = "0.2.128"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
2455
+ dependencies = [
2456
+ "unicode-ident",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "web-sys"
2461
+ version = "0.3.105"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
2464
+ dependencies = [
2465
+ "js-sys",
2466
+ "wasm-bindgen",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "web-time"
2471
+ version = "1.1.0"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2474
+ dependencies = [
2475
+ "js-sys",
2476
+ "wasm-bindgen",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "webpki-root-certs"
2481
+ version = "1.0.9"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
2484
+ dependencies = [
2485
+ "rustls-pki-types",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "widestring"
2490
+ version = "1.2.1"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
2493
+
2494
+ [[package]]
2495
+ name = "winapi-util"
2496
+ version = "0.1.11"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2499
+ dependencies = [
2500
+ "windows-sys 0.61.2",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "windows"
2505
+ version = "0.61.3"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2508
+ dependencies = [
2509
+ "windows-collections",
2510
+ "windows-core",
2511
+ "windows-future",
2512
+ "windows-link 0.1.3",
2513
+ "windows-numerics",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "windows-collections"
2518
+ version = "0.2.0"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2521
+ dependencies = [
2522
+ "windows-core",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "windows-core"
2527
+ version = "0.61.2"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2530
+ dependencies = [
2531
+ "windows-implement",
2532
+ "windows-interface",
2533
+ "windows-link 0.1.3",
2534
+ "windows-result",
2535
+ "windows-strings",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "windows-future"
2540
+ version = "0.2.1"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2543
+ dependencies = [
2544
+ "windows-core",
2545
+ "windows-link 0.1.3",
2546
+ "windows-threading",
2547
+ ]
2548
+
2549
+ [[package]]
2550
+ name = "windows-implement"
2551
+ version = "0.60.2"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2554
+ dependencies = [
2555
+ "proc-macro2",
2556
+ "quote",
2557
+ "syn 2.0.119",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "windows-interface"
2562
+ version = "0.59.3"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2565
+ dependencies = [
2566
+ "proc-macro2",
2567
+ "quote",
2568
+ "syn 2.0.119",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "windows-link"
2573
+ version = "0.1.3"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2576
+
2577
+ [[package]]
2578
+ name = "windows-link"
2579
+ version = "0.2.1"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2582
+
2583
+ [[package]]
2584
+ name = "windows-numerics"
2585
+ version = "0.2.0"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2588
+ dependencies = [
2589
+ "windows-core",
2590
+ "windows-link 0.1.3",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "windows-result"
2595
+ version = "0.3.4"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2598
+ dependencies = [
2599
+ "windows-link 0.1.3",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "windows-strings"
2604
+ version = "0.4.2"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2607
+ dependencies = [
2608
+ "windows-link 0.1.3",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "windows-sys"
2613
+ version = "0.48.0"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2616
+ dependencies = [
2617
+ "windows-targets 0.48.5",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "windows-sys"
2622
+ version = "0.52.0"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2625
+ dependencies = [
2626
+ "windows-targets 0.52.6",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "windows-sys"
2631
+ version = "0.59.0"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2634
+ dependencies = [
2635
+ "windows-targets 0.52.6",
2636
+ ]
2637
+
2638
+ [[package]]
2639
+ name = "windows-sys"
2640
+ version = "0.61.2"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2643
+ dependencies = [
2644
+ "windows-link 0.2.1",
2645
+ ]
2646
+
2647
+ [[package]]
2648
+ name = "windows-targets"
2649
+ version = "0.48.5"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2652
+ dependencies = [
2653
+ "windows_aarch64_gnullvm 0.48.5",
2654
+ "windows_aarch64_msvc 0.48.5",
2655
+ "windows_i686_gnu 0.48.5",
2656
+ "windows_i686_msvc 0.48.5",
2657
+ "windows_x86_64_gnu 0.48.5",
2658
+ "windows_x86_64_gnullvm 0.48.5",
2659
+ "windows_x86_64_msvc 0.48.5",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "windows-targets"
2664
+ version = "0.52.6"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2667
+ dependencies = [
2668
+ "windows_aarch64_gnullvm 0.52.6",
2669
+ "windows_aarch64_msvc 0.52.6",
2670
+ "windows_i686_gnu 0.52.6",
2671
+ "windows_i686_gnullvm",
2672
+ "windows_i686_msvc 0.52.6",
2673
+ "windows_x86_64_gnu 0.52.6",
2674
+ "windows_x86_64_gnullvm 0.52.6",
2675
+ "windows_x86_64_msvc 0.52.6",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "windows-threading"
2680
+ version = "0.1.0"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2683
+ dependencies = [
2684
+ "windows-link 0.1.3",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "windows_aarch64_gnullvm"
2689
+ version = "0.48.5"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2692
+
2693
+ [[package]]
2694
+ name = "windows_aarch64_gnullvm"
2695
+ version = "0.52.6"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2698
+
2699
+ [[package]]
2700
+ name = "windows_aarch64_msvc"
2701
+ version = "0.48.5"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2704
+
2705
+ [[package]]
2706
+ name = "windows_aarch64_msvc"
2707
+ version = "0.52.6"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2710
+
2711
+ [[package]]
2712
+ name = "windows_i686_gnu"
2713
+ version = "0.48.5"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2716
+
2717
+ [[package]]
2718
+ name = "windows_i686_gnu"
2719
+ version = "0.52.6"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2722
+
2723
+ [[package]]
2724
+ name = "windows_i686_gnullvm"
2725
+ version = "0.52.6"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2728
+
2729
+ [[package]]
2730
+ name = "windows_i686_msvc"
2731
+ version = "0.48.5"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2734
+
2735
+ [[package]]
2736
+ name = "windows_i686_msvc"
2737
+ version = "0.52.6"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2740
+
2741
+ [[package]]
2742
+ name = "windows_x86_64_gnu"
2743
+ version = "0.48.5"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2746
+
2747
+ [[package]]
2748
+ name = "windows_x86_64_gnu"
2749
+ version = "0.52.6"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2752
+
2753
+ [[package]]
2754
+ name = "windows_x86_64_gnullvm"
2755
+ version = "0.48.5"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2758
+
2759
+ [[package]]
2760
+ name = "windows_x86_64_gnullvm"
2761
+ version = "0.52.6"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2764
+
2765
+ [[package]]
2766
+ name = "windows_x86_64_msvc"
2767
+ version = "0.48.5"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2770
+
2771
+ [[package]]
2772
+ name = "windows_x86_64_msvc"
2773
+ version = "0.52.6"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2776
+
2777
+ [[package]]
2778
+ name = "winnow"
2779
+ version = "0.7.15"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2782
+ dependencies = [
2783
+ "memchr",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "winnow"
2788
+ version = "1.0.4"
2789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2790
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2791
+
2792
+ [[package]]
2793
+ name = "wit-bindgen"
2794
+ version = "0.57.1"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2797
+
2798
+ [[package]]
2799
+ name = "xsk-rs"
2800
+ version = "0.8.0"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "d1fef46e3505c5055082f52ada0a7f8e5dcaebdbb9eccf8e978c32382c159270"
2803
+ dependencies = [
2804
+ "bitflags 2.13.2",
2805
+ "cfg-if",
2806
+ "libc",
2807
+ "libxdp-sys",
2808
+ "log",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "xtask"
2813
+ version = "0.3.2"
2814
+ dependencies = [
2815
+ "cc",
2816
+ ]
2817
+
2818
+ [[package]]
2819
+ name = "yasna"
2820
+ version = "0.5.2"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2823
+ dependencies = [
2824
+ "time",
2825
+ ]
2826
+
2827
+ [[package]]
2828
+ name = "zerocopy"
2829
+ version = "0.8.57"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
2832
+ dependencies = [
2833
+ "zerocopy-derive",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "zerocopy-derive"
2838
+ version = "0.8.57"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
2841
+ dependencies = [
2842
+ "proc-macro2",
2843
+ "quote",
2844
+ "syn 2.0.119",
2845
+ ]
2846
+
2847
+ [[package]]
2848
+ name = "zeroize"
2849
+ version = "1.9.0"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2852
+
2853
+ [[package]]
2854
+ name = "zeromq-src"
2855
+ version = "0.2.6+4.3.4"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "fc120b771270365d5ed0dfb4baf1005f2243ae1ae83703265cb3504070f4160b"
2858
+ dependencies = [
2859
+ "cc",
2860
+ "dircpy",
2861
+ ]
2862
+
2863
+ [[package]]
2864
+ name = "zmij"
2865
+ version = "1.0.23"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
2868
+
2869
+ [[package]]
2870
+ name = "zmq"
2871
+ version = "0.10.0"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "dd3091dd571fb84a9b3e5e5c6a807d186c411c812c8618786c3c30e5349234e7"
2874
+ dependencies = [
2875
+ "bitflags 1.3.2",
2876
+ "libc",
2877
+ "zmq-sys",
2878
+ ]
2879
+
2880
+ [[package]]
2881
+ name = "zmq-sys"
2882
+ version = "0.12.0"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "8e8351dc72494b4d7f5652a681c33634063bbad58046c1689e75270908fdc864"
2885
+ dependencies = [
2886
+ "libc",
2887
+ "system-deps",
2888
+ "zeromq-src",
2889
+ ]