slim-bindings 0.3.6__tar.gz → 0.4.1__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.

Potentially problematic release.


This version of slim-bindings might be problematic. Click here for more details.

Files changed (263) hide show
  1. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/Cargo.lock +1865 -547
  2. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/Cargo.toml +52 -23
  3. slim_bindings-0.4.1/PKG-INFO +61 -0
  4. slim_bindings-0.4.1/README.md +41 -0
  5. slim_bindings-0.4.1/core/auth/CHANGELOG.md +35 -0
  6. slim_bindings-0.4.1/core/auth/Cargo.toml +40 -0
  7. slim_bindings-0.4.1/core/auth/README.md +15 -0
  8. slim_bindings-0.4.1/core/auth/src/builder.rs +766 -0
  9. slim_bindings-0.4.1/core/auth/src/errors.rs +28 -0
  10. slim_bindings-0.4.1/core/auth/src/file_watcher.rs +242 -0
  11. slim_bindings-0.4.1/core/auth/src/jwt.rs +1032 -0
  12. slim_bindings-0.4.1/core/auth/src/jwt_middleware.rs +745 -0
  13. slim_bindings-0.4.1/core/auth/src/lib.rs +12 -0
  14. slim_bindings-0.4.1/core/auth/src/resolver.rs +435 -0
  15. slim_bindings-0.4.1/core/auth/src/shared_secret.rs +89 -0
  16. slim_bindings-0.4.1/core/auth/src/testutils.rs +231 -0
  17. slim_bindings-0.4.1/core/auth/src/traits.rs +108 -0
  18. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/CHANGELOG.md +17 -0
  19. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/Cargo.toml +14 -3
  20. slim_bindings-0.4.1/core/config/README.md +19 -0
  21. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/auth/basic.rs +5 -4
  22. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/auth/bearer.rs +5 -4
  23. slim_bindings-0.4.1/core/config/src/auth/jwt.rs +343 -0
  24. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/auth.rs +14 -1
  25. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc/client.rs +382 -106
  26. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc/compression.rs +3 -3
  27. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc/errors.rs +2 -0
  28. slim_bindings-0.4.1/core/config/src/grpc/proxy.rs +242 -0
  29. slim_bindings-0.4.1/core/config/src/grpc/schema/client-config.schema.json +383 -0
  30. slim_bindings-0.4.1/core/config/src/grpc/schema/generate_schema.rs +18 -0
  31. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc/server.rs +82 -0
  32. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc.rs +1 -0
  33. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/lib.rs +2 -0
  34. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/opaque.rs +3 -1
  35. slim_bindings-0.4.1/core/config/src/testutils/tower_service.rs +45 -0
  36. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/testutils.rs +3 -2
  37. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/tls/client.rs +66 -36
  38. slim_bindings-0.4.1/core/config/src/tls/common.rs +862 -0
  39. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/tls/server.rs +50 -24
  40. slim_bindings-0.4.1/core/config/testdata/jwt/ec256-public.pem +4 -0
  41. slim_bindings-0.4.1/core/config/testdata/jwt/ec256-wrong.pem +5 -0
  42. slim_bindings-0.4.1/core/config/testdata/jwt/ec256.pem +5 -0
  43. slim_bindings-0.4.1/core/config/testdata/jwt/ec384-public.pem +5 -0
  44. slim_bindings-0.4.1/core/config/testdata/jwt/ec384-wrong.pem +6 -0
  45. slim_bindings-0.4.1/core/config/testdata/jwt/ec384.pem +6 -0
  46. slim_bindings-0.4.1/core/config/testdata/jwt/eddsa-public.pem +3 -0
  47. slim_bindings-0.4.1/core/config/testdata/jwt/eddsa-wrong.pem +3 -0
  48. slim_bindings-0.4.1/core/config/testdata/jwt/eddsa.pem +3 -0
  49. slim_bindings-0.4.1/core/config/testdata/jwt/rsa-public.pem +9 -0
  50. slim_bindings-0.4.1/core/config/testdata/jwt/rsa-wrong.pem +28 -0
  51. slim_bindings-0.4.1/core/config/testdata/jwt/rsa.pem +28 -0
  52. slim_bindings-0.4.1/core/config/tests/e2e.rs +682 -0
  53. {slim_bindings-0.3.6/core/config/tests/src → slim_bindings-0.4.1/core/config/tests}/tls.rs +123 -158
  54. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/CHANGELOG.md +14 -0
  55. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/Cargo.toml +9 -2
  56. slim_bindings-0.4.1/core/controller/README.md +20 -0
  57. slim_bindings-0.4.1/core/controller/proto/v1/controller.proto +165 -0
  58. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/src/api/gen/controller.proto.v1.rs +121 -15
  59. slim_bindings-0.4.1/core/controller/src/config.rs +83 -0
  60. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/src/lib.rs +1 -0
  61. slim_bindings-0.4.1/core/controller/src/service.rs +961 -0
  62. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/CHANGELOG.md +25 -0
  63. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/Cargo.toml +3 -1
  64. slim_bindings-0.4.1/core/datapath/README.md +21 -0
  65. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/proto/v1/pubsub.proto +44 -26
  66. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/api/gen/pubsub.proto.v1.rs +94 -42
  67. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/api.rs +6 -2
  68. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/connection.rs +17 -2
  69. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/forwarder.rs +21 -38
  70. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/lib.rs +2 -0
  71. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/message_processing.rs +84 -47
  72. slim_bindings-0.4.1/core/datapath/src/messages/encoder.rs +140 -0
  73. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/messages/utils.rs +171 -236
  74. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/messages.rs +1 -2
  75. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/tables/errors.rs +2 -2
  76. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/tables/remote_subscription_table.rs +9 -10
  77. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/tables/subscription_table.rs +255 -297
  78. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/tables.rs +6 -14
  79. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/tests/data_path_test.rs +14 -18
  80. slim_bindings-0.4.1/core/mls/CHANGELOG.md +28 -0
  81. slim_bindings-0.4.1/core/mls/Cargo.toml +26 -0
  82. slim_bindings-0.4.1/core/mls/README.md +35 -0
  83. slim_bindings-0.4.1/core/mls/src/errors.rs +46 -0
  84. slim_bindings-0.4.1/core/mls/src/identity_provider.rs +109 -0
  85. slim_bindings-0.4.1/core/mls/src/lib.rs +6 -0
  86. slim_bindings-0.4.1/core/mls/src/mls.rs +888 -0
  87. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/CHANGELOG.md +43 -0
  88. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/Cargo.toml +5 -1
  89. slim_bindings-0.4.1/core/service/README.md +22 -0
  90. slim_bindings-0.4.1/core/service/src/app.rs +1224 -0
  91. slim_bindings-0.4.1/core/service/src/channel_endpoint.rs +2145 -0
  92. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/src/errors.rs +53 -5
  93. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/src/fire_and_forget.rs +657 -215
  94. slim_bindings-0.4.1/core/service/src/interceptor.rs +124 -0
  95. slim_bindings-0.4.1/core/service/src/interceptor_mls.rs +289 -0
  96. slim_bindings-0.4.1/core/service/src/lib.rs +749 -0
  97. slim_bindings-0.4.1/core/service/src/moderator_task.rs +743 -0
  98. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/src/producer_buffer.rs +87 -18
  99. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/src/receiver_buffer.rs +46 -15
  100. slim_bindings-0.4.1/core/service/src/session.rs +591 -0
  101. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/src/streaming.rs +582 -258
  102. slim_bindings-0.4.1/core/service/src/testutils.rs +70 -0
  103. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/service/src/timer.rs +4 -0
  104. slim_bindings-0.4.1/core/service/src/transmitter.rs +105 -0
  105. slim_bindings-0.4.1/core/signal/CHANGELOG.md +37 -0
  106. slim_bindings-0.4.1/core/signal/Cargo.toml +14 -0
  107. slim_bindings-0.4.1/core/signal/README.md +19 -0
  108. slim_bindings-0.4.1/core/signal/src/lib.rs +50 -0
  109. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/tracing/CHANGELOG.md +6 -0
  110. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/tracing/Cargo.toml +1 -1
  111. slim_bindings-0.4.1/core/tracing/README.md +22 -0
  112. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/pyproject.toml +10 -12
  113. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/CHANGELOG.md +40 -0
  114. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/Cargo.toml +4 -0
  115. slim_bindings-0.4.1/python-bindings/README.md +41 -0
  116. slim_bindings-0.4.1/python-bindings/Taskfile.yml +229 -0
  117. slim_bindings-0.4.1/python-bindings/examples/CHANGELOG.md +27 -0
  118. slim_bindings-0.4.1/python-bindings/examples/Dockerfile +93 -0
  119. slim_bindings-0.4.1/python-bindings/examples/pyproject.toml +28 -0
  120. slim_bindings-0.4.1/python-bindings/examples/src/slim_bindings_examples/__init__.py +47 -0
  121. slim_bindings-0.4.1/python-bindings/examples/src/slim_bindings_examples/common.py +259 -0
  122. slim_bindings-0.4.1/python-bindings/examples/src/slim_bindings_examples/fire_and_forget.py +201 -0
  123. slim_bindings-0.4.1/python-bindings/examples/src/slim_bindings_examples/pubsub.py +150 -0
  124. slim_bindings-0.4.1/python-bindings/examples/src/slim_bindings_examples/request_reply.py +182 -0
  125. slim_bindings-0.3.6/python-bindings/examples/gateway.py → slim_bindings-0.4.1/python-bindings/examples/src/slim_bindings_examples/slim.py +13 -4
  126. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/slim_bindings/__init__.py +100 -96
  127. slim_bindings-0.4.1/python-bindings/slim_bindings/_slim_bindings.pyi +161 -0
  128. slim_bindings-0.4.1/python-bindings/slima2a/README.md +52 -0
  129. slim_bindings-0.4.1/python-bindings/slima2a/Taskfile.yaml +11 -0
  130. slim_bindings-0.4.1/python-bindings/slima2a/buf.gen.yaml +22 -0
  131. slim_bindings-0.4.1/python-bindings/slima2a/examples/echo_agent/README.md +19 -0
  132. slim_bindings-0.4.1/python-bindings/slima2a/examples/echo_agent/__init__.py +0 -0
  133. slim_bindings-0.4.1/python-bindings/slima2a/examples/echo_agent/client.py +184 -0
  134. slim_bindings-0.4.1/python-bindings/slima2a/examples/echo_agent/echo_agent.py +3 -0
  135. slim_bindings-0.4.1/python-bindings/slima2a/examples/echo_agent/echo_agent_executor.py +43 -0
  136. slim_bindings-0.4.1/python-bindings/slima2a/examples/echo_agent/server.py +93 -0
  137. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/README.md +55 -0
  138. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/__init__.py +0 -0
  139. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/agent.py +88 -0
  140. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/agent_executor.py +54 -0
  141. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/client.py +107 -0
  142. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/config.json +8 -0
  143. slim_bindings-0.4.1/python-bindings/slima2a/examples/travel_planner_agent/server.py +68 -0
  144. slim_bindings-0.4.1/python-bindings/slima2a/pyproject.toml +33 -0
  145. slim_bindings-0.4.1/python-bindings/slima2a/slima2a/__init__.py +0 -0
  146. slim_bindings-0.4.1/python-bindings/slima2a/slima2a/client_transport.py +202 -0
  147. slim_bindings-0.4.1/python-bindings/slima2a/slima2a/handler.py +370 -0
  148. slim_bindings-0.4.1/python-bindings/slima2a/slima2a/py.typed +0 -0
  149. slim_bindings-0.4.1/python-bindings/slima2a/slima2a/types/__init__.py +0 -0
  150. slim_bindings-0.4.1/python-bindings/slima2a/slima2a/types/a2a_pb2_srpc.py +189 -0
  151. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/src/lib.rs +10 -4
  152. slim_bindings-0.4.1/python-bindings/src/pyidentity.rs +350 -0
  153. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/src/pyservice.rs +158 -156
  154. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/src/pysession.rs +55 -44
  155. slim_bindings-0.4.1/python-bindings/src/utils.rs +131 -0
  156. slim_bindings-0.4.1/python-bindings/srpc/README.md +5 -0
  157. slim_bindings-0.4.1/python-bindings/srpc/pyproject.toml +43 -0
  158. slim_bindings-0.4.1/python-bindings/srpc/srpc/__init__.py +29 -0
  159. slim_bindings-0.4.1/python-bindings/srpc/srpc/channel.py +364 -0
  160. slim_bindings-0.4.1/python-bindings/srpc/srpc/common.py +200 -0
  161. slim_bindings-0.4.1/python-bindings/srpc/srpc/context.py +32 -0
  162. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/buf.gen.yaml +21 -0
  163. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/client.py +60 -0
  164. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/example.proto +20 -0
  165. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/server.py +102 -0
  166. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/types/example_pb2.py +41 -0
  167. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/types/example_pb2.pyi +21 -0
  168. slim_bindings-0.4.1/python-bindings/srpc/srpc/examples/simple/types/example_pb2_srpc.py +98 -0
  169. slim_bindings-0.4.1/python-bindings/srpc/srpc/py.typed +0 -0
  170. slim_bindings-0.4.1/python-bindings/srpc/srpc/rpc.py +90 -0
  171. slim_bindings-0.4.1/python-bindings/srpc/srpc/server.py +242 -0
  172. slim_bindings-0.4.1/python-bindings/tests/common.py +24 -0
  173. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/tests/conftest.py +10 -1
  174. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/tests/test_bindings.py +49 -78
  175. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/tests/test_fire_forget.py +21 -15
  176. slim_bindings-0.4.1/python-bindings/tests/test_identity.py +168 -0
  177. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/tests/test_pubsub.py +58 -43
  178. slim_bindings-0.4.1/python-bindings/tests/test_request_reply.py +94 -0
  179. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/tests/test_streaming.py +22 -17
  180. slim_bindings-0.4.1/python-bindings/tests/testdata/ec256-public.pem +4 -0
  181. slim_bindings-0.4.1/python-bindings/tests/testdata/ec256.pem +5 -0
  182. slim_bindings-0.4.1/python-bindings/tests/testdata/ec384-public.pem +5 -0
  183. slim_bindings-0.4.1/python-bindings/tests/testdata/ec384.pem +6 -0
  184. slim_bindings-0.4.1/python-bindings/tests/testdata/eddsa-public.pem +3 -0
  185. slim_bindings-0.4.1/python-bindings/tests/testdata/eddsa.pem +3 -0
  186. slim_bindings-0.4.1/python-bindings/tests/testdata/rsa-public.pem +9 -0
  187. slim_bindings-0.4.1/python-bindings/tests/testdata/rsa.pem +28 -0
  188. slim_bindings-0.4.1/python-bindings/uv.lock +1651 -0
  189. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/slim_bindings/__init__.py +100 -96
  190. slim_bindings-0.4.1/slim_bindings/_slim_bindings.pyi +161 -0
  191. slim_bindings-0.3.6/PKG-INFO +0 -930
  192. slim_bindings-0.3.6/README.md +0 -910
  193. slim_bindings-0.3.6/core/config/README.md +0 -90
  194. slim_bindings-0.3.6/core/config/src/tls/common.rs +0 -256
  195. slim_bindings-0.3.6/core/config/tests/src/e2e.rs +0 -299
  196. slim_bindings-0.3.6/core/controller/README.md +0 -121
  197. slim_bindings-0.3.6/core/controller/proto/v1/controller.proto +0 -85
  198. slim_bindings-0.3.6/core/controller/src/service.rs +0 -484
  199. slim_bindings-0.3.6/core/datapath/README.md +0 -116
  200. slim_bindings-0.3.6/core/datapath/src/messages/encoder.rs +0 -206
  201. slim_bindings-0.3.6/core/service/README.md +0 -238
  202. slim_bindings-0.3.6/core/service/src/lib.rs +0 -1261
  203. slim_bindings-0.3.6/core/service/src/request_response.rs +0 -406
  204. slim_bindings-0.3.6/core/service/src/session.rs +0 -368
  205. slim_bindings-0.3.6/core/service/src/session_layer.rs +0 -516
  206. slim_bindings-0.3.6/core/tracing/README.md +0 -294
  207. slim_bindings-0.3.6/python-bindings/README.md +0 -910
  208. slim_bindings-0.3.6/python-bindings/Taskfile.yml +0 -226
  209. slim_bindings-0.3.6/python-bindings/examples/common.py +0 -30
  210. slim_bindings-0.3.6/python-bindings/examples/fire-and-forget.py +0 -170
  211. slim_bindings-0.3.6/python-bindings/examples/pubsub.py +0 -173
  212. slim_bindings-0.3.6/python-bindings/examples/request-reply.py +0 -155
  213. slim_bindings-0.3.6/python-bindings/examples/streaming.py +0 -172
  214. slim_bindings-0.3.6/python-bindings/slim_bindings/_slim_bindings.pyi +0 -104
  215. slim_bindings-0.3.6/python-bindings/src/utils.rs +0 -77
  216. slim_bindings-0.3.6/python-bindings/tests/test_request_reply.py +0 -173
  217. slim_bindings-0.3.6/python-bindings/uv.lock +0 -322
  218. slim_bindings-0.3.6/slim_bindings/_slim_bindings.pyi +0 -104
  219. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/build.rs +0 -0
  220. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/proto/hello.proto +0 -0
  221. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/component/configuration.rs +0 -0
  222. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/component/id.rs +0 -0
  223. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/component.rs +0 -0
  224. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc/headers_middleware.rs +0 -0
  225. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/grpc/helloworld.rs +0 -0
  226. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/provider/env.rs +0 -0
  227. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/provider/file.rs +0 -0
  228. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/provider/lib.rs +0 -0
  229. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/provider.rs +0 -0
  230. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/testutils/helloworld.rs +0 -0
  231. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/src/tls.rs +0 -0
  232. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/grpc/ca.crt +0 -0
  233. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/grpc/server.crt +0 -0
  234. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/grpc/server.key +0 -0
  235. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/testfile +0 -0
  236. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/ca-1.crt +0 -0
  237. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/ca-2.crt +0 -0
  238. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/ca-bad.crt +0 -0
  239. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/client-1.crt +0 -0
  240. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/client-1.key +0 -0
  241. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/client-2.crt +0 -0
  242. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/client-2.key +0 -0
  243. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/server-1.crt +0 -0
  244. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/server-1.key +0 -0
  245. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/server-2.crt +0 -0
  246. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/config/testdata/tls/server-2.key +0 -0
  247. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/build.rs +0 -0
  248. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/src/api/proto.rs +0 -0
  249. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/src/api.rs +0 -0
  250. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/controller/src/errors.rs +0 -0
  251. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/benches/pool_benchmark.rs +0 -0
  252. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/build.rs +0 -0
  253. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/api/proto.rs +0 -0
  254. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/errors.rs +0 -0
  255. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/tables/connection_table.rs +0 -0
  256. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/datapath/src/tables/pool.rs +0 -0
  257. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/tracing/src/lib.rs +0 -0
  258. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/core/tracing/src/utils.rs +0 -0
  259. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/BUILD.md +0 -0
  260. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/WINDOWS.md +0 -0
  261. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/build.rs +0 -0
  262. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/src/bin/stub_gen.rs +0 -0
  263. {slim_bindings-0.3.6 → slim_bindings-0.4.1}/python-bindings/src/build_info.rs +0 -0
@@ -13,13 +13,23 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "adler2"
16
- version = "2.0.0"
16
+ version = "2.0.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "agntcy-protoc-srpc-plugin"
22
+ version = "0.1.0"
23
+ dependencies = [
24
+ "anyhow",
25
+ "heck 0.5.0",
26
+ "prost 0.14.1",
27
+ "prost-types 0.14.1",
28
+ ]
19
29
 
20
30
  [[package]]
21
31
  name = "agntcy-slim"
22
- version = "0.3.15"
32
+ version = "0.4.0"
23
33
  dependencies = [
24
34
  "agntcy-slim-config",
25
35
  "agntcy-slim-service",
@@ -32,56 +42,97 @@ dependencies = [
32
42
  "num_cpus",
33
43
  "serde",
34
44
  "serde_yaml",
35
- "thiserror",
45
+ "thiserror 2.0.12",
46
+ "tokio",
47
+ "tracing",
48
+ "tracing-test",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "agntcy-slim-auth"
53
+ version = "0.2.0"
54
+ dependencies = [
55
+ "async-trait",
56
+ "aws-lc-rs",
57
+ "base64 0.22.1",
58
+ "futures",
59
+ "headers",
60
+ "http 1.3.1",
61
+ "jsonwebtoken-aws-lc",
62
+ "notify",
63
+ "parking_lot",
64
+ "pin-project",
65
+ "reqwest",
66
+ "rustls",
67
+ "schemars",
68
+ "serde",
69
+ "serde_json",
70
+ "serde_yaml",
71
+ "thiserror 2.0.12",
36
72
  "tokio",
73
+ "tokio-util",
74
+ "tower 0.5.2",
75
+ "tower-layer",
76
+ "tower-service",
37
77
  "tracing",
38
78
  "tracing-test",
79
+ "url",
80
+ "wiremock",
39
81
  ]
40
82
 
41
83
  [[package]]
42
84
  name = "agntcy-slim-bindings"
43
85
  version = "0.1.0"
44
86
  dependencies = [
87
+ "agntcy-slim-auth",
45
88
  "agntcy-slim-config",
46
89
  "agntcy-slim-datapath",
47
90
  "agntcy-slim-service",
48
91
  "agntcy-slim-tracing",
92
+ "async-trait",
49
93
  "pyo3",
50
94
  "pyo3-async-runtimes",
51
95
  "pyo3-stub-gen",
52
96
  "rand 0.9.1",
97
+ "serde",
53
98
  "serde-pyobject",
54
99
  "tokio",
55
100
  ]
56
101
 
57
102
  [[package]]
58
103
  name = "agntcy-slim-config"
59
- version = "0.1.8"
104
+ version = "0.2.0"
60
105
  dependencies = [
106
+ "agntcy-slim-auth",
107
+ "base64 0.22.1",
108
+ "drain",
61
109
  "duration-str",
62
110
  "futures",
63
- "http",
111
+ "http 1.3.1",
64
112
  "hyper-rustls",
65
113
  "hyper-util",
66
114
  "lazy_static",
67
- "prost",
115
+ "parking_lot",
116
+ "prost 0.13.5",
68
117
  "protoc-bin-vendored",
118
+ "rand 0.9.1",
69
119
  "regex",
70
120
  "rustls",
71
121
  "rustls-native-certs",
72
122
  "rustls-pki-types",
123
+ "schemars",
73
124
  "serde",
74
125
  "serde_json",
75
126
  "serde_yaml",
76
- "thiserror",
127
+ "thiserror 2.0.12",
77
128
  "tokio",
78
- "tonic 0.13.0",
129
+ "tokio-util",
130
+ "tonic 0.13.1",
79
131
  "tonic-build",
80
132
  "tonic-tls",
81
133
  "tower 0.5.2",
82
134
  "tower-http",
83
135
  "tower-layer",
84
- "tower-reqwest",
85
136
  "tower-service",
86
137
  "tracing",
87
138
  "tracing-test",
@@ -89,50 +140,75 @@ dependencies = [
89
140
 
90
141
  [[package]]
91
142
  name = "agntcy-slim-controller"
92
- version = "0.1.1"
143
+ version = "0.2.0"
93
144
  dependencies = [
94
145
  "agntcy-slim-config",
95
146
  "agntcy-slim-datapath",
96
- "bytes",
97
- "h2",
147
+ "agntcy-slim-signal",
148
+ "agntcy-slim-tracing",
149
+ "drain",
150
+ "h2 0.4.10",
98
151
  "parking_lot",
99
- "prost",
152
+ "prost 0.13.5",
100
153
  "protoc-bin-vendored",
101
- "thiserror",
154
+ "serde",
155
+ "serde_json",
156
+ "thiserror 2.0.12",
102
157
  "tokio",
103
158
  "tokio-stream",
104
159
  "tokio-util",
105
- "tonic 0.13.0",
160
+ "tonic 0.13.1",
106
161
  "tonic-build",
107
162
  "tracing",
163
+ "tracing-test",
108
164
  "uuid",
109
165
  ]
110
166
 
111
167
  [[package]]
112
168
  name = "agntcy-slim-datapath"
113
- version = "0.7.0"
169
+ version = "0.8.0"
114
170
  dependencies = [
115
171
  "agntcy-slim-config",
116
172
  "agntcy-slim-tracing",
173
+ "bincode",
117
174
  "bit-vec",
118
175
  "bytes",
119
176
  "criterion",
120
177
  "drain",
121
- "h2",
178
+ "h2 0.4.10",
122
179
  "opentelemetry",
123
180
  "parking_lot",
124
- "prost",
181
+ "prost 0.13.5",
125
182
  "protoc-bin-vendored",
126
183
  "rand 0.9.1",
127
- "thiserror",
184
+ "thiserror 2.0.12",
128
185
  "tokio",
129
186
  "tokio-stream",
130
187
  "tokio-util",
131
- "tonic 0.13.0",
188
+ "tonic 0.13.1",
132
189
  "tonic-build",
133
190
  "tracing",
134
191
  "tracing-opentelemetry",
135
192
  "tracing-test",
193
+ "twox-hash",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "agntcy-slim-mls"
198
+ version = "0.1.0"
199
+ dependencies = [
200
+ "agntcy-slim-auth",
201
+ "agntcy-slim-datapath",
202
+ "hex",
203
+ "mls-rs",
204
+ "mls-rs-core",
205
+ "mls-rs-crypto-awslc",
206
+ "serde",
207
+ "serde_json",
208
+ "tempfile",
209
+ "thiserror 2.0.12",
210
+ "tokio",
211
+ "tracing",
136
212
  ]
137
213
 
138
214
  [[package]]
@@ -146,27 +222,31 @@ dependencies = [
146
222
 
147
223
  [[package]]
148
224
  name = "agntcy-slim-service"
149
- version = "0.4.2"
225
+ version = "0.5.0"
150
226
  dependencies = [
227
+ "agntcy-slim-auth",
151
228
  "agntcy-slim-config",
152
229
  "agntcy-slim-controller",
153
230
  "agntcy-slim-datapath",
231
+ "agntcy-slim-mls",
154
232
  "async-trait",
233
+ "bincode",
234
+ "dirs",
155
235
  "drain",
156
236
  "parking_lot",
157
237
  "rand 0.9.1",
158
238
  "serde",
159
- "thiserror",
239
+ "thiserror 2.0.12",
160
240
  "tokio",
161
241
  "tokio-util",
162
- "tonic 0.13.0",
242
+ "tonic 0.13.1",
163
243
  "tracing",
164
244
  "tracing-test",
165
245
  ]
166
246
 
167
247
  [[package]]
168
248
  name = "agntcy-slim-signal"
169
- version = "0.1.2"
249
+ version = "0.1.3"
170
250
  dependencies = [
171
251
  "tokio",
172
252
  "tracing",
@@ -174,7 +254,7 @@ dependencies = [
174
254
 
175
255
  [[package]]
176
256
  name = "agntcy-slim-tracing"
177
- version = "0.2.1"
257
+ version = "0.2.2"
178
258
  dependencies = [
179
259
  "agntcy-slim-config",
180
260
  "once_cell",
@@ -184,7 +264,7 @@ dependencies = [
184
264
  "opentelemetry-stdout",
185
265
  "opentelemetry_sdk",
186
266
  "serde",
187
- "thiserror",
267
+ "thiserror 2.0.12",
188
268
  "tracing",
189
269
  "tracing-opentelemetry",
190
270
  "tracing-subscriber",
@@ -223,9 +303,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
223
303
 
224
304
  [[package]]
225
305
  name = "anstream"
226
- version = "0.6.18"
306
+ version = "0.6.19"
227
307
  source = "registry+https://github.com/rust-lang/crates.io-index"
228
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
308
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
229
309
  dependencies = [
230
310
  "anstyle",
231
311
  "anstyle-parse",
@@ -238,36 +318,36 @@ dependencies = [
238
318
 
239
319
  [[package]]
240
320
  name = "anstyle"
241
- version = "1.0.10"
321
+ version = "1.0.11"
242
322
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
323
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
244
324
 
245
325
  [[package]]
246
326
  name = "anstyle-parse"
247
- version = "0.2.6"
327
+ version = "0.2.7"
248
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
329
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
250
330
  dependencies = [
251
331
  "utf8parse",
252
332
  ]
253
333
 
254
334
  [[package]]
255
335
  name = "anstyle-query"
256
- version = "1.1.2"
336
+ version = "1.1.3"
257
337
  source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
338
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
259
339
  dependencies = [
260
340
  "windows-sys 0.59.0",
261
341
  ]
262
342
 
263
343
  [[package]]
264
344
  name = "anstyle-wincon"
265
- version = "3.0.7"
345
+ version = "3.0.9"
266
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
267
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
347
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
268
348
  dependencies = [
269
349
  "anstyle",
270
- "once_cell",
350
+ "once_cell_polyfill",
271
351
  "windows-sys 0.59.0",
272
352
  ]
273
353
 
@@ -283,6 +363,27 @@ version = "0.7.6"
283
363
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
364
  checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
285
365
 
366
+ [[package]]
367
+ name = "assert-json-diff"
368
+ version = "2.0.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
371
+ dependencies = [
372
+ "serde",
373
+ "serde_json",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "async-channel"
378
+ version = "1.9.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
381
+ dependencies = [
382
+ "concurrent-queue",
383
+ "event-listener",
384
+ "futures-core",
385
+ ]
386
+
286
387
  [[package]]
287
388
  name = "async-stream"
288
389
  version = "0.3.6"
@@ -302,7 +403,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
302
403
  dependencies = [
303
404
  "proc-macro2",
304
405
  "quote",
305
- "syn",
406
+ "syn 2.0.103",
306
407
  ]
307
408
 
308
409
  [[package]]
@@ -313,7 +414,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
313
414
  dependencies = [
314
415
  "proc-macro2",
315
416
  "quote",
316
- "syn",
417
+ "syn 2.0.103",
317
418
  ]
318
419
 
319
420
  [[package]]
@@ -324,25 +425,26 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
324
425
 
325
426
  [[package]]
326
427
  name = "autocfg"
327
- version = "1.4.0"
428
+ version = "1.5.0"
328
429
  source = "registry+https://github.com/rust-lang/crates.io-index"
329
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
430
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
330
431
 
331
432
  [[package]]
332
433
  name = "aws-lc-rs"
333
- version = "1.13.0"
434
+ version = "1.13.1"
334
435
  source = "registry+https://github.com/rust-lang/crates.io-index"
335
- checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
436
+ checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
336
437
  dependencies = [
337
438
  "aws-lc-sys",
439
+ "untrusted 0.7.1",
338
440
  "zeroize",
339
441
  ]
340
442
 
341
443
  [[package]]
342
444
  name = "aws-lc-sys"
343
- version = "0.28.2"
445
+ version = "0.29.0"
344
446
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
447
+ checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
346
448
  dependencies = [
347
449
  "bindgen",
348
450
  "cc",
@@ -353,15 +455,15 @@ dependencies = [
353
455
 
354
456
  [[package]]
355
457
  name = "axum"
356
- version = "0.8.3"
458
+ version = "0.8.4"
357
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
358
- checksum = "de45108900e1f9b9242f7f2e254aa3e2c029c921c258fe9e6b4217eeebd54288"
460
+ checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
359
461
  dependencies = [
360
462
  "axum-core",
361
463
  "bytes",
362
464
  "futures-util",
363
- "http",
364
- "http-body",
465
+ "http 1.3.1",
466
+ "http-body 1.0.1",
365
467
  "http-body-util",
366
468
  "itoa",
367
469
  "matchit",
@@ -385,8 +487,8 @@ checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
385
487
  dependencies = [
386
488
  "bytes",
387
489
  "futures-core",
388
- "http",
389
- "http-body",
490
+ "http 1.3.1",
491
+ "http-body 1.0.1",
390
492
  "http-body-util",
391
493
  "mime",
392
494
  "pin-project-lite",
@@ -398,9 +500,9 @@ dependencies = [
398
500
 
399
501
  [[package]]
400
502
  name = "backtrace"
401
- version = "0.3.74"
503
+ version = "0.3.75"
402
504
  source = "registry+https://github.com/rust-lang/crates.io-index"
403
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
505
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
404
506
  dependencies = [
405
507
  "addr2line",
406
508
  "cfg-if",
@@ -411,32 +513,64 @@ dependencies = [
411
513
  "windows-targets 0.52.6",
412
514
  ]
413
515
 
516
+ [[package]]
517
+ name = "base64"
518
+ version = "0.13.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
521
+
522
+ [[package]]
523
+ name = "base64"
524
+ version = "0.21.7"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
527
+
414
528
  [[package]]
415
529
  name = "base64"
416
530
  version = "0.22.1"
417
531
  source = "registry+https://github.com/rust-lang/crates.io-index"
418
532
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
419
533
 
534
+ [[package]]
535
+ name = "bincode"
536
+ version = "2.0.1"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
539
+ dependencies = [
540
+ "bincode_derive",
541
+ "serde",
542
+ "unty",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "bincode_derive"
547
+ version = "2.0.1"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
550
+ dependencies = [
551
+ "virtue",
552
+ ]
553
+
420
554
  [[package]]
421
555
  name = "bindgen"
422
556
  version = "0.69.5"
423
557
  source = "registry+https://github.com/rust-lang/crates.io-index"
424
558
  checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
425
559
  dependencies = [
426
- "bitflags",
560
+ "bitflags 2.9.1",
427
561
  "cexpr",
428
562
  "clang-sys",
429
563
  "itertools 0.12.1",
430
564
  "lazy_static",
431
565
  "lazycell",
432
566
  "log",
433
- "prettyplease",
567
+ "prettyplease 0.2.34",
434
568
  "proc-macro2",
435
569
  "quote",
436
570
  "regex",
437
571
  "rustc-hash 1.1.0",
438
572
  "shlex",
439
- "syn",
573
+ "syn 2.0.103",
440
574
  "which",
441
575
  ]
442
576
 
@@ -448,15 +582,30 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
448
582
 
449
583
  [[package]]
450
584
  name = "bitflags"
451
- version = "2.9.0"
585
+ version = "1.3.2"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
588
+
589
+ [[package]]
590
+ name = "bitflags"
591
+ version = "2.9.1"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
594
+
595
+ [[package]]
596
+ name = "block-buffer"
597
+ version = "0.10.4"
452
598
  source = "registry+https://github.com/rust-lang/crates.io-index"
453
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
599
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
600
+ dependencies = [
601
+ "generic-array",
602
+ ]
454
603
 
455
604
  [[package]]
456
605
  name = "bumpalo"
457
- version = "3.17.0"
606
+ version = "3.18.1"
458
607
  source = "registry+https://github.com/rust-lang/crates.io-index"
459
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
608
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
460
609
 
461
610
  [[package]]
462
611
  name = "bytes"
@@ -472,9 +621,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
472
621
 
473
622
  [[package]]
474
623
  name = "cc"
475
- version = "1.2.19"
624
+ version = "1.2.27"
476
625
  source = "registry+https://github.com/rust-lang/crates.io-index"
477
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
626
+ checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
478
627
  dependencies = [
479
628
  "jobserver",
480
629
  "libc",
@@ -492,15 +641,15 @@ dependencies = [
492
641
 
493
642
  [[package]]
494
643
  name = "cfg-if"
495
- version = "1.0.0"
644
+ version = "1.0.1"
496
645
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
646
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
498
647
 
499
648
  [[package]]
500
649
  name = "chrono"
501
- version = "0.4.40"
650
+ version = "0.4.41"
502
651
  source = "registry+https://github.com/rust-lang/crates.io-index"
503
- checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
652
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
504
653
  dependencies = [
505
654
  "android-tzdata",
506
655
  "iana-time-zone",
@@ -550,9 +699,9 @@ dependencies = [
550
699
 
551
700
  [[package]]
552
701
  name = "clap"
553
- version = "4.5.37"
702
+ version = "4.5.40"
554
703
  source = "registry+https://github.com/rust-lang/crates.io-index"
555
- checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
704
+ checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
556
705
  dependencies = [
557
706
  "clap_builder",
558
707
  "clap_derive",
@@ -560,9 +709,9 @@ dependencies = [
560
709
 
561
710
  [[package]]
562
711
  name = "clap_builder"
563
- version = "4.5.37"
712
+ version = "4.5.40"
564
713
  source = "registry+https://github.com/rust-lang/crates.io-index"
565
- checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
714
+ checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
566
715
  dependencies = [
567
716
  "anstream",
568
717
  "anstyle",
@@ -572,21 +721,21 @@ dependencies = [
572
721
 
573
722
  [[package]]
574
723
  name = "clap_derive"
575
- version = "4.5.32"
724
+ version = "4.5.40"
576
725
  source = "registry+https://github.com/rust-lang/crates.io-index"
577
- checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
726
+ checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
578
727
  dependencies = [
579
- "heck",
728
+ "heck 0.5.0",
580
729
  "proc-macro2",
581
730
  "quote",
582
- "syn",
731
+ "syn 2.0.103",
583
732
  ]
584
733
 
585
734
  [[package]]
586
735
  name = "clap_lex"
587
- version = "0.7.4"
736
+ version = "0.7.5"
588
737
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
738
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
590
739
 
591
740
  [[package]]
592
741
  name = "cmake"
@@ -599,9 +748,18 @@ dependencies = [
599
748
 
600
749
  [[package]]
601
750
  name = "colorchoice"
602
- version = "1.0.3"
751
+ version = "1.0.4"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
754
+
755
+ [[package]]
756
+ name = "concurrent-queue"
757
+ version = "2.5.0"
603
758
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
759
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
760
+ dependencies = [
761
+ "crossbeam-utils",
762
+ ]
605
763
 
606
764
  [[package]]
607
765
  name = "console"
@@ -618,9 +776,19 @@ dependencies = [
618
776
 
619
777
  [[package]]
620
778
  name = "core-foundation"
621
- version = "0.10.0"
779
+ version = "0.9.4"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
782
+ dependencies = [
783
+ "core-foundation-sys",
784
+ "libc",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "core-foundation"
789
+ version = "0.10.1"
622
790
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
- checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
791
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
624
792
  dependencies = [
625
793
  "core-foundation-sys",
626
794
  "libc",
@@ -632,6 +800,15 @@ version = "0.8.7"
632
800
  source = "registry+https://github.com/rust-lang/crates.io-index"
633
801
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
634
802
 
803
+ [[package]]
804
+ name = "cpufeatures"
805
+ version = "0.2.17"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
808
+ dependencies = [
809
+ "libc",
810
+ ]
811
+
635
812
  [[package]]
636
813
  name = "criterion"
637
814
  version = "0.5.1"
@@ -668,6 +845,12 @@ dependencies = [
668
845
  "itertools 0.10.5",
669
846
  ]
670
847
 
848
+ [[package]]
849
+ name = "critical-section"
850
+ version = "1.2.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
853
+
671
854
  [[package]]
672
855
  name = "crossbeam-deque"
673
856
  version = "0.8.6"
@@ -699,6 +882,79 @@ version = "0.2.3"
699
882
  source = "registry+https://github.com/rust-lang/crates.io-index"
700
883
  checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
701
884
 
885
+ [[package]]
886
+ name = "crypto-common"
887
+ version = "0.1.6"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
890
+ dependencies = [
891
+ "generic-array",
892
+ "typenum",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "darling"
897
+ version = "0.20.11"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
900
+ dependencies = [
901
+ "darling_core",
902
+ "darling_macro",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "darling_core"
907
+ version = "0.20.11"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
910
+ dependencies = [
911
+ "fnv",
912
+ "ident_case",
913
+ "proc-macro2",
914
+ "quote",
915
+ "strsim",
916
+ "syn 2.0.103",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "darling_macro"
921
+ version = "0.20.11"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
924
+ dependencies = [
925
+ "darling_core",
926
+ "quote",
927
+ "syn 2.0.103",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "deadpool"
932
+ version = "0.9.5"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
935
+ dependencies = [
936
+ "async-trait",
937
+ "deadpool-runtime",
938
+ "num_cpus",
939
+ "retain_mut",
940
+ "tokio",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "deadpool-runtime"
945
+ version = "0.1.4"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
948
+
949
+ [[package]]
950
+ name = "debug_tree"
951
+ version = "0.4.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "2d1ec383f2d844902d3c34e4253ba11ae48513cdaddc565cf1a6518db09a8e57"
954
+ dependencies = [
955
+ "once_cell",
956
+ ]
957
+
702
958
  [[package]]
703
959
  name = "deranged"
704
960
  version = "0.4.0"
@@ -708,6 +964,37 @@ dependencies = [
708
964
  "powerfmt",
709
965
  ]
710
966
 
967
+ [[package]]
968
+ name = "digest"
969
+ version = "0.10.7"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
972
+ dependencies = [
973
+ "block-buffer",
974
+ "crypto-common",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "dirs"
979
+ version = "5.0.1"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
982
+ dependencies = [
983
+ "dirs-sys",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "dirs-sys"
988
+ version = "0.4.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
991
+ dependencies = [
992
+ "libc",
993
+ "option-ext",
994
+ "redox_users",
995
+ "windows-sys 0.48.0",
996
+ ]
997
+
711
998
  [[package]]
712
999
  name = "displaydoc"
713
1000
  version = "0.2.5"
@@ -716,7 +1003,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
716
1003
  dependencies = [
717
1004
  "proc-macro2",
718
1005
  "quote",
719
- "syn",
1006
+ "syn 2.0.103",
720
1007
  ]
721
1008
 
722
1009
  [[package]]
@@ -744,11 +1031,17 @@ dependencies = [
744
1031
  "chrono",
745
1032
  "rust_decimal",
746
1033
  "serde",
747
- "thiserror",
1034
+ "thiserror 2.0.12",
748
1035
  "time",
749
1036
  "winnow 0.6.26",
750
1037
  ]
751
1038
 
1039
+ [[package]]
1040
+ name = "dyn-clone"
1041
+ version = "1.0.19"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
1044
+
752
1045
  [[package]]
753
1046
  name = "either"
754
1047
  version = "1.15.0"
@@ -761,6 +1054,15 @@ version = "1.0.0"
761
1054
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
1055
  checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
763
1056
 
1057
+ [[package]]
1058
+ name = "encoding_rs"
1059
+ version = "0.8.35"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1062
+ dependencies = [
1063
+ "cfg-if",
1064
+ ]
1065
+
764
1066
  [[package]]
765
1067
  name = "equivalent"
766
1068
  version = "1.0.2"
@@ -769,59 +1071,130 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
769
1071
 
770
1072
  [[package]]
771
1073
  name = "errno"
772
- version = "0.3.11"
1074
+ version = "0.3.12"
773
1075
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1076
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
775
1077
  dependencies = [
776
1078
  "libc",
777
1079
  "windows-sys 0.59.0",
778
1080
  ]
779
1081
 
780
1082
  [[package]]
781
- name = "fastrand"
782
- version = "2.3.0"
1083
+ name = "event-listener"
1084
+ version = "2.5.3"
783
1085
  source = "registry+https://github.com/rust-lang/crates.io-index"
784
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1086
+ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
785
1087
 
786
1088
  [[package]]
787
- name = "fixedbitset"
788
- version = "0.5.7"
1089
+ name = "ext-trait"
1090
+ version = "1.0.1"
789
1091
  source = "registry+https://github.com/rust-lang/crates.io-index"
790
- checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1092
+ checksum = "d772df1c1a777963712fb68e014235e80863d6a91a85c4e06ba2d16243a310e5"
1093
+ dependencies = [
1094
+ "ext-trait-proc_macros",
1095
+ ]
791
1096
 
792
1097
  [[package]]
793
- name = "fnv"
794
- version = "1.0.7"
1098
+ name = "ext-trait-proc_macros"
1099
+ version = "1.0.1"
795
1100
  source = "registry+https://github.com/rust-lang/crates.io-index"
796
- checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1101
+ checksum = "1ab7934152eaf26aa5aa9f7371408ad5af4c31357073c9e84c3b9d7f11ad639a"
1102
+ dependencies = [
1103
+ "proc-macro2",
1104
+ "quote",
1105
+ "syn 1.0.109",
1106
+ ]
797
1107
 
798
1108
  [[package]]
799
- name = "form_urlencoded"
800
- version = "1.2.1"
1109
+ name = "extension-traits"
1110
+ version = "1.0.1"
801
1111
  source = "registry+https://github.com/rust-lang/crates.io-index"
802
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1112
+ checksum = "a296e5a895621edf9fa8329c83aa1cb69a964643e36cf54d8d7a69b789089537"
803
1113
  dependencies = [
804
- "percent-encoding",
1114
+ "ext-trait",
805
1115
  ]
806
1116
 
807
1117
  [[package]]
808
- name = "fs_extra"
809
- version = "1.3.0"
1118
+ name = "extern-c"
1119
+ version = "0.1.0"
810
1120
  source = "registry+https://github.com/rust-lang/crates.io-index"
811
- checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1121
+ checksum = "320bea982e85d42441eb25c49b41218e7eaa2657e8f90bc4eca7437376751e23"
812
1122
 
813
1123
  [[package]]
814
- name = "futures"
815
- version = "0.3.31"
1124
+ name = "fastrand"
1125
+ version = "1.9.0"
816
1126
  source = "registry+https://github.com/rust-lang/crates.io-index"
817
- checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1127
+ checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
818
1128
  dependencies = [
819
- "futures-channel",
820
- "futures-core",
821
- "futures-executor",
822
- "futures-io",
823
- "futures-sink",
824
- "futures-task",
1129
+ "instant",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "fastrand"
1134
+ version = "2.3.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1137
+
1138
+ [[package]]
1139
+ name = "filetime"
1140
+ version = "0.2.25"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
1143
+ dependencies = [
1144
+ "cfg-if",
1145
+ "libc",
1146
+ "libredox",
1147
+ "windows-sys 0.59.0",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "fixedbitset"
1152
+ version = "0.5.7"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1155
+
1156
+ [[package]]
1157
+ name = "fnv"
1158
+ version = "1.0.7"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1161
+
1162
+ [[package]]
1163
+ name = "form_urlencoded"
1164
+ version = "1.2.1"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1167
+ dependencies = [
1168
+ "percent-encoding",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "fs_extra"
1173
+ version = "1.3.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1176
+
1177
+ [[package]]
1178
+ name = "fsevent-sys"
1179
+ version = "4.1.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
1182
+ dependencies = [
1183
+ "libc",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "futures"
1188
+ version = "0.3.31"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1191
+ dependencies = [
1192
+ "futures-channel",
1193
+ "futures-core",
1194
+ "futures-executor",
1195
+ "futures-io",
1196
+ "futures-sink",
1197
+ "futures-task",
825
1198
  "futures-util",
826
1199
  ]
827
1200
 
@@ -858,6 +1231,21 @@ version = "0.3.31"
858
1231
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
1232
  checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
860
1233
 
1234
+ [[package]]
1235
+ name = "futures-lite"
1236
+ version = "1.13.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
1239
+ dependencies = [
1240
+ "fastrand 1.9.0",
1241
+ "futures-core",
1242
+ "futures-io",
1243
+ "memchr",
1244
+ "parking",
1245
+ "pin-project-lite",
1246
+ "waker-fn",
1247
+ ]
1248
+
861
1249
  [[package]]
862
1250
  name = "futures-macro"
863
1251
  version = "0.3.31"
@@ -866,7 +1254,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
866
1254
  dependencies = [
867
1255
  "proc-macro2",
868
1256
  "quote",
869
- "syn",
1257
+ "syn 2.0.103",
870
1258
  ]
871
1259
 
872
1260
  [[package]]
@@ -881,6 +1269,12 @@ version = "0.3.31"
881
1269
  source = "registry+https://github.com/rust-lang/crates.io-index"
882
1270
  checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
883
1271
 
1272
+ [[package]]
1273
+ name = "futures-timer"
1274
+ version = "3.0.3"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1277
+
884
1278
  [[package]]
885
1279
  name = "futures-util"
886
1280
  version = "0.3.31"
@@ -899,6 +1293,27 @@ dependencies = [
899
1293
  "slab",
900
1294
  ]
901
1295
 
1296
+ [[package]]
1297
+ name = "generic-array"
1298
+ version = "0.14.7"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1301
+ dependencies = [
1302
+ "typenum",
1303
+ "version_check",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "getrandom"
1308
+ version = "0.1.16"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1311
+ dependencies = [
1312
+ "cfg-if",
1313
+ "libc",
1314
+ "wasi 0.9.0+wasi-snapshot-preview1",
1315
+ ]
1316
+
902
1317
  [[package]]
903
1318
  name = "getrandom"
904
1319
  version = "0.2.16"
@@ -906,15 +1321,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
906
1321
  checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
907
1322
  dependencies = [
908
1323
  "cfg-if",
1324
+ "js-sys",
909
1325
  "libc",
910
- "wasi 0.11.0+wasi-snapshot-preview1",
1326
+ "wasi 0.11.1+wasi-snapshot-preview1",
1327
+ "wasm-bindgen",
911
1328
  ]
912
1329
 
913
1330
  [[package]]
914
1331
  name = "getrandom"
915
- version = "0.3.2"
1332
+ version = "0.3.3"
916
1333
  source = "registry+https://github.com/rust-lang/crates.io-index"
917
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1334
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
918
1335
  dependencies = [
919
1336
  "cfg-if",
920
1337
  "libc",
@@ -936,16 +1353,35 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
936
1353
 
937
1354
  [[package]]
938
1355
  name = "h2"
939
- version = "0.4.9"
1356
+ version = "0.3.26"
940
1357
  source = "registry+https://github.com/rust-lang/crates.io-index"
941
- checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1358
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1359
+ dependencies = [
1360
+ "bytes",
1361
+ "fnv",
1362
+ "futures-core",
1363
+ "futures-sink",
1364
+ "futures-util",
1365
+ "http 0.2.12",
1366
+ "indexmap 2.9.0",
1367
+ "slab",
1368
+ "tokio",
1369
+ "tokio-util",
1370
+ "tracing",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "h2"
1375
+ version = "0.4.10"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
942
1378
  dependencies = [
943
1379
  "atomic-waker",
944
1380
  "bytes",
945
1381
  "fnv",
946
1382
  "futures-core",
947
1383
  "futures-sink",
948
- "http",
1384
+ "http 1.3.1",
949
1385
  "indexmap 2.9.0",
950
1386
  "slab",
951
1387
  "tokio",
@@ -971,9 +1407,39 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
971
1407
 
972
1408
  [[package]]
973
1409
  name = "hashbrown"
974
- version = "0.15.2"
1410
+ version = "0.15.4"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1413
+
1414
+ [[package]]
1415
+ name = "headers"
1416
+ version = "0.4.1"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
1419
+ dependencies = [
1420
+ "base64 0.22.1",
1421
+ "bytes",
1422
+ "headers-core",
1423
+ "http 1.3.1",
1424
+ "httpdate",
1425
+ "mime",
1426
+ "sha1",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "headers-core"
1431
+ version = "0.3.0"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
1434
+ dependencies = [
1435
+ "http 1.3.1",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "heck"
1440
+ version = "0.4.1"
975
1441
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1442
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
977
1443
 
978
1444
  [[package]]
979
1445
  name = "heck"
@@ -983,15 +1449,18 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
983
1449
 
984
1450
  [[package]]
985
1451
  name = "hermit-abi"
986
- version = "0.3.9"
1452
+ version = "0.5.2"
987
1453
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1454
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
989
1455
 
990
1456
  [[package]]
991
- name = "hermit-abi"
992
- version = "0.5.0"
1457
+ name = "hex"
1458
+ version = "0.4.3"
993
1459
  source = "registry+https://github.com/rust-lang/crates.io-index"
994
- checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1460
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1461
+ dependencies = [
1462
+ "serde",
1463
+ ]
995
1464
 
996
1465
  [[package]]
997
1466
  name = "home"
@@ -1002,6 +1471,17 @@ dependencies = [
1002
1471
  "windows-sys 0.59.0",
1003
1472
  ]
1004
1473
 
1474
+ [[package]]
1475
+ name = "http"
1476
+ version = "0.2.12"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1479
+ dependencies = [
1480
+ "bytes",
1481
+ "fnv",
1482
+ "itoa",
1483
+ ]
1484
+
1005
1485
  [[package]]
1006
1486
  name = "http"
1007
1487
  version = "1.3.1"
@@ -1013,6 +1493,17 @@ dependencies = [
1013
1493
  "itoa",
1014
1494
  ]
1015
1495
 
1496
+ [[package]]
1497
+ name = "http-body"
1498
+ version = "0.4.6"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1501
+ dependencies = [
1502
+ "bytes",
1503
+ "http 0.2.12",
1504
+ "pin-project-lite",
1505
+ ]
1506
+
1016
1507
  [[package]]
1017
1508
  name = "http-body"
1018
1509
  version = "1.0.1"
@@ -1020,7 +1511,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
1511
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1021
1512
  dependencies = [
1022
1513
  "bytes",
1023
- "http",
1514
+ "http 1.3.1",
1024
1515
  ]
1025
1516
 
1026
1517
  [[package]]
@@ -1031,11 +1522,32 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1031
1522
  dependencies = [
1032
1523
  "bytes",
1033
1524
  "futures-core",
1034
- "http",
1035
- "http-body",
1525
+ "http 1.3.1",
1526
+ "http-body 1.0.1",
1036
1527
  "pin-project-lite",
1037
1528
  ]
1038
1529
 
1530
+ [[package]]
1531
+ name = "http-types"
1532
+ version = "2.12.0"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1535
+ dependencies = [
1536
+ "anyhow",
1537
+ "async-channel",
1538
+ "base64 0.13.1",
1539
+ "futures-lite",
1540
+ "http 0.2.12",
1541
+ "infer",
1542
+ "pin-project-lite",
1543
+ "rand 0.7.3",
1544
+ "serde",
1545
+ "serde_json",
1546
+ "serde_qs",
1547
+ "serde_urlencoded",
1548
+ "url",
1549
+ ]
1550
+
1039
1551
  [[package]]
1040
1552
  name = "httparse"
1041
1553
  version = "1.10.1"
@@ -1048,6 +1560,30 @@ version = "1.0.3"
1048
1560
  source = "registry+https://github.com/rust-lang/crates.io-index"
1049
1561
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1050
1562
 
1563
+ [[package]]
1564
+ name = "hyper"
1565
+ version = "0.14.32"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1568
+ dependencies = [
1569
+ "bytes",
1570
+ "futures-channel",
1571
+ "futures-core",
1572
+ "futures-util",
1573
+ "h2 0.3.26",
1574
+ "http 0.2.12",
1575
+ "http-body 0.4.6",
1576
+ "httparse",
1577
+ "httpdate",
1578
+ "itoa",
1579
+ "pin-project-lite",
1580
+ "socket2",
1581
+ "tokio",
1582
+ "tower-service",
1583
+ "tracing",
1584
+ "want",
1585
+ ]
1586
+
1051
1587
  [[package]]
1052
1588
  name = "hyper"
1053
1589
  version = "1.6.0"
@@ -1057,9 +1593,9 @@ dependencies = [
1057
1593
  "bytes",
1058
1594
  "futures-channel",
1059
1595
  "futures-util",
1060
- "h2",
1061
- "http",
1062
- "http-body",
1596
+ "h2 0.4.10",
1597
+ "http 1.3.1",
1598
+ "http-body 1.0.1",
1063
1599
  "httparse",
1064
1600
  "httpdate",
1065
1601
  "itoa",
@@ -1071,13 +1607,12 @@ dependencies = [
1071
1607
 
1072
1608
  [[package]]
1073
1609
  name = "hyper-rustls"
1074
- version = "0.27.5"
1610
+ version = "0.27.7"
1075
1611
  source = "registry+https://github.com/rust-lang/crates.io-index"
1076
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1612
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1077
1613
  dependencies = [
1078
- "futures-util",
1079
- "http",
1080
- "hyper",
1614
+ "http 1.3.1",
1615
+ "hyper 1.6.0",
1081
1616
  "hyper-util",
1082
1617
  "rustls",
1083
1618
  "rustls-pki-types",
@@ -1092,7 +1627,7 @@ version = "0.5.2"
1092
1627
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
1628
  checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1094
1629
  dependencies = [
1095
- "hyper",
1630
+ "hyper 1.6.0",
1096
1631
  "hyper-util",
1097
1632
  "pin-project-lite",
1098
1633
  "tokio",
@@ -1101,22 +1636,28 @@ dependencies = [
1101
1636
 
1102
1637
  [[package]]
1103
1638
  name = "hyper-util"
1104
- version = "0.1.11"
1639
+ version = "0.1.14"
1105
1640
  source = "registry+https://github.com/rust-lang/crates.io-index"
1106
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1641
+ checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
1107
1642
  dependencies = [
1643
+ "base64 0.22.1",
1108
1644
  "bytes",
1109
1645
  "futures-channel",
1646
+ "futures-core",
1110
1647
  "futures-util",
1111
- "http",
1112
- "http-body",
1113
- "hyper",
1648
+ "http 1.3.1",
1649
+ "http-body 1.0.1",
1650
+ "hyper 1.6.0",
1651
+ "ipnet",
1114
1652
  "libc",
1653
+ "percent-encoding",
1115
1654
  "pin-project-lite",
1116
1655
  "socket2",
1656
+ "system-configuration",
1117
1657
  "tokio",
1118
1658
  "tower-service",
1119
1659
  "tracing",
1660
+ "windows-registry",
1120
1661
  ]
1121
1662
 
1122
1663
  [[package]]
@@ -1145,21 +1686,22 @@ dependencies = [
1145
1686
 
1146
1687
  [[package]]
1147
1688
  name = "icu_collections"
1148
- version = "1.5.0"
1689
+ version = "2.0.0"
1149
1690
  source = "registry+https://github.com/rust-lang/crates.io-index"
1150
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1691
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1151
1692
  dependencies = [
1152
1693
  "displaydoc",
1694
+ "potential_utf",
1153
1695
  "yoke",
1154
1696
  "zerofrom",
1155
1697
  "zerovec",
1156
1698
  ]
1157
1699
 
1158
1700
  [[package]]
1159
- name = "icu_locid"
1160
- version = "1.5.0"
1701
+ name = "icu_locale_core"
1702
+ version = "2.0.0"
1161
1703
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1704
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1163
1705
  dependencies = [
1164
1706
  "displaydoc",
1165
1707
  "litemap",
@@ -1168,31 +1710,11 @@ dependencies = [
1168
1710
  "zerovec",
1169
1711
  ]
1170
1712
 
1171
- [[package]]
1172
- name = "icu_locid_transform"
1173
- version = "1.5.0"
1174
- source = "registry+https://github.com/rust-lang/crates.io-index"
1175
- checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1176
- dependencies = [
1177
- "displaydoc",
1178
- "icu_locid",
1179
- "icu_locid_transform_data",
1180
- "icu_provider",
1181
- "tinystr",
1182
- "zerovec",
1183
- ]
1184
-
1185
- [[package]]
1186
- name = "icu_locid_transform_data"
1187
- version = "1.5.1"
1188
- source = "registry+https://github.com/rust-lang/crates.io-index"
1189
- checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1190
-
1191
1713
  [[package]]
1192
1714
  name = "icu_normalizer"
1193
- version = "1.5.0"
1715
+ version = "2.0.0"
1194
1716
  source = "registry+https://github.com/rust-lang/crates.io-index"
1195
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1717
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1196
1718
  dependencies = [
1197
1719
  "displaydoc",
1198
1720
  "icu_collections",
@@ -1200,66 +1722,59 @@ dependencies = [
1200
1722
  "icu_properties",
1201
1723
  "icu_provider",
1202
1724
  "smallvec",
1203
- "utf16_iter",
1204
- "utf8_iter",
1205
- "write16",
1206
1725
  "zerovec",
1207
1726
  ]
1208
1727
 
1209
1728
  [[package]]
1210
1729
  name = "icu_normalizer_data"
1211
- version = "1.5.1"
1730
+ version = "2.0.0"
1212
1731
  source = "registry+https://github.com/rust-lang/crates.io-index"
1213
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1732
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1214
1733
 
1215
1734
  [[package]]
1216
1735
  name = "icu_properties"
1217
- version = "1.5.1"
1736
+ version = "2.0.1"
1218
1737
  source = "registry+https://github.com/rust-lang/crates.io-index"
1219
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1738
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1220
1739
  dependencies = [
1221
1740
  "displaydoc",
1222
1741
  "icu_collections",
1223
- "icu_locid_transform",
1742
+ "icu_locale_core",
1224
1743
  "icu_properties_data",
1225
1744
  "icu_provider",
1226
- "tinystr",
1745
+ "potential_utf",
1746
+ "zerotrie",
1227
1747
  "zerovec",
1228
1748
  ]
1229
1749
 
1230
1750
  [[package]]
1231
1751
  name = "icu_properties_data"
1232
- version = "1.5.1"
1752
+ version = "2.0.1"
1233
1753
  source = "registry+https://github.com/rust-lang/crates.io-index"
1234
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1754
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1235
1755
 
1236
1756
  [[package]]
1237
1757
  name = "icu_provider"
1238
- version = "1.5.0"
1758
+ version = "2.0.0"
1239
1759
  source = "registry+https://github.com/rust-lang/crates.io-index"
1240
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1760
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1241
1761
  dependencies = [
1242
1762
  "displaydoc",
1243
- "icu_locid",
1244
- "icu_provider_macros",
1763
+ "icu_locale_core",
1245
1764
  "stable_deref_trait",
1246
1765
  "tinystr",
1247
1766
  "writeable",
1248
1767
  "yoke",
1249
1768
  "zerofrom",
1769
+ "zerotrie",
1250
1770
  "zerovec",
1251
1771
  ]
1252
1772
 
1253
1773
  [[package]]
1254
- name = "icu_provider_macros"
1255
- version = "1.5.0"
1774
+ name = "ident_case"
1775
+ version = "1.0.1"
1256
1776
  source = "registry+https://github.com/rust-lang/crates.io-index"
1257
- checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1258
- dependencies = [
1259
- "proc-macro2",
1260
- "quote",
1261
- "syn",
1262
- ]
1777
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1263
1778
 
1264
1779
  [[package]]
1265
1780
  name = "idna"
@@ -1274,36 +1789,14 @@ dependencies = [
1274
1789
 
1275
1790
  [[package]]
1276
1791
  name = "idna_adapter"
1277
- version = "1.2.0"
1792
+ version = "1.2.1"
1278
1793
  source = "registry+https://github.com/rust-lang/crates.io-index"
1279
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1794
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1280
1795
  dependencies = [
1281
1796
  "icu_normalizer",
1282
1797
  "icu_properties",
1283
1798
  ]
1284
1799
 
1285
- [[package]]
1286
- name = "include-utils"
1287
- version = "0.2.4"
1288
- source = "registry+https://github.com/rust-lang/crates.io-index"
1289
- checksum = "431d3c09de1082802cc229e78a515e4f46be80c7ac31eda029afa32e1518cebf"
1290
- dependencies = [
1291
- "include-utils-macro",
1292
- ]
1293
-
1294
- [[package]]
1295
- name = "include-utils-macro"
1296
- version = "0.2.4"
1297
- source = "registry+https://github.com/rust-lang/crates.io-index"
1298
- checksum = "0a2c76d2506581ed9ead2afacb6b8164e4cac323427fd67102b59225d35b49cb"
1299
- dependencies = [
1300
- "itertools 0.13.0",
1301
- "manyhow",
1302
- "proc-macro2",
1303
- "quote",
1304
- "syn",
1305
- ]
1306
-
1307
1800
  [[package]]
1308
1801
  name = "indexmap"
1309
1802
  version = "1.9.3"
@@ -1321,7 +1814,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
1814
  checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1322
1815
  dependencies = [
1323
1816
  "equivalent",
1324
- "hashbrown 0.15.2",
1817
+ "hashbrown 0.15.4",
1325
1818
  ]
1326
1819
 
1327
1820
  [[package]]
@@ -1343,6 +1836,41 @@ version = "2.0.6"
1343
1836
  source = "registry+https://github.com/rust-lang/crates.io-index"
1344
1837
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1345
1838
 
1839
+ [[package]]
1840
+ name = "infer"
1841
+ version = "0.2.3"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1844
+
1845
+ [[package]]
1846
+ name = "inotify"
1847
+ version = "0.11.0"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1850
+ dependencies = [
1851
+ "bitflags 2.9.1",
1852
+ "inotify-sys",
1853
+ "libc",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "inotify-sys"
1858
+ version = "0.1.5"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1861
+ dependencies = [
1862
+ "libc",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "instant"
1867
+ version = "0.1.13"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1870
+ dependencies = [
1871
+ "cfg-if",
1872
+ ]
1873
+
1346
1874
  [[package]]
1347
1875
  name = "inventory"
1348
1876
  version = "0.3.20"
@@ -1358,13 +1886,23 @@ version = "2.11.0"
1358
1886
  source = "registry+https://github.com/rust-lang/crates.io-index"
1359
1887
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1360
1888
 
1889
+ [[package]]
1890
+ name = "iri-string"
1891
+ version = "0.7.8"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1894
+ dependencies = [
1895
+ "memchr",
1896
+ "serde",
1897
+ ]
1898
+
1361
1899
  [[package]]
1362
1900
  name = "is-terminal"
1363
1901
  version = "0.4.16"
1364
1902
  source = "registry+https://github.com/rust-lang/crates.io-index"
1365
1903
  checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1366
1904
  dependencies = [
1367
- "hermit-abi 0.5.0",
1905
+ "hermit-abi",
1368
1906
  "libc",
1369
1907
  "windows-sys 0.59.0",
1370
1908
  ]
@@ -1443,7 +1981,7 @@ version = "0.1.33"
1443
1981
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
1982
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1445
1983
  dependencies = [
1446
- "getrandom 0.3.2",
1984
+ "getrandom 0.3.3",
1447
1985
  "libc",
1448
1986
  ]
1449
1987
 
@@ -1457,6 +1995,40 @@ dependencies = [
1457
1995
  "wasm-bindgen",
1458
1996
  ]
1459
1997
 
1998
+ [[package]]
1999
+ name = "jsonwebtoken-aws-lc"
2000
+ version = "9.3.0"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "5719b46c18bab340120f6d71f2a98d775cc3b1dd22d810335e4b00d52830d841"
2003
+ dependencies = [
2004
+ "aws-lc-rs",
2005
+ "base64 0.22.1",
2006
+ "pem",
2007
+ "serde",
2008
+ "serde_json",
2009
+ "simple_asn1",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "kqueue"
2014
+ version = "1.1.1"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
2017
+ dependencies = [
2018
+ "kqueue-sys",
2019
+ "libc",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "kqueue-sys"
2024
+ version = "1.0.4"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
2027
+ dependencies = [
2028
+ "bitflags 1.3.2",
2029
+ "libc",
2030
+ ]
2031
+
1460
2032
  [[package]]
1461
2033
  name = "lazy_static"
1462
2034
  version = "1.5.0"
@@ -1471,18 +2043,29 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1471
2043
 
1472
2044
  [[package]]
1473
2045
  name = "libc"
1474
- version = "0.2.172"
2046
+ version = "0.2.174"
1475
2047
  source = "registry+https://github.com/rust-lang/crates.io-index"
1476
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2048
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1477
2049
 
1478
2050
  [[package]]
1479
2051
  name = "libloading"
1480
- version = "0.8.6"
2052
+ version = "0.8.8"
1481
2053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1482
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2054
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1483
2055
  dependencies = [
1484
2056
  "cfg-if",
1485
- "windows-targets 0.52.6",
2057
+ "windows-targets 0.53.2",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "libredox"
2062
+ version = "0.1.3"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2065
+ dependencies = [
2066
+ "bitflags 2.9.1",
2067
+ "libc",
2068
+ "redox_syscall",
1486
2069
  ]
1487
2070
 
1488
2071
  [[package]]
@@ -1499,15 +2082,15 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1499
2082
 
1500
2083
  [[package]]
1501
2084
  name = "litemap"
1502
- version = "0.7.5"
2085
+ version = "0.8.0"
1503
2086
  source = "registry+https://github.com/rust-lang/crates.io-index"
1504
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2087
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1505
2088
 
1506
2089
  [[package]]
1507
2090
  name = "lock_api"
1508
- version = "0.4.12"
2091
+ version = "0.4.13"
1509
2092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1510
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2093
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1511
2094
  dependencies = [
1512
2095
  "autocfg",
1513
2096
  "scopeguard",
@@ -1520,27 +2103,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
2103
  checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1521
2104
 
1522
2105
  [[package]]
1523
- name = "manyhow"
1524
- version = "0.11.4"
2106
+ name = "macro_rules_attribute"
2107
+ version = "0.1.3"
1525
2108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1526
- checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
2109
+ checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
1527
2110
  dependencies = [
1528
- "manyhow-macros",
1529
- "proc-macro2",
1530
- "quote",
1531
- "syn",
2111
+ "macro_rules_attribute-proc_macro",
2112
+ "paste",
1532
2113
  ]
1533
2114
 
1534
2115
  [[package]]
1535
- name = "manyhow-macros"
1536
- version = "0.11.4"
2116
+ name = "macro_rules_attribute-proc_macro"
2117
+ version = "0.1.3"
1537
2118
  source = "registry+https://github.com/rust-lang/crates.io-index"
1538
- checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
1539
- dependencies = [
1540
- "proc-macro-utils",
1541
- "proc-macro2",
1542
- "quote",
1543
- ]
2119
+ checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
1544
2120
 
1545
2121
  [[package]]
1546
2122
  name = "maplit"
@@ -1550,11 +2126,11 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1550
2126
 
1551
2127
  [[package]]
1552
2128
  name = "matchers"
1553
- version = "0.1.0"
2129
+ version = "0.2.0"
1554
2130
  source = "registry+https://github.com/rust-lang/crates.io-index"
1555
- checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2131
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1556
2132
  dependencies = [
1557
- "regex-automata 0.1.10",
2133
+ "regex-automata",
1558
2134
  ]
1559
2135
 
1560
2136
  [[package]]
@@ -1565,19 +2141,30 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1565
2141
 
1566
2142
  [[package]]
1567
2143
  name = "matrixmultiply"
1568
- version = "0.3.9"
2144
+ version = "0.3.10"
1569
2145
  source = "registry+https://github.com/rust-lang/crates.io-index"
1570
- checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
2146
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1571
2147
  dependencies = [
1572
2148
  "autocfg",
1573
2149
  "rawpointer",
1574
2150
  ]
1575
2151
 
2152
+ [[package]]
2153
+ name = "maybe-async"
2154
+ version = "0.2.10"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
2157
+ dependencies = [
2158
+ "proc-macro2",
2159
+ "quote",
2160
+ "syn 2.0.103",
2161
+ ]
2162
+
1576
2163
  [[package]]
1577
2164
  name = "memchr"
1578
- version = "2.7.4"
2165
+ version = "2.7.5"
1579
2166
  source = "registry+https://github.com/rust-lang/crates.io-index"
1580
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2167
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1581
2168
 
1582
2169
  [[package]]
1583
2170
  name = "memoffset"
@@ -1602,29 +2189,156 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1602
2189
 
1603
2190
  [[package]]
1604
2191
  name = "miniz_oxide"
1605
- version = "0.8.8"
2192
+ version = "0.8.9"
1606
2193
  source = "registry+https://github.com/rust-lang/crates.io-index"
1607
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2194
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1608
2195
  dependencies = [
1609
2196
  "adler2",
1610
2197
  ]
1611
2198
 
1612
2199
  [[package]]
1613
2200
  name = "mio"
1614
- version = "1.0.3"
2201
+ version = "1.0.4"
1615
2202
  source = "registry+https://github.com/rust-lang/crates.io-index"
1616
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2203
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1617
2204
  dependencies = [
1618
2205
  "libc",
1619
- "wasi 0.11.0+wasi-snapshot-preview1",
1620
- "windows-sys 0.52.0",
2206
+ "log",
2207
+ "wasi 0.11.1+wasi-snapshot-preview1",
2208
+ "windows-sys 0.59.0",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "mls-rs"
2213
+ version = "0.48.0"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "a5c5f385480adea41795dfae0fd694440f14040ead5dca1af27ce981a37ca68c"
2216
+ dependencies = [
2217
+ "async-trait",
2218
+ "cfg-if",
2219
+ "debug_tree",
2220
+ "futures",
2221
+ "getrandom 0.2.16",
2222
+ "hex",
2223
+ "itertools 0.14.0",
2224
+ "maybe-async",
2225
+ "mls-rs-codec",
2226
+ "mls-rs-core",
2227
+ "mls-rs-identity-x509",
2228
+ "portable-atomic",
2229
+ "portable-atomic-util",
2230
+ "rand_core 0.6.4",
2231
+ "rayon",
2232
+ "safer-ffi-gen",
2233
+ "serde",
2234
+ "spin",
2235
+ "thiserror 2.0.12",
2236
+ "wasm-bindgen",
2237
+ "zeroize",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "mls-rs-codec"
2242
+ version = "0.6.0"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "f865c30512488ec839e934208ff2ca4b2491cb3cde5a929f2b0cfed064e05511"
2245
+ dependencies = [
2246
+ "mls-rs-codec-derive",
2247
+ "thiserror 1.0.69",
2248
+ "wasm-bindgen",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "mls-rs-codec-derive"
2253
+ version = "0.2.0"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "c8b31fb579767147e96686889f1e7459d6bd41a131b11d7cd130776cffadb1c3"
2256
+ dependencies = [
2257
+ "darling",
2258
+ "proc-macro2",
2259
+ "quote",
2260
+ "syn 2.0.103",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "mls-rs-core"
2265
+ version = "0.23.0"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "a282545c6b6ce1fe29f1f4b707019a694d3b5bcb82e84e6f72c9d51e99fb56b1"
2268
+ dependencies = [
2269
+ "async-trait",
2270
+ "hex",
2271
+ "maybe-async",
2272
+ "mls-rs-codec",
2273
+ "safer-ffi-gen",
2274
+ "serde",
2275
+ "thiserror 2.0.12",
2276
+ "wasm-bindgen",
2277
+ "zeroize",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "mls-rs-crypto-awslc"
2282
+ version = "0.18.0"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "9334e7ff64572364753d461c677253c2c2617361affdd4a5051a5257d1a22c1b"
2285
+ dependencies = [
2286
+ "async-trait",
2287
+ "aws-lc-rs",
2288
+ "aws-lc-sys",
2289
+ "maybe-async",
2290
+ "mls-rs-core",
2291
+ "mls-rs-crypto-hpke",
2292
+ "mls-rs-crypto-traits",
2293
+ "mls-rs-identity-x509",
2294
+ "thiserror 2.0.12",
2295
+ "zeroize",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "mls-rs-crypto-hpke"
2300
+ version = "0.16.0"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "59b6208976b78f5d12196a8308618a24a974014a04de554e47dc3e65cd26795d"
2303
+ dependencies = [
2304
+ "async-trait",
2305
+ "cfg-if",
2306
+ "maybe-async",
2307
+ "mls-rs-core",
2308
+ "mls-rs-crypto-traits",
2309
+ "thiserror 2.0.12",
2310
+ "zeroize",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "mls-rs-crypto-traits"
2315
+ version = "0.17.0"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "20d41b82ac304c249cfc2e62ceb411e7c0cb34fac7b0d32b5ea1f01bc090d667"
2318
+ dependencies = [
2319
+ "async-trait",
2320
+ "maybe-async",
2321
+ "mls-rs-core",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "mls-rs-identity-x509"
2326
+ version = "0.17.0"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "982328b99e2785a301e80fed6893539ad5b2ea2dbd7bbd9db453757e8a4bcbf4"
2329
+ dependencies = [
2330
+ "async-trait",
2331
+ "maybe-async",
2332
+ "mls-rs-core",
2333
+ "thiserror 2.0.12",
2334
+ "wasm-bindgen",
1621
2335
  ]
1622
2336
 
1623
2337
  [[package]]
1624
2338
  name = "multimap"
1625
- version = "0.10.0"
2339
+ version = "0.10.1"
1626
2340
  source = "registry+https://github.com/rust-lang/crates.io-index"
1627
- checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
2341
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1628
2342
 
1629
2343
  [[package]]
1630
2344
  name = "ndarray"
@@ -1651,14 +2365,48 @@ dependencies = [
1651
2365
  "minimal-lexical",
1652
2366
  ]
1653
2367
 
2368
+ [[package]]
2369
+ name = "notify"
2370
+ version = "8.0.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
2373
+ dependencies = [
2374
+ "bitflags 2.9.1",
2375
+ "filetime",
2376
+ "fsevent-sys",
2377
+ "inotify",
2378
+ "kqueue",
2379
+ "libc",
2380
+ "log",
2381
+ "mio",
2382
+ "notify-types",
2383
+ "walkdir",
2384
+ "windows-sys 0.59.0",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "notify-types"
2389
+ version = "2.0.0"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2392
+
1654
2393
  [[package]]
1655
2394
  name = "nu-ansi-term"
1656
- version = "0.46.0"
2395
+ version = "0.50.1"
1657
2396
  source = "registry+https://github.com/rust-lang/crates.io-index"
1658
- checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2397
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1659
2398
  dependencies = [
1660
- "overload",
1661
- "winapi",
2399
+ "windows-sys 0.52.0",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "num-bigint"
2404
+ version = "0.4.6"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2407
+ dependencies = [
2408
+ "num-integer",
2409
+ "num-traits",
1662
2410
  ]
1663
2411
 
1664
2412
  [[package]]
@@ -1696,11 +2444,11 @@ dependencies = [
1696
2444
 
1697
2445
  [[package]]
1698
2446
  name = "num_cpus"
1699
- version = "1.16.0"
2447
+ version = "1.17.0"
1700
2448
  source = "registry+https://github.com/rust-lang/crates.io-index"
1701
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2449
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1702
2450
  dependencies = [
1703
- "hermit-abi 0.3.9",
2451
+ "hermit-abi",
1704
2452
  "libc",
1705
2453
  ]
1706
2454
 
@@ -1740,6 +2488,16 @@ name = "once_cell"
1740
2488
  version = "1.21.3"
1741
2489
  source = "registry+https://github.com/rust-lang/crates.io-index"
1742
2490
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2491
+ dependencies = [
2492
+ "critical-section",
2493
+ "portable-atomic",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "once_cell_polyfill"
2498
+ version = "1.70.1"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1743
2501
 
1744
2502
  [[package]]
1745
2503
  name = "oorandom"
@@ -1763,7 +2521,7 @@ dependencies = [
1763
2521
  "futures-sink",
1764
2522
  "js-sys",
1765
2523
  "pin-project-lite",
1766
- "thiserror",
2524
+ "thiserror 2.0.12",
1767
2525
  "tracing",
1768
2526
  ]
1769
2527
 
@@ -1775,7 +2533,7 @@ checksum = "46d7ab32b827b5b495bd90fa95a6cb65ccc293555dcc3199ae2937d2d237c8ed"
1775
2533
  dependencies = [
1776
2534
  "async-trait",
1777
2535
  "bytes",
1778
- "http",
2536
+ "http 1.3.1",
1779
2537
  "opentelemetry",
1780
2538
  "reqwest",
1781
2539
  "tracing",
@@ -1788,14 +2546,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
2546
  checksum = "d899720fe06916ccba71c01d04ecd77312734e2de3467fd30d9d580c8ce85656"
1789
2547
  dependencies = [
1790
2548
  "futures-core",
1791
- "http",
2549
+ "http 1.3.1",
1792
2550
  "opentelemetry",
1793
2551
  "opentelemetry-http",
1794
2552
  "opentelemetry-proto",
1795
2553
  "opentelemetry_sdk",
1796
- "prost",
2554
+ "prost 0.13.5",
1797
2555
  "reqwest",
1798
- "thiserror",
2556
+ "thiserror 2.0.12",
1799
2557
  "tokio",
1800
2558
  "tonic 0.12.3",
1801
2559
  "tracing",
@@ -1809,7 +2567,7 @@ checksum = "8c40da242381435e18570d5b9d50aca2a4f4f4d8e146231adb4e7768023309b3"
1809
2567
  dependencies = [
1810
2568
  "opentelemetry",
1811
2569
  "opentelemetry_sdk",
1812
- "prost",
2570
+ "prost 0.13.5",
1813
2571
  "tonic 0.12.3",
1814
2572
  ]
1815
2573
 
@@ -1845,23 +2603,29 @@ dependencies = [
1845
2603
  "percent-encoding",
1846
2604
  "rand 0.9.1",
1847
2605
  "serde_json",
1848
- "thiserror",
2606
+ "thiserror 2.0.12",
1849
2607
  "tokio",
1850
2608
  "tokio-stream",
1851
2609
  "tracing",
1852
2610
  ]
1853
2611
 
1854
2612
  [[package]]
1855
- name = "overload"
1856
- version = "0.1.1"
2613
+ name = "option-ext"
2614
+ version = "0.2.0"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2617
+
2618
+ [[package]]
2619
+ name = "parking"
2620
+ version = "2.2.1"
1857
2621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1858
- checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2622
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1859
2623
 
1860
2624
  [[package]]
1861
2625
  name = "parking_lot"
1862
- version = "0.12.3"
2626
+ version = "0.12.4"
1863
2627
  source = "registry+https://github.com/rust-lang/crates.io-index"
1864
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2628
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1865
2629
  dependencies = [
1866
2630
  "lock_api",
1867
2631
  "parking_lot_core",
@@ -1869,9 +2633,9 @@ dependencies = [
1869
2633
 
1870
2634
  [[package]]
1871
2635
  name = "parking_lot_core"
1872
- version = "0.9.10"
2636
+ version = "0.9.11"
1873
2637
  source = "registry+https://github.com/rust-lang/crates.io-index"
1874
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2638
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1875
2639
  dependencies = [
1876
2640
  "cfg-if",
1877
2641
  "libc",
@@ -1880,6 +2644,22 @@ dependencies = [
1880
2644
  "windows-targets 0.52.6",
1881
2645
  ]
1882
2646
 
2647
+ [[package]]
2648
+ name = "paste"
2649
+ version = "1.0.15"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2652
+
2653
+ [[package]]
2654
+ name = "pem"
2655
+ version = "3.0.5"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
2658
+ dependencies = [
2659
+ "base64 0.22.1",
2660
+ "serde",
2661
+ ]
2662
+
1883
2663
  [[package]]
1884
2664
  name = "percent-encoding"
1885
2665
  version = "2.3.1"
@@ -1913,7 +2693,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1913
2693
  dependencies = [
1914
2694
  "proc-macro2",
1915
2695
  "quote",
1916
- "syn",
2696
+ "syn 2.0.103",
1917
2697
  ]
1918
2698
 
1919
2699
  [[package]]
@@ -1958,9 +2738,12 @@ dependencies = [
1958
2738
 
1959
2739
  [[package]]
1960
2740
  name = "portable-atomic"
1961
- version = "1.11.0"
2741
+ version = "1.11.1"
1962
2742
  source = "registry+https://github.com/rust-lang/crates.io-index"
1963
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2743
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2744
+ dependencies = [
2745
+ "critical-section",
2746
+ ]
1964
2747
 
1965
2748
  [[package]]
1966
2749
  name = "portable-atomic-util"
@@ -1971,6 +2754,15 @@ dependencies = [
1971
2754
  "portable-atomic",
1972
2755
  ]
1973
2756
 
2757
+ [[package]]
2758
+ name = "potential_utf"
2759
+ version = "0.1.2"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2762
+ dependencies = [
2763
+ "zerovec",
2764
+ ]
2765
+
1974
2766
  [[package]]
1975
2767
  name = "powerfmt"
1976
2768
  version = "0.2.0"
@@ -1988,23 +2780,55 @@ dependencies = [
1988
2780
 
1989
2781
  [[package]]
1990
2782
  name = "prettyplease"
1991
- version = "0.2.32"
2783
+ version = "0.1.25"
1992
2784
  source = "registry+https://github.com/rust-lang/crates.io-index"
1993
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2785
+ checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
1994
2786
  dependencies = [
1995
2787
  "proc-macro2",
1996
- "syn",
2788
+ "syn 1.0.109",
1997
2789
  ]
1998
2790
 
1999
2791
  [[package]]
2000
- name = "proc-macro-utils"
2001
- version = "0.10.0"
2792
+ name = "prettyplease"
2793
+ version = "0.2.34"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "6837b9e10d61f45f987d50808f83d1ee3d206c66acf650c3e4ae2e1f6ddedf55"
2796
+ dependencies = [
2797
+ "proc-macro2",
2798
+ "syn 2.0.103",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "proc-macro-crate"
2803
+ version = "3.3.0"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2806
+ dependencies = [
2807
+ "toml_edit",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "proc-macro-error"
2812
+ version = "1.0.4"
2002
2813
  source = "registry+https://github.com/rust-lang/crates.io-index"
2003
- checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
2814
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2004
2815
  dependencies = [
2816
+ "proc-macro-error-attr",
2005
2817
  "proc-macro2",
2006
2818
  "quote",
2007
- "smallvec",
2819
+ "syn 1.0.109",
2820
+ "version_check",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "proc-macro-error-attr"
2825
+ version = "1.0.4"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2828
+ dependencies = [
2829
+ "proc-macro2",
2830
+ "quote",
2831
+ "version_check",
2008
2832
  ]
2009
2833
 
2010
2834
  [[package]]
@@ -2023,7 +2847,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
2847
  checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
2024
2848
  dependencies = [
2025
2849
  "bytes",
2026
- "prost-derive",
2850
+ "prost-derive 0.13.5",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "prost"
2855
+ version = "0.14.1"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
2858
+ dependencies = [
2859
+ "bytes",
2860
+ "prost-derive 0.14.1",
2027
2861
  ]
2028
2862
 
2029
2863
  [[package]]
@@ -2032,17 +2866,17 @@ version = "0.13.5"
2032
2866
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
2867
  checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
2034
2868
  dependencies = [
2035
- "heck",
2869
+ "heck 0.5.0",
2036
2870
  "itertools 0.14.0",
2037
2871
  "log",
2038
2872
  "multimap",
2039
2873
  "once_cell",
2040
2874
  "petgraph",
2041
- "prettyplease",
2042
- "prost",
2043
- "prost-types",
2875
+ "prettyplease 0.2.34",
2876
+ "prost 0.13.5",
2877
+ "prost-types 0.13.5",
2044
2878
  "regex",
2045
- "syn",
2879
+ "syn 2.0.103",
2046
2880
  "tempfile",
2047
2881
  ]
2048
2882
 
@@ -2056,7 +2890,20 @@ dependencies = [
2056
2890
  "itertools 0.14.0",
2057
2891
  "proc-macro2",
2058
2892
  "quote",
2059
- "syn",
2893
+ "syn 2.0.103",
2894
+ ]
2895
+
2896
+ [[package]]
2897
+ name = "prost-derive"
2898
+ version = "0.14.1"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
2901
+ dependencies = [
2902
+ "anyhow",
2903
+ "itertools 0.14.0",
2904
+ "proc-macro2",
2905
+ "quote",
2906
+ "syn 2.0.103",
2060
2907
  ]
2061
2908
 
2062
2909
  [[package]]
@@ -2065,7 +2912,16 @@ version = "0.13.5"
2065
2912
  source = "registry+https://github.com/rust-lang/crates.io-index"
2066
2913
  checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
2067
2914
  dependencies = [
2068
- "prost",
2915
+ "prost 0.13.5",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "prost-types"
2920
+ version = "0.14.1"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
2923
+ dependencies = [
2924
+ "prost 0.14.1",
2069
2925
  ]
2070
2926
 
2071
2927
  [[package]]
@@ -2185,7 +3041,7 @@ dependencies = [
2185
3041
  "proc-macro2",
2186
3042
  "pyo3-macros-backend",
2187
3043
  "quote",
2188
- "syn",
3044
+ "syn 2.0.103",
2189
3045
  ]
2190
3046
 
2191
3047
  [[package]]
@@ -2194,11 +3050,11 @@ version = "0.24.2"
2194
3050
  source = "registry+https://github.com/rust-lang/crates.io-index"
2195
3051
  checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2196
3052
  dependencies = [
2197
- "heck",
3053
+ "heck 0.5.0",
2198
3054
  "proc-macro2",
2199
3055
  "pyo3-build-config",
2200
3056
  "quote",
2201
- "syn",
3057
+ "syn 2.0.103",
2202
3058
  ]
2203
3059
 
2204
3060
  [[package]]
@@ -2229,7 +3085,7 @@ checksum = "3ee49d727163163a0c6fc3fee4636c8b5c82e1bb868e85cf411be7ae9e4e5b40"
2229
3085
  dependencies = [
2230
3086
  "proc-macro2",
2231
3087
  "quote",
2232
- "syn",
3088
+ "syn 2.0.103",
2233
3089
  ]
2234
3090
 
2235
3091
  [[package]]
@@ -2243,9 +3099,22 @@ dependencies = [
2243
3099
 
2244
3100
  [[package]]
2245
3101
  name = "r-efi"
2246
- version = "5.2.0"
3102
+ version = "5.3.0"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3105
+
3106
+ [[package]]
3107
+ name = "rand"
3108
+ version = "0.7.3"
2247
3109
  source = "registry+https://github.com/rust-lang/crates.io-index"
2248
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3110
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
3111
+ dependencies = [
3112
+ "getrandom 0.1.16",
3113
+ "libc",
3114
+ "rand_chacha 0.2.2",
3115
+ "rand_core 0.5.1",
3116
+ "rand_hc",
3117
+ ]
2249
3118
 
2250
3119
  [[package]]
2251
3120
  name = "rand"
@@ -2268,6 +3137,16 @@ dependencies = [
2268
3137
  "rand_core 0.9.3",
2269
3138
  ]
2270
3139
 
3140
+ [[package]]
3141
+ name = "rand_chacha"
3142
+ version = "0.2.2"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
3145
+ dependencies = [
3146
+ "ppv-lite86",
3147
+ "rand_core 0.5.1",
3148
+ ]
3149
+
2271
3150
  [[package]]
2272
3151
  name = "rand_chacha"
2273
3152
  version = "0.3.1"
@@ -2288,6 +3167,15 @@ dependencies = [
2288
3167
  "rand_core 0.9.3",
2289
3168
  ]
2290
3169
 
3170
+ [[package]]
3171
+ name = "rand_core"
3172
+ version = "0.5.1"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
3175
+ dependencies = [
3176
+ "getrandom 0.1.16",
3177
+ ]
3178
+
2291
3179
  [[package]]
2292
3180
  name = "rand_core"
2293
3181
  version = "0.6.4"
@@ -2303,7 +3191,16 @@ version = "0.9.3"
2303
3191
  source = "registry+https://github.com/rust-lang/crates.io-index"
2304
3192
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2305
3193
  dependencies = [
2306
- "getrandom 0.3.2",
3194
+ "getrandom 0.3.3",
3195
+ ]
3196
+
3197
+ [[package]]
3198
+ name = "rand_hc"
3199
+ version = "0.2.0"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
3202
+ dependencies = [
3203
+ "rand_core 0.5.1",
2307
3204
  ]
2308
3205
 
2309
3206
  [[package]]
@@ -2334,50 +3231,66 @@ dependencies = [
2334
3231
 
2335
3232
  [[package]]
2336
3233
  name = "redox_syscall"
2337
- version = "0.5.11"
3234
+ version = "0.5.13"
2338
3235
  source = "registry+https://github.com/rust-lang/crates.io-index"
2339
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
3236
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
2340
3237
  dependencies = [
2341
- "bitflags",
3238
+ "bitflags 2.9.1",
2342
3239
  ]
2343
3240
 
2344
3241
  [[package]]
2345
- name = "regex"
2346
- version = "1.11.1"
3242
+ name = "redox_users"
3243
+ version = "0.4.6"
2347
3244
  source = "registry+https://github.com/rust-lang/crates.io-index"
2348
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
3245
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2349
3246
  dependencies = [
2350
- "aho-corasick",
2351
- "memchr",
2352
- "regex-automata 0.4.9",
2353
- "regex-syntax 0.8.5",
3247
+ "getrandom 0.2.16",
3248
+ "libredox",
3249
+ "thiserror 1.0.69",
2354
3250
  ]
2355
3251
 
2356
3252
  [[package]]
2357
- name = "regex-automata"
2358
- version = "0.1.10"
3253
+ name = "ref-cast"
3254
+ version = "1.0.24"
2359
3255
  source = "registry+https://github.com/rust-lang/crates.io-index"
2360
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
3256
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
2361
3257
  dependencies = [
2362
- "regex-syntax 0.6.29",
3258
+ "ref-cast-impl",
2363
3259
  ]
2364
3260
 
2365
3261
  [[package]]
2366
- name = "regex-automata"
2367
- version = "0.4.9"
3262
+ name = "ref-cast-impl"
3263
+ version = "1.0.24"
2368
3264
  source = "registry+https://github.com/rust-lang/crates.io-index"
2369
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
3265
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
3266
+ dependencies = [
3267
+ "proc-macro2",
3268
+ "quote",
3269
+ "syn 2.0.103",
3270
+ ]
3271
+
3272
+ [[package]]
3273
+ name = "regex"
3274
+ version = "1.11.1"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2370
3277
  dependencies = [
2371
3278
  "aho-corasick",
2372
3279
  "memchr",
2373
- "regex-syntax 0.8.5",
3280
+ "regex-automata",
3281
+ "regex-syntax",
2374
3282
  ]
2375
3283
 
2376
3284
  [[package]]
2377
- name = "regex-syntax"
2378
- version = "0.6.29"
3285
+ name = "regex-automata"
3286
+ version = "0.4.9"
2379
3287
  source = "registry+https://github.com/rust-lang/crates.io-index"
2380
- checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
3288
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
3289
+ dependencies = [
3290
+ "aho-corasick",
3291
+ "memchr",
3292
+ "regex-syntax",
3293
+ ]
2381
3294
 
2382
3295
  [[package]]
2383
3296
  name = "regex-syntax"
@@ -2387,43 +3300,51 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2387
3300
 
2388
3301
  [[package]]
2389
3302
  name = "reqwest"
2390
- version = "0.12.15"
3303
+ version = "0.12.20"
2391
3304
  source = "registry+https://github.com/rust-lang/crates.io-index"
2392
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3305
+ checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
2393
3306
  dependencies = [
2394
- "base64",
3307
+ "base64 0.22.1",
2395
3308
  "bytes",
3309
+ "encoding_rs",
2396
3310
  "futures-channel",
2397
3311
  "futures-core",
2398
3312
  "futures-util",
2399
- "http",
2400
- "http-body",
3313
+ "h2 0.4.10",
3314
+ "http 1.3.1",
3315
+ "http-body 1.0.1",
2401
3316
  "http-body-util",
2402
- "hyper",
3317
+ "hyper 1.6.0",
3318
+ "hyper-rustls",
2403
3319
  "hyper-util",
2404
- "ipnet",
2405
3320
  "js-sys",
2406
3321
  "log",
2407
3322
  "mime",
2408
- "once_cell",
2409
3323
  "percent-encoding",
2410
3324
  "pin-project-lite",
3325
+ "rustls",
3326
+ "rustls-pki-types",
2411
3327
  "serde",
2412
3328
  "serde_json",
2413
3329
  "serde_urlencoded",
2414
3330
  "sync_wrapper",
2415
3331
  "tokio",
2416
- "tokio-util",
3332
+ "tokio-rustls",
2417
3333
  "tower 0.5.2",
3334
+ "tower-http",
2418
3335
  "tower-service",
2419
3336
  "url",
2420
3337
  "wasm-bindgen",
2421
3338
  "wasm-bindgen-futures",
2422
- "wasm-streams",
2423
3339
  "web-sys",
2424
- "windows-registry",
2425
3340
  ]
2426
3341
 
3342
+ [[package]]
3343
+ name = "retain_mut"
3344
+ version = "0.1.9"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
3347
+
2427
3348
  [[package]]
2428
3349
  name = "ring"
2429
3350
  version = "0.17.14"
@@ -2434,15 +3355,15 @@ dependencies = [
2434
3355
  "cfg-if",
2435
3356
  "getrandom 0.2.16",
2436
3357
  "libc",
2437
- "untrusted",
3358
+ "untrusted 0.9.0",
2438
3359
  "windows-sys 0.52.0",
2439
3360
  ]
2440
3361
 
2441
3362
  [[package]]
2442
3363
  name = "rust_decimal"
2443
- version = "1.37.1"
3364
+ version = "1.37.2"
2444
3365
  source = "registry+https://github.com/rust-lang/crates.io-index"
2445
- checksum = "faa7de2ba56ac291bd90c6b9bece784a52ae1411f9506544b3eae36dd2356d50"
3366
+ checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
2446
3367
  dependencies = [
2447
3368
  "arrayvec",
2448
3369
  "num-traits",
@@ -2450,9 +3371,9 @@ dependencies = [
2450
3371
 
2451
3372
  [[package]]
2452
3373
  name = "rustc-demangle"
2453
- version = "0.1.24"
3374
+ version = "0.1.25"
2454
3375
  source = "registry+https://github.com/rust-lang/crates.io-index"
2455
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3376
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2456
3377
 
2457
3378
  [[package]]
2458
3379
  name = "rustc-hash"
@@ -2466,13 +3387,22 @@ version = "2.1.1"
2466
3387
  source = "registry+https://github.com/rust-lang/crates.io-index"
2467
3388
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2468
3389
 
3390
+ [[package]]
3391
+ name = "rustc_version"
3392
+ version = "0.4.1"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3395
+ dependencies = [
3396
+ "semver",
3397
+ ]
3398
+
2469
3399
  [[package]]
2470
3400
  name = "rustix"
2471
3401
  version = "0.38.44"
2472
3402
  source = "registry+https://github.com/rust-lang/crates.io-index"
2473
3403
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2474
3404
  dependencies = [
2475
- "bitflags",
3405
+ "bitflags 2.9.1",
2476
3406
  "errno",
2477
3407
  "libc",
2478
3408
  "linux-raw-sys 0.4.15",
@@ -2481,11 +3411,11 @@ dependencies = [
2481
3411
 
2482
3412
  [[package]]
2483
3413
  name = "rustix"
2484
- version = "1.0.5"
3414
+ version = "1.0.7"
2485
3415
  source = "registry+https://github.com/rust-lang/crates.io-index"
2486
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
3416
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2487
3417
  dependencies = [
2488
- "bitflags",
3418
+ "bitflags 2.9.1",
2489
3419
  "errno",
2490
3420
  "libc",
2491
3421
  "linux-raw-sys 0.9.4",
@@ -2494,9 +3424,9 @@ dependencies = [
2494
3424
 
2495
3425
  [[package]]
2496
3426
  name = "rustls"
2497
- version = "0.23.26"
3427
+ version = "0.23.28"
2498
3428
  source = "registry+https://github.com/rust-lang/crates.io-index"
2499
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
3429
+ checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
2500
3430
  dependencies = [
2501
3431
  "aws-lc-rs",
2502
3432
  "log",
@@ -2521,27 +3451,30 @@ dependencies = [
2521
3451
 
2522
3452
  [[package]]
2523
3453
  name = "rustls-pki-types"
2524
- version = "1.11.0"
3454
+ version = "1.12.0"
2525
3455
  source = "registry+https://github.com/rust-lang/crates.io-index"
2526
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3456
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3457
+ dependencies = [
3458
+ "zeroize",
3459
+ ]
2527
3460
 
2528
3461
  [[package]]
2529
3462
  name = "rustls-webpki"
2530
- version = "0.103.1"
3463
+ version = "0.103.3"
2531
3464
  source = "registry+https://github.com/rust-lang/crates.io-index"
2532
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
3465
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
2533
3466
  dependencies = [
2534
3467
  "aws-lc-rs",
2535
3468
  "ring",
2536
3469
  "rustls-pki-types",
2537
- "untrusted",
3470
+ "untrusted 0.9.0",
2538
3471
  ]
2539
3472
 
2540
3473
  [[package]]
2541
3474
  name = "rustversion"
2542
- version = "1.0.20"
3475
+ version = "1.0.21"
2543
3476
  source = "registry+https://github.com/rust-lang/crates.io-index"
2544
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3477
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2545
3478
 
2546
3479
  [[package]]
2547
3480
  name = "ryu"
@@ -2549,6 +3482,62 @@ version = "1.0.20"
2549
3482
  source = "registry+https://github.com/rust-lang/crates.io-index"
2550
3483
  checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2551
3484
 
3485
+ [[package]]
3486
+ name = "safer-ffi"
3487
+ version = "0.1.13"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "435fdd58b61a6f1d8545274c1dfa458e905ff68c166e65e294a0130ef5e675bd"
3490
+ dependencies = [
3491
+ "extern-c",
3492
+ "libc",
3493
+ "macro_rules_attribute",
3494
+ "paste",
3495
+ "safer_ffi-proc_macros",
3496
+ "scopeguard",
3497
+ "stabby",
3498
+ "uninit",
3499
+ "unwind_safe",
3500
+ "with_builtin_macros",
3501
+ ]
3502
+
3503
+ [[package]]
3504
+ name = "safer-ffi-gen"
3505
+ version = "0.9.2"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "bdc3e72a8e99de537461ab5e9331d32c08dd558493e844cb70753a9890fdbc48"
3508
+ dependencies = [
3509
+ "once_cell",
3510
+ "safer-ffi",
3511
+ "safer-ffi-gen-macro",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "safer-ffi-gen-macro"
3516
+ version = "0.9.2"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "836aa8cd7b269dcdd3d81cca1ddc136aa1d2b05f30b6a34c0ff075152b2e3771"
3519
+ dependencies = [
3520
+ "heck 0.4.1",
3521
+ "proc-macro-error",
3522
+ "proc-macro2",
3523
+ "quote",
3524
+ "syn 2.0.103",
3525
+ "thiserror 1.0.69",
3526
+ ]
3527
+
3528
+ [[package]]
3529
+ name = "safer_ffi-proc_macros"
3530
+ version = "0.1.13"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "f0f25be5ba5f319542edb31925517e0380245ae37df50a9752cdbc05ef948156"
3533
+ dependencies = [
3534
+ "macro_rules_attribute",
3535
+ "prettyplease 0.1.25",
3536
+ "proc-macro2",
3537
+ "quote",
3538
+ "syn 1.0.109",
3539
+ ]
3540
+
2552
3541
  [[package]]
2553
3542
  name = "same-file"
2554
3543
  version = "1.0.6"
@@ -2567,6 +3556,31 @@ dependencies = [
2567
3556
  "windows-sys 0.59.0",
2568
3557
  ]
2569
3558
 
3559
+ [[package]]
3560
+ name = "schemars"
3561
+ version = "1.0.3"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "1375ba8ef45a6f15d83fa8748f1079428295d403d6ea991d09ab100155fbc06d"
3564
+ dependencies = [
3565
+ "dyn-clone",
3566
+ "ref-cast",
3567
+ "schemars_derive",
3568
+ "serde",
3569
+ "serde_json",
3570
+ ]
3571
+
3572
+ [[package]]
3573
+ name = "schemars_derive"
3574
+ version = "1.0.3"
3575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3576
+ checksum = "2b13ed22d6d49fe23712e068770b5c4df4a693a2b02eeff8e7ca3135627a24f6"
3577
+ dependencies = [
3578
+ "proc-macro2",
3579
+ "quote",
3580
+ "serde_derive_internals",
3581
+ "syn 2.0.103",
3582
+ ]
3583
+
2570
3584
  [[package]]
2571
3585
  name = "scopeguard"
2572
3586
  version = "1.2.0"
@@ -2579,8 +3593,8 @@ version = "3.2.0"
2579
3593
  source = "registry+https://github.com/rust-lang/crates.io-index"
2580
3594
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2581
3595
  dependencies = [
2582
- "bitflags",
2583
- "core-foundation",
3596
+ "bitflags 2.9.1",
3597
+ "core-foundation 0.10.1",
2584
3598
  "core-foundation-sys",
2585
3599
  "libc",
2586
3600
  "security-framework-sys",
@@ -2596,6 +3610,12 @@ dependencies = [
2596
3610
  "libc",
2597
3611
  ]
2598
3612
 
3613
+ [[package]]
3614
+ name = "semver"
3615
+ version = "1.0.26"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3618
+
2599
3619
  [[package]]
2600
3620
  name = "serde"
2601
3621
  version = "1.0.219"
@@ -2607,9 +3627,9 @@ dependencies = [
2607
3627
 
2608
3628
  [[package]]
2609
3629
  name = "serde-pyobject"
2610
- version = "0.6.1"
3630
+ version = "0.6.2"
2611
3631
  source = "registry+https://github.com/rust-lang/crates.io-index"
2612
- checksum = "8448b99b12404bbb03ee8fe18f4ddbc693a0859074ea7b746bc17e47e510299c"
3632
+ checksum = "4c485853a65e1a5f2db72e818ec4c7548a39614fabdd988f5e3504071453b7d7"
2613
3633
  dependencies = [
2614
3634
  "pyo3",
2615
3635
  "serde",
@@ -2623,7 +3643,18 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2623
3643
  dependencies = [
2624
3644
  "proc-macro2",
2625
3645
  "quote",
2626
- "syn",
3646
+ "syn 2.0.103",
3647
+ ]
3648
+
3649
+ [[package]]
3650
+ name = "serde_derive_internals"
3651
+ version = "0.29.1"
3652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3653
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3654
+ dependencies = [
3655
+ "proc-macro2",
3656
+ "quote",
3657
+ "syn 2.0.103",
2627
3658
  ]
2628
3659
 
2629
3660
  [[package]]
@@ -2638,11 +3669,22 @@ dependencies = [
2638
3669
  "serde",
2639
3670
  ]
2640
3671
 
3672
+ [[package]]
3673
+ name = "serde_qs"
3674
+ version = "0.8.5"
3675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3676
+ checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
3677
+ dependencies = [
3678
+ "percent-encoding",
3679
+ "serde",
3680
+ "thiserror 1.0.69",
3681
+ ]
3682
+
2641
3683
  [[package]]
2642
3684
  name = "serde_spanned"
2643
- version = "0.6.8"
3685
+ version = "0.6.9"
2644
3686
  source = "registry+https://github.com/rust-lang/crates.io-index"
2645
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
3687
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2646
3688
  dependencies = [
2647
3689
  "serde",
2648
3690
  ]
@@ -2672,6 +3714,23 @@ dependencies = [
2672
3714
  "unsafe-libyaml",
2673
3715
  ]
2674
3716
 
3717
+ [[package]]
3718
+ name = "sha1"
3719
+ version = "0.10.6"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3722
+ dependencies = [
3723
+ "cfg-if",
3724
+ "cpufeatures",
3725
+ "digest",
3726
+ ]
3727
+
3728
+ [[package]]
3729
+ name = "sha2-const-stable"
3730
+ version = "0.1.0"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "5f179d4e11094a893b82fff208f74d448a7512f99f5a0acbd5c679b705f83ed9"
3733
+
2675
3734
  [[package]]
2676
3735
  name = "sharded-slab"
2677
3736
  version = "0.1.7"
@@ -2697,21 +3756,32 @@ dependencies = [
2697
3756
  ]
2698
3757
 
2699
3758
  [[package]]
2700
- name = "slab"
2701
- version = "0.4.9"
3759
+ name = "simple_asn1"
3760
+ version = "0.6.3"
2702
3761
  source = "registry+https://github.com/rust-lang/crates.io-index"
2703
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3762
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
2704
3763
  dependencies = [
2705
- "autocfg",
3764
+ "num-bigint",
3765
+ "num-traits",
3766
+ "thiserror 2.0.12",
3767
+ "time",
2706
3768
  ]
2707
3769
 
3770
+ [[package]]
3771
+ name = "slab"
3772
+ version = "0.4.11"
3773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3774
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3775
+
2708
3776
  [[package]]
2709
3777
  name = "slim-examples"
2710
3778
  version = "0.1.0"
2711
3779
  dependencies = [
2712
3780
  "agntcy-slim",
3781
+ "agntcy-slim-auth",
2713
3782
  "agntcy-slim-config",
2714
3783
  "agntcy-slim-datapath",
3784
+ "agntcy-slim-mls",
2715
3785
  "agntcy-slim-service",
2716
3786
  "agntcy-slim-signal",
2717
3787
  "clap",
@@ -2721,18 +3791,62 @@ dependencies = [
2721
3791
 
2722
3792
  [[package]]
2723
3793
  name = "smallvec"
2724
- version = "1.15.0"
3794
+ version = "1.15.1"
3795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3796
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3797
+
3798
+ [[package]]
3799
+ name = "socket2"
3800
+ version = "0.5.10"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3803
+ dependencies = [
3804
+ "libc",
3805
+ "windows-sys 0.52.0",
3806
+ ]
3807
+
3808
+ [[package]]
3809
+ name = "spin"
3810
+ version = "0.10.0"
3811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3812
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3813
+ dependencies = [
3814
+ "portable-atomic",
3815
+ ]
3816
+
3817
+ [[package]]
3818
+ name = "stabby"
3819
+ version = "36.2.2"
3820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3821
+ checksum = "89b7e94eaf470c2e76b5f15fb2fb49714471a36cc512df5ee231e62e82ec79f8"
3822
+ dependencies = [
3823
+ "rustversion",
3824
+ "stabby-abi",
3825
+ ]
3826
+
3827
+ [[package]]
3828
+ name = "stabby-abi"
3829
+ version = "36.2.2"
2725
3830
  source = "registry+https://github.com/rust-lang/crates.io-index"
2726
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3831
+ checksum = "0dc7a63b8276b54e51bfffe3d85da56e7906b2dcfcb29018a8ab666c06734c1a"
3832
+ dependencies = [
3833
+ "rustc_version",
3834
+ "rustversion",
3835
+ "sha2-const-stable",
3836
+ "stabby-macros",
3837
+ ]
2727
3838
 
2728
3839
  [[package]]
2729
- name = "socket2"
2730
- version = "0.5.9"
3840
+ name = "stabby-macros"
3841
+ version = "36.2.2"
2731
3842
  source = "registry+https://github.com/rust-lang/crates.io-index"
2732
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3843
+ checksum = "eecb7ec5611ec93ec79d120fbe55f31bea234dc1bed1001d4a071bb688651615"
2733
3844
  dependencies = [
2734
- "libc",
2735
- "windows-sys 0.52.0",
3845
+ "proc-macro-crate",
3846
+ "proc-macro2",
3847
+ "quote",
3848
+ "rand 0.8.5",
3849
+ "syn 1.0.109",
2736
3850
  ]
2737
3851
 
2738
3852
  [[package]]
@@ -2755,9 +3869,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2755
3869
 
2756
3870
  [[package]]
2757
3871
  name = "syn"
2758
- version = "2.0.100"
3872
+ version = "1.0.109"
3873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3874
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3875
+ dependencies = [
3876
+ "proc-macro2",
3877
+ "quote",
3878
+ "unicode-ident",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "syn"
3883
+ version = "2.0.103"
2759
3884
  source = "registry+https://github.com/rust-lang/crates.io-index"
2760
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3885
+ checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
2761
3886
  dependencies = [
2762
3887
  "proc-macro2",
2763
3888
  "quote",
@@ -2775,13 +3900,34 @@ dependencies = [
2775
3900
 
2776
3901
  [[package]]
2777
3902
  name = "synstructure"
2778
- version = "0.13.1"
3903
+ version = "0.13.2"
2779
3904
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3905
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2781
3906
  dependencies = [
2782
3907
  "proc-macro2",
2783
3908
  "quote",
2784
- "syn",
3909
+ "syn 2.0.103",
3910
+ ]
3911
+
3912
+ [[package]]
3913
+ name = "system-configuration"
3914
+ version = "0.6.1"
3915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3916
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3917
+ dependencies = [
3918
+ "bitflags 2.9.1",
3919
+ "core-foundation 0.9.4",
3920
+ "system-configuration-sys",
3921
+ ]
3922
+
3923
+ [[package]]
3924
+ name = "system-configuration-sys"
3925
+ version = "0.6.0"
3926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3927
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3928
+ dependencies = [
3929
+ "core-foundation-sys",
3930
+ "libc",
2785
3931
  ]
2786
3932
 
2787
3933
  [[package]]
@@ -2792,14 +3938,14 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2792
3938
 
2793
3939
  [[package]]
2794
3940
  name = "tempfile"
2795
- version = "3.19.1"
3941
+ version = "3.20.0"
2796
3942
  source = "registry+https://github.com/rust-lang/crates.io-index"
2797
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3943
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2798
3944
  dependencies = [
2799
- "fastrand",
2800
- "getrandom 0.3.2",
3945
+ "fastrand 2.3.0",
3946
+ "getrandom 0.3.3",
2801
3947
  "once_cell",
2802
- "rustix 1.0.5",
3948
+ "rustix 1.0.7",
2803
3949
  "windows-sys 0.59.0",
2804
3950
  ]
2805
3951
 
@@ -2808,26 +3954,48 @@ name = "testing"
2808
3954
  version = "0.1.0"
2809
3955
  dependencies = [
2810
3956
  "agntcy-slim",
3957
+ "agntcy-slim-auth",
2811
3958
  "agntcy-slim-config",
2812
3959
  "agntcy-slim-datapath",
2813
3960
  "agntcy-slim-service",
3961
+ "agntcy-slim-tracing",
2814
3962
  "clap",
2815
3963
  "indicatif",
2816
3964
  "parking_lot",
2817
3965
  "rand 0.9.1",
2818
- "thiserror",
3966
+ "thiserror 2.0.12",
2819
3967
  "tokio",
2820
3968
  "tokio-util",
2821
3969
  "tracing",
2822
3970
  ]
2823
3971
 
3972
+ [[package]]
3973
+ name = "thiserror"
3974
+ version = "1.0.69"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3977
+ dependencies = [
3978
+ "thiserror-impl 1.0.69",
3979
+ ]
3980
+
2824
3981
  [[package]]
2825
3982
  name = "thiserror"
2826
3983
  version = "2.0.12"
2827
3984
  source = "registry+https://github.com/rust-lang/crates.io-index"
2828
3985
  checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2829
3986
  dependencies = [
2830
- "thiserror-impl",
3987
+ "thiserror-impl 2.0.12",
3988
+ ]
3989
+
3990
+ [[package]]
3991
+ name = "thiserror-impl"
3992
+ version = "1.0.69"
3993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3994
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3995
+ dependencies = [
3996
+ "proc-macro2",
3997
+ "quote",
3998
+ "syn 2.0.103",
2831
3999
  ]
2832
4000
 
2833
4001
  [[package]]
@@ -2838,17 +4006,16 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2838
4006
  dependencies = [
2839
4007
  "proc-macro2",
2840
4008
  "quote",
2841
- "syn",
4009
+ "syn 2.0.103",
2842
4010
  ]
2843
4011
 
2844
4012
  [[package]]
2845
4013
  name = "thread_local"
2846
- version = "1.1.8"
4014
+ version = "1.1.9"
2847
4015
  source = "registry+https://github.com/rust-lang/crates.io-index"
2848
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
4016
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2849
4017
  dependencies = [
2850
4018
  "cfg-if",
2851
- "once_cell",
2852
4019
  ]
2853
4020
 
2854
4021
  [[package]]
@@ -2858,9 +4025,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
4025
  checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2859
4026
  dependencies = [
2860
4027
  "deranged",
4028
+ "itoa",
2861
4029
  "num-conv",
2862
4030
  "powerfmt",
4031
+ "serde",
2863
4032
  "time-core",
4033
+ "time-macros",
2864
4034
  ]
2865
4035
 
2866
4036
  [[package]]
@@ -2869,11 +4039,21 @@ version = "0.1.4"
2869
4039
  source = "registry+https://github.com/rust-lang/crates.io-index"
2870
4040
  checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2871
4041
 
4042
+ [[package]]
4043
+ name = "time-macros"
4044
+ version = "0.2.22"
4045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4046
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
4047
+ dependencies = [
4048
+ "num-conv",
4049
+ "time-core",
4050
+ ]
4051
+
2872
4052
  [[package]]
2873
4053
  name = "tinystr"
2874
- version = "0.7.6"
4054
+ version = "0.8.1"
2875
4055
  source = "registry+https://github.com/rust-lang/crates.io-index"
2876
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4056
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2877
4057
  dependencies = [
2878
4058
  "displaydoc",
2879
4059
  "zerovec",
@@ -2891,9 +4071,9 @@ dependencies = [
2891
4071
 
2892
4072
  [[package]]
2893
4073
  name = "tokio"
2894
- version = "1.44.2"
4074
+ version = "1.45.1"
2895
4075
  source = "registry+https://github.com/rust-lang/crates.io-index"
2896
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
4076
+ checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
2897
4077
  dependencies = [
2898
4078
  "backtrace",
2899
4079
  "bytes",
@@ -2914,7 +4094,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2914
4094
  dependencies = [
2915
4095
  "proc-macro2",
2916
4096
  "quote",
2917
- "syn",
4097
+ "syn 2.0.103",
2918
4098
  ]
2919
4099
 
2920
4100
  [[package]]
@@ -2953,9 +4133,9 @@ dependencies = [
2953
4133
 
2954
4134
  [[package]]
2955
4135
  name = "toml"
2956
- version = "0.8.20"
4136
+ version = "0.8.23"
2957
4137
  source = "registry+https://github.com/rust-lang/crates.io-index"
2958
- checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
4138
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2959
4139
  dependencies = [
2960
4140
  "serde",
2961
4141
  "serde_spanned",
@@ -2965,26 +4145,33 @@ dependencies = [
2965
4145
 
2966
4146
  [[package]]
2967
4147
  name = "toml_datetime"
2968
- version = "0.6.8"
4148
+ version = "0.6.11"
2969
4149
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
4150
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2971
4151
  dependencies = [
2972
4152
  "serde",
2973
4153
  ]
2974
4154
 
2975
4155
  [[package]]
2976
4156
  name = "toml_edit"
2977
- version = "0.22.24"
4157
+ version = "0.22.27"
2978
4158
  source = "registry+https://github.com/rust-lang/crates.io-index"
2979
- checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
4159
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2980
4160
  dependencies = [
2981
4161
  "indexmap 2.9.0",
2982
4162
  "serde",
2983
4163
  "serde_spanned",
2984
4164
  "toml_datetime",
2985
- "winnow 0.7.6",
4165
+ "toml_write",
4166
+ "winnow 0.7.11",
2986
4167
  ]
2987
4168
 
4169
+ [[package]]
4170
+ name = "toml_write"
4171
+ version = "0.1.2"
4172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4173
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
4174
+
2988
4175
  [[package]]
2989
4176
  name = "tonic"
2990
4177
  version = "0.12.3"
@@ -2992,17 +4179,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
4179
  checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2993
4180
  dependencies = [
2994
4181
  "async-trait",
2995
- "base64",
4182
+ "base64 0.22.1",
2996
4183
  "bytes",
2997
- "http",
2998
- "http-body",
4184
+ "http 1.3.1",
4185
+ "http-body 1.0.1",
2999
4186
  "http-body-util",
3000
- "hyper",
4187
+ "hyper 1.6.0",
3001
4188
  "hyper-timeout",
3002
4189
  "hyper-util",
3003
4190
  "percent-encoding",
3004
4191
  "pin-project",
3005
- "prost",
4192
+ "prost 0.13.5",
3006
4193
  "tokio",
3007
4194
  "tokio-stream",
3008
4195
  "tower 0.4.13",
@@ -3013,24 +4200,24 @@ dependencies = [
3013
4200
 
3014
4201
  [[package]]
3015
4202
  name = "tonic"
3016
- version = "0.13.0"
4203
+ version = "0.13.1"
3017
4204
  source = "registry+https://github.com/rust-lang/crates.io-index"
3018
- checksum = "85839f0b32fd242bb3209262371d07feda6d780d16ee9d2bc88581b89da1549b"
4205
+ checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
3019
4206
  dependencies = [
3020
4207
  "async-trait",
3021
4208
  "axum",
3022
- "base64",
4209
+ "base64 0.22.1",
3023
4210
  "bytes",
3024
- "h2",
3025
- "http",
3026
- "http-body",
4211
+ "h2 0.4.10",
4212
+ "http 1.3.1",
4213
+ "http-body 1.0.1",
3027
4214
  "http-body-util",
3028
- "hyper",
4215
+ "hyper 1.6.0",
3029
4216
  "hyper-timeout",
3030
4217
  "hyper-util",
3031
4218
  "percent-encoding",
3032
4219
  "pin-project",
3033
- "prost",
4220
+ "prost 0.13.5",
3034
4221
  "socket2",
3035
4222
  "tokio",
3036
4223
  "tokio-stream",
@@ -3042,16 +4229,16 @@ dependencies = [
3042
4229
 
3043
4230
  [[package]]
3044
4231
  name = "tonic-build"
3045
- version = "0.13.0"
4232
+ version = "0.13.1"
3046
4233
  source = "registry+https://github.com/rust-lang/crates.io-index"
3047
- checksum = "d85f0383fadd15609306383a90e85eaed44169f931a5d2be1b42c76ceff1825e"
4234
+ checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
3048
4235
  dependencies = [
3049
- "prettyplease",
4236
+ "prettyplease 0.2.34",
3050
4237
  "proc-macro2",
3051
4238
  "prost-build",
3052
- "prost-types",
4239
+ "prost-types 0.13.5",
3053
4240
  "quote",
3054
- "syn",
4241
+ "syn 2.0.103",
3055
4242
  ]
3056
4243
 
3057
4244
  [[package]]
@@ -3062,11 +4249,11 @@ checksum = "e96bedfe5ae00cd370db4029612380c267bc224b2d45f1d35402b6b588e68d7b"
3062
4249
  dependencies = [
3063
4250
  "async-stream",
3064
4251
  "futures",
3065
- "hyper",
4252
+ "hyper 1.6.0",
3066
4253
  "hyper-util",
3067
4254
  "tokio",
3068
4255
  "tokio-rustls",
3069
- "tonic 0.13.0",
4256
+ "tonic 0.13.1",
3070
4257
  "tower 0.5.2",
3071
4258
  "tracing",
3072
4259
  ]
@@ -3112,16 +4299,20 @@ dependencies = [
3112
4299
 
3113
4300
  [[package]]
3114
4301
  name = "tower-http"
3115
- version = "0.6.2"
4302
+ version = "0.6.6"
3116
4303
  source = "registry+https://github.com/rust-lang/crates.io-index"
3117
- checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
4304
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3118
4305
  dependencies = [
3119
- "base64",
3120
- "bitflags",
4306
+ "base64 0.22.1",
4307
+ "bitflags 2.9.1",
3121
4308
  "bytes",
3122
- "http",
4309
+ "futures-util",
4310
+ "http 1.3.1",
4311
+ "http-body 1.0.1",
4312
+ "iri-string",
3123
4313
  "mime",
3124
4314
  "pin-project-lite",
4315
+ "tower 0.5.2",
3125
4316
  "tower-layer",
3126
4317
  "tower-service",
3127
4318
  ]
@@ -3132,25 +4323,6 @@ version = "0.3.3"
3132
4323
  source = "registry+https://github.com/rust-lang/crates.io-index"
3133
4324
  checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3134
4325
 
3135
- [[package]]
3136
- name = "tower-reqwest"
3137
- version = "0.4.1"
3138
- source = "registry+https://github.com/rust-lang/crates.io-index"
3139
- checksum = "966a4ddeb14dcfba82239db8c6cb7a3890abfec7fb615bd2362bb33a17602df6"
3140
- dependencies = [
3141
- "bytes",
3142
- "futures-util",
3143
- "http",
3144
- "http-body",
3145
- "http-body-util",
3146
- "include-utils",
3147
- "pin-project",
3148
- "reqwest",
3149
- "thiserror",
3150
- "tower-layer",
3151
- "tower-service",
3152
- ]
3153
-
3154
4326
  [[package]]
3155
4327
  name = "tower-service"
3156
4328
  version = "0.3.3"
@@ -3170,20 +4342,20 @@ dependencies = [
3170
4342
 
3171
4343
  [[package]]
3172
4344
  name = "tracing-attributes"
3173
- version = "0.1.28"
4345
+ version = "0.1.30"
3174
4346
  source = "registry+https://github.com/rust-lang/crates.io-index"
3175
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
4347
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3176
4348
  dependencies = [
3177
4349
  "proc-macro2",
3178
4350
  "quote",
3179
- "syn",
4351
+ "syn 2.0.103",
3180
4352
  ]
3181
4353
 
3182
4354
  [[package]]
3183
4355
  name = "tracing-core"
3184
- version = "0.1.33"
4356
+ version = "0.1.34"
3185
4357
  source = "registry+https://github.com/rust-lang/crates.io-index"
3186
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
4358
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3187
4359
  dependencies = [
3188
4360
  "once_cell",
3189
4361
  "valuable",
@@ -3220,14 +4392,14 @@ dependencies = [
3220
4392
 
3221
4393
  [[package]]
3222
4394
  name = "tracing-subscriber"
3223
- version = "0.3.19"
4395
+ version = "0.3.20"
3224
4396
  source = "registry+https://github.com/rust-lang/crates.io-index"
3225
- checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
4397
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
3226
4398
  dependencies = [
3227
4399
  "matchers",
3228
4400
  "nu-ansi-term",
3229
4401
  "once_cell",
3230
- "regex",
4402
+ "regex-automata",
3231
4403
  "sharded-slab",
3232
4404
  "smallvec",
3233
4405
  "thread_local",
@@ -3254,7 +4426,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
4426
  checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
3255
4427
  dependencies = [
3256
4428
  "quote",
3257
- "syn",
4429
+ "syn 2.0.103",
3258
4430
  ]
3259
4431
 
3260
4432
  [[package]]
@@ -3263,6 +4435,21 @@ version = "0.2.5"
3263
4435
  source = "registry+https://github.com/rust-lang/crates.io-index"
3264
4436
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3265
4437
 
4438
+ [[package]]
4439
+ name = "twox-hash"
4440
+ version = "2.1.1"
4441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4442
+ checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
4443
+ dependencies = [
4444
+ "rand 0.9.1",
4445
+ ]
4446
+
4447
+ [[package]]
4448
+ name = "typenum"
4449
+ version = "1.18.0"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
4452
+
3266
4453
  [[package]]
3267
4454
  name = "unicode-ident"
3268
4455
  version = "1.0.18"
@@ -3271,9 +4458,9 @@ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3271
4458
 
3272
4459
  [[package]]
3273
4460
  name = "unicode-width"
3274
- version = "0.2.0"
4461
+ version = "0.2.1"
3275
4462
  source = "registry+https://github.com/rust-lang/crates.io-index"
3276
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
4463
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
3277
4464
 
3278
4465
  [[package]]
3279
4466
  name = "unindent"
@@ -3281,18 +4468,45 @@ version = "0.2.4"
3281
4468
  source = "registry+https://github.com/rust-lang/crates.io-index"
3282
4469
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3283
4470
 
4471
+ [[package]]
4472
+ name = "uninit"
4473
+ version = "0.5.1"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "3e130f2ed46ca5d8ec13c7ff95836827f92f5f5f37fd2b2bf16f33c408d98bb6"
4476
+ dependencies = [
4477
+ "extension-traits",
4478
+ ]
4479
+
3284
4480
  [[package]]
3285
4481
  name = "unsafe-libyaml"
3286
4482
  version = "0.2.11"
3287
4483
  source = "registry+https://github.com/rust-lang/crates.io-index"
3288
4484
  checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3289
4485
 
4486
+ [[package]]
4487
+ name = "untrusted"
4488
+ version = "0.7.1"
4489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4490
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
4491
+
3290
4492
  [[package]]
3291
4493
  name = "untrusted"
3292
4494
  version = "0.9.0"
3293
4495
  source = "registry+https://github.com/rust-lang/crates.io-index"
3294
4496
  checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3295
4497
 
4498
+ [[package]]
4499
+ name = "unty"
4500
+ version = "0.0.4"
4501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4502
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
4503
+
4504
+ [[package]]
4505
+ name = "unwind_safe"
4506
+ version = "0.1.0"
4507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4508
+ checksum = "0976c77def3f1f75c4ef892a292c31c0bbe9e3d0702c63044d7c76db298171a3"
4509
+
3296
4510
  [[package]]
3297
4511
  name = "url"
3298
4512
  version = "2.5.4"
@@ -3302,14 +4516,9 @@ dependencies = [
3302
4516
  "form_urlencoded",
3303
4517
  "idna",
3304
4518
  "percent-encoding",
4519
+ "serde",
3305
4520
  ]
3306
4521
 
3307
- [[package]]
3308
- name = "utf16_iter"
3309
- version = "1.0.5"
3310
- source = "registry+https://github.com/rust-lang/crates.io-index"
3311
- checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3312
-
3313
4522
  [[package]]
3314
4523
  name = "utf8_iter"
3315
4524
  version = "1.0.4"
@@ -3324,11 +4533,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3324
4533
 
3325
4534
  [[package]]
3326
4535
  name = "uuid"
3327
- version = "1.16.0"
4536
+ version = "1.17.0"
3328
4537
  source = "registry+https://github.com/rust-lang/crates.io-index"
3329
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
4538
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
3330
4539
  dependencies = [
3331
- "getrandom 0.3.2",
4540
+ "getrandom 0.3.3",
4541
+ "js-sys",
4542
+ "wasm-bindgen",
3332
4543
  ]
3333
4544
 
3334
4545
  [[package]]
@@ -3337,6 +4548,24 @@ version = "0.1.1"
3337
4548
  source = "registry+https://github.com/rust-lang/crates.io-index"
3338
4549
  checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3339
4550
 
4551
+ [[package]]
4552
+ name = "version_check"
4553
+ version = "0.9.5"
4554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4555
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4556
+
4557
+ [[package]]
4558
+ name = "virtue"
4559
+ version = "0.0.18"
4560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4561
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
4562
+
4563
+ [[package]]
4564
+ name = "waker-fn"
4565
+ version = "1.2.0"
4566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4567
+ checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7"
4568
+
3340
4569
  [[package]]
3341
4570
  name = "walkdir"
3342
4571
  version = "2.5.0"
@@ -3358,9 +4587,15 @@ dependencies = [
3358
4587
 
3359
4588
  [[package]]
3360
4589
  name = "wasi"
3361
- version = "0.11.0+wasi-snapshot-preview1"
4590
+ version = "0.9.0+wasi-snapshot-preview1"
4591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4592
+ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
4593
+
4594
+ [[package]]
4595
+ name = "wasi"
4596
+ version = "0.11.1+wasi-snapshot-preview1"
3362
4597
  source = "registry+https://github.com/rust-lang/crates.io-index"
3363
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4598
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3364
4599
 
3365
4600
  [[package]]
3366
4601
  name = "wasi"
@@ -3393,7 +4628,7 @@ dependencies = [
3393
4628
  "log",
3394
4629
  "proc-macro2",
3395
4630
  "quote",
3396
- "syn",
4631
+ "syn 2.0.103",
3397
4632
  "wasm-bindgen-shared",
3398
4633
  ]
3399
4634
 
@@ -3428,7 +4663,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3428
4663
  dependencies = [
3429
4664
  "proc-macro2",
3430
4665
  "quote",
3431
- "syn",
4666
+ "syn 2.0.103",
3432
4667
  "wasm-bindgen-backend",
3433
4668
  "wasm-bindgen-shared",
3434
4669
  ]
@@ -3442,19 +4677,6 @@ dependencies = [
3442
4677
  "unicode-ident",
3443
4678
  ]
3444
4679
 
3445
- [[package]]
3446
- name = "wasm-streams"
3447
- version = "0.4.2"
3448
- source = "registry+https://github.com/rust-lang/crates.io-index"
3449
- checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3450
- dependencies = [
3451
- "futures-util",
3452
- "js-sys",
3453
- "wasm-bindgen",
3454
- "wasm-bindgen-futures",
3455
- "web-sys",
3456
- ]
3457
-
3458
4680
  [[package]]
3459
4681
  name = "web-sys"
3460
4682
  version = "0.3.77"
@@ -3487,22 +4709,6 @@ dependencies = [
3487
4709
  "rustix 0.38.44",
3488
4710
  ]
3489
4711
 
3490
- [[package]]
3491
- name = "winapi"
3492
- version = "0.3.9"
3493
- source = "registry+https://github.com/rust-lang/crates.io-index"
3494
- checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3495
- dependencies = [
3496
- "winapi-i686-pc-windows-gnu",
3497
- "winapi-x86_64-pc-windows-gnu",
3498
- ]
3499
-
3500
- [[package]]
3501
- name = "winapi-i686-pc-windows-gnu"
3502
- version = "0.4.0"
3503
- source = "registry+https://github.com/rust-lang/crates.io-index"
3504
- checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3505
-
3506
4712
  [[package]]
3507
4713
  name = "winapi-util"
3508
4714
  version = "0.1.9"
@@ -3512,23 +4718,17 @@ dependencies = [
3512
4718
  "windows-sys 0.59.0",
3513
4719
  ]
3514
4720
 
3515
- [[package]]
3516
- name = "winapi-x86_64-pc-windows-gnu"
3517
- version = "0.4.0"
3518
- source = "registry+https://github.com/rust-lang/crates.io-index"
3519
- checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3520
-
3521
4721
  [[package]]
3522
4722
  name = "windows-core"
3523
- version = "0.61.0"
4723
+ version = "0.61.2"
3524
4724
  source = "registry+https://github.com/rust-lang/crates.io-index"
3525
- checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
4725
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3526
4726
  dependencies = [
3527
4727
  "windows-implement",
3528
4728
  "windows-interface",
3529
4729
  "windows-link",
3530
4730
  "windows-result",
3531
- "windows-strings 0.4.0",
4731
+ "windows-strings",
3532
4732
  ]
3533
4733
 
3534
4734
  [[package]]
@@ -3539,7 +4739,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3539
4739
  dependencies = [
3540
4740
  "proc-macro2",
3541
4741
  "quote",
3542
- "syn",
4742
+ "syn 2.0.103",
3543
4743
  ]
3544
4744
 
3545
4745
  [[package]]
@@ -3550,51 +4750,51 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3550
4750
  dependencies = [
3551
4751
  "proc-macro2",
3552
4752
  "quote",
3553
- "syn",
4753
+ "syn 2.0.103",
3554
4754
  ]
3555
4755
 
3556
4756
  [[package]]
3557
4757
  name = "windows-link"
3558
- version = "0.1.1"
4758
+ version = "0.1.3"
3559
4759
  source = "registry+https://github.com/rust-lang/crates.io-index"
3560
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4760
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3561
4761
 
3562
4762
  [[package]]
3563
4763
  name = "windows-registry"
3564
- version = "0.4.0"
4764
+ version = "0.5.2"
3565
4765
  source = "registry+https://github.com/rust-lang/crates.io-index"
3566
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4766
+ checksum = "b3bab093bdd303a1240bb99b8aba8ea8a69ee19d34c9e2ef9594e708a4878820"
3567
4767
  dependencies = [
4768
+ "windows-link",
3568
4769
  "windows-result",
3569
- "windows-strings 0.3.1",
3570
- "windows-targets 0.53.0",
4770
+ "windows-strings",
3571
4771
  ]
3572
4772
 
3573
4773
  [[package]]
3574
4774
  name = "windows-result"
3575
- version = "0.3.2"
4775
+ version = "0.3.4"
3576
4776
  source = "registry+https://github.com/rust-lang/crates.io-index"
3577
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
4777
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3578
4778
  dependencies = [
3579
4779
  "windows-link",
3580
4780
  ]
3581
4781
 
3582
4782
  [[package]]
3583
4783
  name = "windows-strings"
3584
- version = "0.3.1"
4784
+ version = "0.4.2"
3585
4785
  source = "registry+https://github.com/rust-lang/crates.io-index"
3586
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4786
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3587
4787
  dependencies = [
3588
4788
  "windows-link",
3589
4789
  ]
3590
4790
 
3591
4791
  [[package]]
3592
- name = "windows-strings"
3593
- version = "0.4.0"
4792
+ name = "windows-sys"
4793
+ version = "0.48.0"
3594
4794
  source = "registry+https://github.com/rust-lang/crates.io-index"
3595
- checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4795
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3596
4796
  dependencies = [
3597
- "windows-link",
4797
+ "windows-targets 0.48.5",
3598
4798
  ]
3599
4799
 
3600
4800
  [[package]]
@@ -3615,6 +4815,21 @@ dependencies = [
3615
4815
  "windows-targets 0.52.6",
3616
4816
  ]
3617
4817
 
4818
+ [[package]]
4819
+ name = "windows-targets"
4820
+ version = "0.48.5"
4821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4822
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4823
+ dependencies = [
4824
+ "windows_aarch64_gnullvm 0.48.5",
4825
+ "windows_aarch64_msvc 0.48.5",
4826
+ "windows_i686_gnu 0.48.5",
4827
+ "windows_i686_msvc 0.48.5",
4828
+ "windows_x86_64_gnu 0.48.5",
4829
+ "windows_x86_64_gnullvm 0.48.5",
4830
+ "windows_x86_64_msvc 0.48.5",
4831
+ ]
4832
+
3618
4833
  [[package]]
3619
4834
  name = "windows-targets"
3620
4835
  version = "0.52.6"
@@ -3633,9 +4848,9 @@ dependencies = [
3633
4848
 
3634
4849
  [[package]]
3635
4850
  name = "windows-targets"
3636
- version = "0.53.0"
4851
+ version = "0.53.2"
3637
4852
  source = "registry+https://github.com/rust-lang/crates.io-index"
3638
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4853
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
3639
4854
  dependencies = [
3640
4855
  "windows_aarch64_gnullvm 0.53.0",
3641
4856
  "windows_aarch64_msvc 0.53.0",
@@ -3647,6 +4862,12 @@ dependencies = [
3647
4862
  "windows_x86_64_msvc 0.53.0",
3648
4863
  ]
3649
4864
 
4865
+ [[package]]
4866
+ name = "windows_aarch64_gnullvm"
4867
+ version = "0.48.5"
4868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4869
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4870
+
3650
4871
  [[package]]
3651
4872
  name = "windows_aarch64_gnullvm"
3652
4873
  version = "0.52.6"
@@ -3659,6 +4880,12 @@ version = "0.53.0"
3659
4880
  source = "registry+https://github.com/rust-lang/crates.io-index"
3660
4881
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3661
4882
 
4883
+ [[package]]
4884
+ name = "windows_aarch64_msvc"
4885
+ version = "0.48.5"
4886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4887
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4888
+
3662
4889
  [[package]]
3663
4890
  name = "windows_aarch64_msvc"
3664
4891
  version = "0.52.6"
@@ -3671,6 +4898,12 @@ version = "0.53.0"
3671
4898
  source = "registry+https://github.com/rust-lang/crates.io-index"
3672
4899
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3673
4900
 
4901
+ [[package]]
4902
+ name = "windows_i686_gnu"
4903
+ version = "0.48.5"
4904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4905
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4906
+
3674
4907
  [[package]]
3675
4908
  name = "windows_i686_gnu"
3676
4909
  version = "0.52.6"
@@ -3695,6 +4928,12 @@ version = "0.53.0"
3695
4928
  source = "registry+https://github.com/rust-lang/crates.io-index"
3696
4929
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3697
4930
 
4931
+ [[package]]
4932
+ name = "windows_i686_msvc"
4933
+ version = "0.48.5"
4934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4935
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4936
+
3698
4937
  [[package]]
3699
4938
  name = "windows_i686_msvc"
3700
4939
  version = "0.52.6"
@@ -3707,6 +4946,12 @@ version = "0.53.0"
3707
4946
  source = "registry+https://github.com/rust-lang/crates.io-index"
3708
4947
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3709
4948
 
4949
+ [[package]]
4950
+ name = "windows_x86_64_gnu"
4951
+ version = "0.48.5"
4952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4953
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4954
+
3710
4955
  [[package]]
3711
4956
  name = "windows_x86_64_gnu"
3712
4957
  version = "0.52.6"
@@ -3719,6 +4964,12 @@ version = "0.53.0"
3719
4964
  source = "registry+https://github.com/rust-lang/crates.io-index"
3720
4965
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3721
4966
 
4967
+ [[package]]
4968
+ name = "windows_x86_64_gnullvm"
4969
+ version = "0.48.5"
4970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4971
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4972
+
3722
4973
  [[package]]
3723
4974
  name = "windows_x86_64_gnullvm"
3724
4975
  version = "0.52.6"
@@ -3731,6 +4982,12 @@ version = "0.53.0"
3731
4982
  source = "registry+https://github.com/rust-lang/crates.io-index"
3732
4983
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3733
4984
 
4985
+ [[package]]
4986
+ name = "windows_x86_64_msvc"
4987
+ version = "0.48.5"
4988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4989
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4990
+
3734
4991
  [[package]]
3735
4992
  name = "windows_x86_64_msvc"
3736
4993
  version = "0.52.6"
@@ -3754,39 +5011,75 @@ dependencies = [
3754
5011
 
3755
5012
  [[package]]
3756
5013
  name = "winnow"
3757
- version = "0.7.6"
5014
+ version = "0.7.11"
3758
5015
  source = "registry+https://github.com/rust-lang/crates.io-index"
3759
- checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
5016
+ checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
3760
5017
  dependencies = [
3761
5018
  "memchr",
3762
5019
  ]
3763
5020
 
5021
+ [[package]]
5022
+ name = "wiremock"
5023
+ version = "0.5.22"
5024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5025
+ checksum = "13a3a53eaf34f390dd30d7b1b078287dd05df2aa2e21a589ccb80f5c7253c2e9"
5026
+ dependencies = [
5027
+ "assert-json-diff",
5028
+ "async-trait",
5029
+ "base64 0.21.7",
5030
+ "deadpool",
5031
+ "futures",
5032
+ "futures-timer",
5033
+ "http-types",
5034
+ "hyper 0.14.32",
5035
+ "log",
5036
+ "once_cell",
5037
+ "regex",
5038
+ "serde",
5039
+ "serde_json",
5040
+ "tokio",
5041
+ ]
5042
+
3764
5043
  [[package]]
3765
5044
  name = "wit-bindgen-rt"
3766
5045
  version = "0.39.0"
3767
5046
  source = "registry+https://github.com/rust-lang/crates.io-index"
3768
5047
  checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3769
5048
  dependencies = [
3770
- "bitflags",
5049
+ "bitflags 2.9.1",
3771
5050
  ]
3772
5051
 
3773
5052
  [[package]]
3774
- name = "write16"
3775
- version = "1.0.0"
5053
+ name = "with_builtin_macros"
5054
+ version = "0.0.3"
5055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5056
+ checksum = "a59d55032495429b87f9d69954c6c8602e4d3f3e0a747a12dea6b0b23de685da"
5057
+ dependencies = [
5058
+ "with_builtin_macros-proc_macros",
5059
+ ]
5060
+
5061
+ [[package]]
5062
+ name = "with_builtin_macros-proc_macros"
5063
+ version = "0.0.3"
3776
5064
  source = "registry+https://github.com/rust-lang/crates.io-index"
3777
- checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
5065
+ checksum = "15bd7679c15e22924f53aee34d4e448c45b674feb6129689af88593e129f8f42"
5066
+ dependencies = [
5067
+ "proc-macro2",
5068
+ "quote",
5069
+ "syn 1.0.109",
5070
+ ]
3778
5071
 
3779
5072
  [[package]]
3780
5073
  name = "writeable"
3781
- version = "0.5.5"
5074
+ version = "0.6.1"
3782
5075
  source = "registry+https://github.com/rust-lang/crates.io-index"
3783
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
5076
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3784
5077
 
3785
5078
  [[package]]
3786
5079
  name = "yoke"
3787
- version = "0.7.5"
5080
+ version = "0.8.0"
3788
5081
  source = "registry+https://github.com/rust-lang/crates.io-index"
3789
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
5082
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3790
5083
  dependencies = [
3791
5084
  "serde",
3792
5085
  "stable_deref_trait",
@@ -3796,34 +5089,34 @@ dependencies = [
3796
5089
 
3797
5090
  [[package]]
3798
5091
  name = "yoke-derive"
3799
- version = "0.7.5"
5092
+ version = "0.8.0"
3800
5093
  source = "registry+https://github.com/rust-lang/crates.io-index"
3801
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
5094
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3802
5095
  dependencies = [
3803
5096
  "proc-macro2",
3804
5097
  "quote",
3805
- "syn",
5098
+ "syn 2.0.103",
3806
5099
  "synstructure",
3807
5100
  ]
3808
5101
 
3809
5102
  [[package]]
3810
5103
  name = "zerocopy"
3811
- version = "0.8.24"
5104
+ version = "0.8.26"
3812
5105
  source = "registry+https://github.com/rust-lang/crates.io-index"
3813
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
5106
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
3814
5107
  dependencies = [
3815
5108
  "zerocopy-derive",
3816
5109
  ]
3817
5110
 
3818
5111
  [[package]]
3819
5112
  name = "zerocopy-derive"
3820
- version = "0.8.24"
5113
+ version = "0.8.26"
3821
5114
  source = "registry+https://github.com/rust-lang/crates.io-index"
3822
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
5115
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
3823
5116
  dependencies = [
3824
5117
  "proc-macro2",
3825
5118
  "quote",
3826
- "syn",
5119
+ "syn 2.0.103",
3827
5120
  ]
3828
5121
 
3829
5122
  [[package]]
@@ -3843,7 +5136,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3843
5136
  dependencies = [
3844
5137
  "proc-macro2",
3845
5138
  "quote",
3846
- "syn",
5139
+ "syn 2.0.103",
3847
5140
  "synstructure",
3848
5141
  ]
3849
5142
 
@@ -3852,12 +5145,37 @@ name = "zeroize"
3852
5145
  version = "1.8.1"
3853
5146
  source = "registry+https://github.com/rust-lang/crates.io-index"
3854
5147
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
5148
+ dependencies = [
5149
+ "zeroize_derive",
5150
+ ]
5151
+
5152
+ [[package]]
5153
+ name = "zeroize_derive"
5154
+ version = "1.4.2"
5155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5156
+ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
5157
+ dependencies = [
5158
+ "proc-macro2",
5159
+ "quote",
5160
+ "syn 2.0.103",
5161
+ ]
5162
+
5163
+ [[package]]
5164
+ name = "zerotrie"
5165
+ version = "0.2.2"
5166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5167
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
5168
+ dependencies = [
5169
+ "displaydoc",
5170
+ "yoke",
5171
+ "zerofrom",
5172
+ ]
3855
5173
 
3856
5174
  [[package]]
3857
5175
  name = "zerovec"
3858
- version = "0.10.4"
5176
+ version = "0.11.2"
3859
5177
  source = "registry+https://github.com/rust-lang/crates.io-index"
3860
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
5178
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
3861
5179
  dependencies = [
3862
5180
  "yoke",
3863
5181
  "zerofrom",
@@ -3866,11 +5184,11 @@ dependencies = [
3866
5184
 
3867
5185
  [[package]]
3868
5186
  name = "zerovec-derive"
3869
- version = "0.10.3"
5187
+ version = "0.11.1"
3870
5188
  source = "registry+https://github.com/rust-lang/crates.io-index"
3871
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
5189
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3872
5190
  dependencies = [
3873
5191
  "proc-macro2",
3874
5192
  "quote",
3875
- "syn",
5193
+ "syn 2.0.103",
3876
5194
  ]