slim-bindings 0.3.6__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (220) hide show
  1. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/Cargo.lock +1786 -468
  2. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/Cargo.toml +48 -22
  3. slim_bindings-0.4.0/PKG-INFO +61 -0
  4. slim_bindings-0.4.0/README.md +41 -0
  5. slim_bindings-0.4.0/core/auth/CHANGELOG.md +35 -0
  6. slim_bindings-0.4.0/core/auth/Cargo.toml +40 -0
  7. slim_bindings-0.4.0/core/auth/README.md +15 -0
  8. slim_bindings-0.4.0/core/auth/src/builder.rs +766 -0
  9. slim_bindings-0.4.0/core/auth/src/errors.rs +28 -0
  10. slim_bindings-0.4.0/core/auth/src/file_watcher.rs +242 -0
  11. slim_bindings-0.4.0/core/auth/src/jwt.rs +1019 -0
  12. slim_bindings-0.4.0/core/auth/src/jwt_middleware.rs +745 -0
  13. slim_bindings-0.4.0/core/auth/src/lib.rs +12 -0
  14. slim_bindings-0.4.0/core/auth/src/resolver.rs +435 -0
  15. slim_bindings-0.4.0/core/auth/src/shared_secret.rs +83 -0
  16. slim_bindings-0.4.0/core/auth/src/testutils.rs +231 -0
  17. slim_bindings-0.4.0/core/auth/src/traits.rs +100 -0
  18. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/CHANGELOG.md +17 -0
  19. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/Cargo.toml +11 -2
  20. slim_bindings-0.4.0/core/config/README.md +19 -0
  21. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/auth/basic.rs +5 -4
  22. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/auth/bearer.rs +5 -4
  23. slim_bindings-0.4.0/core/config/src/auth/jwt.rs +343 -0
  24. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/auth.rs +14 -1
  25. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc/client.rs +30 -5
  26. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc/compression.rs +3 -3
  27. slim_bindings-0.4.0/core/config/src/grpc/schema/client-config.schema.json +383 -0
  28. slim_bindings-0.4.0/core/config/src/grpc/schema/generate_schema.rs +18 -0
  29. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc/server.rs +82 -0
  30. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/lib.rs +2 -0
  31. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/opaque.rs +3 -1
  32. slim_bindings-0.4.0/core/config/src/testutils/tower_service.rs +45 -0
  33. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/testutils.rs +3 -2
  34. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/tls/client.rs +66 -36
  35. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/tls/common.rs +114 -3
  36. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/tls/server.rs +50 -24
  37. slim_bindings-0.4.0/core/config/testdata/jwt/ec256-public.pem +4 -0
  38. slim_bindings-0.4.0/core/config/testdata/jwt/ec256-wrong.pem +5 -0
  39. slim_bindings-0.4.0/core/config/testdata/jwt/ec256.pem +5 -0
  40. slim_bindings-0.4.0/core/config/testdata/jwt/ec384-public.pem +5 -0
  41. slim_bindings-0.4.0/core/config/testdata/jwt/ec384-wrong.pem +6 -0
  42. slim_bindings-0.4.0/core/config/testdata/jwt/ec384.pem +6 -0
  43. slim_bindings-0.4.0/core/config/testdata/jwt/eddsa-public.pem +3 -0
  44. slim_bindings-0.4.0/core/config/testdata/jwt/eddsa-wrong.pem +3 -0
  45. slim_bindings-0.4.0/core/config/testdata/jwt/eddsa.pem +3 -0
  46. slim_bindings-0.4.0/core/config/testdata/jwt/rsa-public.pem +9 -0
  47. slim_bindings-0.4.0/core/config/testdata/jwt/rsa-wrong.pem +28 -0
  48. slim_bindings-0.4.0/core/config/testdata/jwt/rsa.pem +28 -0
  49. slim_bindings-0.4.0/core/config/tests/e2e.rs +682 -0
  50. {slim_bindings-0.3.6/core/config/tests/src → slim_bindings-0.4.0/core/config/tests}/tls.rs +123 -158
  51. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/CHANGELOG.md +14 -0
  52. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/Cargo.toml +9 -2
  53. slim_bindings-0.4.0/core/controller/README.md +20 -0
  54. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/proto/v1/controller.proto +31 -22
  55. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/src/api/gen/controller.proto.v1.rs +44 -15
  56. slim_bindings-0.4.0/core/controller/src/config.rs +83 -0
  57. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/src/lib.rs +1 -0
  58. slim_bindings-0.4.0/core/controller/src/service.rs +851 -0
  59. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/CHANGELOG.md +25 -0
  60. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/Cargo.toml +3 -1
  61. slim_bindings-0.4.0/core/datapath/README.md +21 -0
  62. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/proto/v1/pubsub.proto +44 -26
  63. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/api/gen/pubsub.proto.v1.rs +94 -42
  64. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/api.rs +6 -2
  65. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/connection.rs +17 -2
  66. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/forwarder.rs +21 -38
  67. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/lib.rs +2 -0
  68. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/message_processing.rs +34 -45
  69. slim_bindings-0.4.0/core/datapath/src/messages/encoder.rs +140 -0
  70. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/messages/utils.rs +161 -236
  71. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/messages.rs +1 -2
  72. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/tables/errors.rs +2 -2
  73. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/tables/remote_subscription_table.rs +9 -10
  74. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/tables/subscription_table.rs +255 -297
  75. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/tables.rs +6 -14
  76. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/tests/data_path_test.rs +13 -17
  77. slim_bindings-0.4.0/core/mls/CHANGELOG.md +28 -0
  78. slim_bindings-0.4.0/core/mls/Cargo.toml +26 -0
  79. slim_bindings-0.4.0/core/mls/README.md +35 -0
  80. slim_bindings-0.4.0/core/mls/src/errors.rs +46 -0
  81. slim_bindings-0.4.0/core/mls/src/identity_provider.rs +116 -0
  82. slim_bindings-0.4.0/core/mls/src/lib.rs +6 -0
  83. slim_bindings-0.4.0/core/mls/src/mls.rs +888 -0
  84. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/CHANGELOG.md +43 -0
  85. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/Cargo.toml +5 -1
  86. slim_bindings-0.4.0/core/service/README.md +22 -0
  87. slim_bindings-0.4.0/core/service/src/app.rs +1200 -0
  88. slim_bindings-0.4.0/core/service/src/channel_endpoint.rs +2117 -0
  89. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/src/errors.rs +53 -5
  90. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/src/fire_and_forget.rs +647 -210
  91. slim_bindings-0.4.0/core/service/src/interceptor.rs +126 -0
  92. slim_bindings-0.4.0/core/service/src/interceptor_mls.rs +289 -0
  93. slim_bindings-0.4.0/core/service/src/lib.rs +752 -0
  94. slim_bindings-0.4.0/core/service/src/moderator_task.rs +743 -0
  95. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/src/producer_buffer.rs +87 -18
  96. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/src/receiver_buffer.rs +46 -15
  97. slim_bindings-0.4.0/core/service/src/session.rs +572 -0
  98. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/src/streaming.rs +582 -258
  99. slim_bindings-0.4.0/core/service/src/testutils.rs +70 -0
  100. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/service/src/timer.rs +4 -0
  101. slim_bindings-0.4.0/core/service/src/transmitter.rs +105 -0
  102. slim_bindings-0.4.0/core/signal/CHANGELOG.md +37 -0
  103. slim_bindings-0.4.0/core/signal/Cargo.toml +14 -0
  104. slim_bindings-0.4.0/core/signal/README.md +19 -0
  105. slim_bindings-0.4.0/core/signal/src/lib.rs +50 -0
  106. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/tracing/CHANGELOG.md +6 -0
  107. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/tracing/Cargo.toml +1 -1
  108. slim_bindings-0.4.0/core/tracing/README.md +22 -0
  109. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/pyproject.toml +7 -1
  110. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/CHANGELOG.md +27 -0
  111. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/Cargo.toml +3 -0
  112. slim_bindings-0.4.0/python-bindings/README.md +41 -0
  113. slim_bindings-0.4.0/python-bindings/Taskfile.yml +206 -0
  114. slim_bindings-0.4.0/python-bindings/examples/Dockerfile +50 -0
  115. slim_bindings-0.4.0/python-bindings/examples/pyproject.toml +28 -0
  116. slim_bindings-0.4.0/python-bindings/examples/src/slim_bindings_examples/__init__.py +47 -0
  117. slim_bindings-0.4.0/python-bindings/examples/src/slim_bindings_examples/common.py +259 -0
  118. slim_bindings-0.4.0/python-bindings/examples/src/slim_bindings_examples/fire_and_forget.py +201 -0
  119. slim_bindings-0.4.0/python-bindings/examples/src/slim_bindings_examples/pubsub.py +150 -0
  120. slim_bindings-0.4.0/python-bindings/examples/src/slim_bindings_examples/request_reply.py +182 -0
  121. slim_bindings-0.3.6/python-bindings/examples/gateway.py → slim_bindings-0.4.0/python-bindings/examples/src/slim_bindings_examples/slim.py +13 -4
  122. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/slim_bindings/__init__.py +85 -93
  123. slim_bindings-0.4.0/python-bindings/slim_bindings/_slim_bindings.pyi +156 -0
  124. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/src/lib.rs +10 -4
  125. slim_bindings-0.4.0/python-bindings/src/pyidentity.rs +333 -0
  126. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/src/pyservice.rs +143 -154
  127. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/src/pysession.rs +40 -44
  128. slim_bindings-0.4.0/python-bindings/src/utils.rs +113 -0
  129. slim_bindings-0.4.0/python-bindings/tests/common.py +24 -0
  130. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/tests/conftest.py +10 -1
  131. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/tests/test_bindings.py +49 -78
  132. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/tests/test_fire_forget.py +14 -17
  133. slim_bindings-0.4.0/python-bindings/tests/test_identity.py +168 -0
  134. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/tests/test_pubsub.py +58 -43
  135. slim_bindings-0.4.0/python-bindings/tests/test_request_reply.py +94 -0
  136. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/tests/test_streaming.py +22 -17
  137. slim_bindings-0.4.0/python-bindings/tests/testdata/ec256-public.pem +4 -0
  138. slim_bindings-0.4.0/python-bindings/tests/testdata/ec256.pem +5 -0
  139. slim_bindings-0.4.0/python-bindings/tests/testdata/ec384-public.pem +5 -0
  140. slim_bindings-0.4.0/python-bindings/tests/testdata/ec384.pem +6 -0
  141. slim_bindings-0.4.0/python-bindings/tests/testdata/eddsa-public.pem +3 -0
  142. slim_bindings-0.4.0/python-bindings/tests/testdata/eddsa.pem +3 -0
  143. slim_bindings-0.4.0/python-bindings/tests/testdata/rsa-public.pem +9 -0
  144. slim_bindings-0.4.0/python-bindings/tests/testdata/rsa.pem +28 -0
  145. slim_bindings-0.4.0/python-bindings/uv.lock +423 -0
  146. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/slim_bindings/__init__.py +85 -93
  147. slim_bindings-0.4.0/slim_bindings/_slim_bindings.pyi +156 -0
  148. slim_bindings-0.3.6/PKG-INFO +0 -930
  149. slim_bindings-0.3.6/README.md +0 -910
  150. slim_bindings-0.3.6/core/config/README.md +0 -90
  151. slim_bindings-0.3.6/core/config/tests/src/e2e.rs +0 -299
  152. slim_bindings-0.3.6/core/controller/README.md +0 -121
  153. slim_bindings-0.3.6/core/controller/src/service.rs +0 -484
  154. slim_bindings-0.3.6/core/datapath/README.md +0 -116
  155. slim_bindings-0.3.6/core/datapath/src/messages/encoder.rs +0 -206
  156. slim_bindings-0.3.6/core/service/README.md +0 -238
  157. slim_bindings-0.3.6/core/service/src/lib.rs +0 -1261
  158. slim_bindings-0.3.6/core/service/src/request_response.rs +0 -406
  159. slim_bindings-0.3.6/core/service/src/session.rs +0 -368
  160. slim_bindings-0.3.6/core/service/src/session_layer.rs +0 -516
  161. slim_bindings-0.3.6/core/tracing/README.md +0 -294
  162. slim_bindings-0.3.6/python-bindings/README.md +0 -910
  163. slim_bindings-0.3.6/python-bindings/Taskfile.yml +0 -226
  164. slim_bindings-0.3.6/python-bindings/examples/common.py +0 -30
  165. slim_bindings-0.3.6/python-bindings/examples/fire-and-forget.py +0 -170
  166. slim_bindings-0.3.6/python-bindings/examples/pubsub.py +0 -173
  167. slim_bindings-0.3.6/python-bindings/examples/request-reply.py +0 -155
  168. slim_bindings-0.3.6/python-bindings/examples/streaming.py +0 -172
  169. slim_bindings-0.3.6/python-bindings/slim_bindings/_slim_bindings.pyi +0 -104
  170. slim_bindings-0.3.6/python-bindings/src/utils.rs +0 -77
  171. slim_bindings-0.3.6/python-bindings/tests/test_request_reply.py +0 -173
  172. slim_bindings-0.3.6/python-bindings/uv.lock +0 -322
  173. slim_bindings-0.3.6/slim_bindings/_slim_bindings.pyi +0 -104
  174. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/build.rs +0 -0
  175. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/proto/hello.proto +0 -0
  176. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/component/configuration.rs +0 -0
  177. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/component/id.rs +0 -0
  178. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/component.rs +0 -0
  179. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc/errors.rs +0 -0
  180. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc/headers_middleware.rs +0 -0
  181. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc/helloworld.rs +0 -0
  182. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/grpc.rs +0 -0
  183. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/provider/env.rs +0 -0
  184. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/provider/file.rs +0 -0
  185. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/provider/lib.rs +0 -0
  186. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/provider.rs +0 -0
  187. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/testutils/helloworld.rs +0 -0
  188. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/src/tls.rs +0 -0
  189. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/grpc/ca.crt +0 -0
  190. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/grpc/server.crt +0 -0
  191. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/grpc/server.key +0 -0
  192. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/testfile +0 -0
  193. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/ca-1.crt +0 -0
  194. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/ca-2.crt +0 -0
  195. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/ca-bad.crt +0 -0
  196. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/client-1.crt +0 -0
  197. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/client-1.key +0 -0
  198. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/client-2.crt +0 -0
  199. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/client-2.key +0 -0
  200. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/server-1.crt +0 -0
  201. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/server-1.key +0 -0
  202. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/server-2.crt +0 -0
  203. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/config/testdata/tls/server-2.key +0 -0
  204. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/build.rs +0 -0
  205. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/src/api/proto.rs +0 -0
  206. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/src/api.rs +0 -0
  207. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/controller/src/errors.rs +0 -0
  208. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/benches/pool_benchmark.rs +0 -0
  209. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/build.rs +0 -0
  210. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/api/proto.rs +0 -0
  211. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/errors.rs +0 -0
  212. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/tables/connection_table.rs +0 -0
  213. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/datapath/src/tables/pool.rs +0 -0
  214. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/tracing/src/lib.rs +0 -0
  215. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/core/tracing/src/utils.rs +0 -0
  216. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/BUILD.md +0 -0
  217. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/WINDOWS.md +0 -0
  218. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/build.rs +0 -0
  219. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/src/bin/stub_gen.rs +0 -0
  220. {slim_bindings-0.3.6 → slim_bindings-0.4.0}/python-bindings/src/build_info.rs +0 -0
@@ -13,13 +13,13 @@ 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
19
 
20
20
  [[package]]
21
21
  name = "agntcy-slim"
22
- version = "0.3.15"
22
+ version = "0.4.0"
23
23
  dependencies = [
24
24
  "agntcy-slim-config",
25
25
  "agntcy-slim-service",
@@ -32,56 +32,95 @@ dependencies = [
32
32
  "num_cpus",
33
33
  "serde",
34
34
  "serde_yaml",
35
- "thiserror",
35
+ "thiserror 2.0.12",
36
+ "tokio",
37
+ "tracing",
38
+ "tracing-test",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "agntcy-slim-auth"
43
+ version = "0.2.0"
44
+ dependencies = [
45
+ "async-trait",
46
+ "aws-lc-rs",
47
+ "base64 0.22.1",
48
+ "futures",
49
+ "headers",
50
+ "http 1.3.1",
51
+ "jsonwebtoken-aws-lc",
52
+ "notify",
53
+ "parking_lot",
54
+ "pin-project",
55
+ "reqwest",
56
+ "rustls",
57
+ "schemars",
58
+ "serde",
59
+ "serde_json",
60
+ "serde_yaml",
61
+ "thiserror 2.0.12",
36
62
  "tokio",
63
+ "tokio-util",
64
+ "tower 0.5.2",
65
+ "tower-layer",
66
+ "tower-service",
37
67
  "tracing",
38
68
  "tracing-test",
69
+ "url",
70
+ "wiremock",
39
71
  ]
40
72
 
41
73
  [[package]]
42
74
  name = "agntcy-slim-bindings"
43
75
  version = "0.1.0"
44
76
  dependencies = [
77
+ "agntcy-slim-auth",
45
78
  "agntcy-slim-config",
46
79
  "agntcy-slim-datapath",
47
80
  "agntcy-slim-service",
48
81
  "agntcy-slim-tracing",
82
+ "async-trait",
49
83
  "pyo3",
50
84
  "pyo3-async-runtimes",
51
85
  "pyo3-stub-gen",
52
86
  "rand 0.9.1",
87
+ "serde",
53
88
  "serde-pyobject",
54
89
  "tokio",
55
90
  ]
56
91
 
57
92
  [[package]]
58
93
  name = "agntcy-slim-config"
59
- version = "0.1.8"
94
+ version = "0.2.0"
60
95
  dependencies = [
96
+ "agntcy-slim-auth",
97
+ "drain",
61
98
  "duration-str",
62
99
  "futures",
63
- "http",
100
+ "http 1.3.1",
64
101
  "hyper-rustls",
65
102
  "hyper-util",
66
103
  "lazy_static",
104
+ "parking_lot",
67
105
  "prost",
68
106
  "protoc-bin-vendored",
69
107
  "regex",
70
108
  "rustls",
71
109
  "rustls-native-certs",
72
110
  "rustls-pki-types",
111
+ "schemars",
73
112
  "serde",
74
113
  "serde_json",
75
114
  "serde_yaml",
76
- "thiserror",
115
+ "thiserror 2.0.12",
77
116
  "tokio",
78
- "tonic 0.13.0",
117
+ "tokio-util",
118
+ "tonic 0.13.1",
79
119
  "tonic-build",
80
120
  "tonic-tls",
81
121
  "tower 0.5.2",
82
122
  "tower-http",
83
123
  "tower-layer",
84
- "tower-reqwest",
85
124
  "tower-service",
86
125
  "tracing",
87
126
  "tracing-test",
@@ -89,50 +128,75 @@ dependencies = [
89
128
 
90
129
  [[package]]
91
130
  name = "agntcy-slim-controller"
92
- version = "0.1.1"
131
+ version = "0.2.0"
93
132
  dependencies = [
94
133
  "agntcy-slim-config",
95
134
  "agntcy-slim-datapath",
96
- "bytes",
97
- "h2",
135
+ "agntcy-slim-signal",
136
+ "agntcy-slim-tracing",
137
+ "drain",
138
+ "h2 0.4.10",
98
139
  "parking_lot",
99
140
  "prost",
100
141
  "protoc-bin-vendored",
101
- "thiserror",
142
+ "serde",
143
+ "serde_json",
144
+ "thiserror 2.0.12",
102
145
  "tokio",
103
146
  "tokio-stream",
104
147
  "tokio-util",
105
- "tonic 0.13.0",
148
+ "tonic 0.13.1",
106
149
  "tonic-build",
107
150
  "tracing",
151
+ "tracing-test",
108
152
  "uuid",
109
153
  ]
110
154
 
111
155
  [[package]]
112
156
  name = "agntcy-slim-datapath"
113
- version = "0.7.0"
157
+ version = "0.8.0"
114
158
  dependencies = [
115
159
  "agntcy-slim-config",
116
160
  "agntcy-slim-tracing",
161
+ "bincode",
117
162
  "bit-vec",
118
163
  "bytes",
119
164
  "criterion",
120
165
  "drain",
121
- "h2",
166
+ "h2 0.4.10",
122
167
  "opentelemetry",
123
168
  "parking_lot",
124
169
  "prost",
125
170
  "protoc-bin-vendored",
126
171
  "rand 0.9.1",
127
- "thiserror",
172
+ "thiserror 2.0.12",
128
173
  "tokio",
129
174
  "tokio-stream",
130
175
  "tokio-util",
131
- "tonic 0.13.0",
176
+ "tonic 0.13.1",
132
177
  "tonic-build",
133
178
  "tracing",
134
179
  "tracing-opentelemetry",
135
180
  "tracing-test",
181
+ "twox-hash",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "agntcy-slim-mls"
186
+ version = "0.1.0"
187
+ dependencies = [
188
+ "agntcy-slim-auth",
189
+ "agntcy-slim-datapath",
190
+ "hex",
191
+ "mls-rs",
192
+ "mls-rs-core",
193
+ "mls-rs-crypto-awslc",
194
+ "serde",
195
+ "serde_json",
196
+ "tempfile",
197
+ "thiserror 2.0.12",
198
+ "tokio",
199
+ "tracing",
136
200
  ]
137
201
 
138
202
  [[package]]
@@ -146,27 +210,31 @@ dependencies = [
146
210
 
147
211
  [[package]]
148
212
  name = "agntcy-slim-service"
149
- version = "0.4.2"
213
+ version = "0.5.0"
150
214
  dependencies = [
215
+ "agntcy-slim-auth",
151
216
  "agntcy-slim-config",
152
217
  "agntcy-slim-controller",
153
218
  "agntcy-slim-datapath",
219
+ "agntcy-slim-mls",
154
220
  "async-trait",
221
+ "bincode",
222
+ "dirs",
155
223
  "drain",
156
224
  "parking_lot",
157
225
  "rand 0.9.1",
158
226
  "serde",
159
- "thiserror",
227
+ "thiserror 2.0.12",
160
228
  "tokio",
161
229
  "tokio-util",
162
- "tonic 0.13.0",
230
+ "tonic 0.13.1",
163
231
  "tracing",
164
232
  "tracing-test",
165
233
  ]
166
234
 
167
235
  [[package]]
168
236
  name = "agntcy-slim-signal"
169
- version = "0.1.2"
237
+ version = "0.1.3"
170
238
  dependencies = [
171
239
  "tokio",
172
240
  "tracing",
@@ -174,7 +242,7 @@ dependencies = [
174
242
 
175
243
  [[package]]
176
244
  name = "agntcy-slim-tracing"
177
- version = "0.2.1"
245
+ version = "0.2.2"
178
246
  dependencies = [
179
247
  "agntcy-slim-config",
180
248
  "once_cell",
@@ -184,7 +252,7 @@ dependencies = [
184
252
  "opentelemetry-stdout",
185
253
  "opentelemetry_sdk",
186
254
  "serde",
187
- "thiserror",
255
+ "thiserror 2.0.12",
188
256
  "tracing",
189
257
  "tracing-opentelemetry",
190
258
  "tracing-subscriber",
@@ -223,9 +291,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
223
291
 
224
292
  [[package]]
225
293
  name = "anstream"
226
- version = "0.6.18"
294
+ version = "0.6.19"
227
295
  source = "registry+https://github.com/rust-lang/crates.io-index"
228
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
296
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
229
297
  dependencies = [
230
298
  "anstyle",
231
299
  "anstyle-parse",
@@ -238,36 +306,36 @@ dependencies = [
238
306
 
239
307
  [[package]]
240
308
  name = "anstyle"
241
- version = "1.0.10"
309
+ version = "1.0.11"
242
310
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
311
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
244
312
 
245
313
  [[package]]
246
314
  name = "anstyle-parse"
247
- version = "0.2.6"
315
+ version = "0.2.7"
248
316
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
317
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
250
318
  dependencies = [
251
319
  "utf8parse",
252
320
  ]
253
321
 
254
322
  [[package]]
255
323
  name = "anstyle-query"
256
- version = "1.1.2"
324
+ version = "1.1.3"
257
325
  source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
326
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
259
327
  dependencies = [
260
328
  "windows-sys 0.59.0",
261
329
  ]
262
330
 
263
331
  [[package]]
264
332
  name = "anstyle-wincon"
265
- version = "3.0.7"
333
+ version = "3.0.9"
266
334
  source = "registry+https://github.com/rust-lang/crates.io-index"
267
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
335
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
268
336
  dependencies = [
269
337
  "anstyle",
270
- "once_cell",
338
+ "once_cell_polyfill",
271
339
  "windows-sys 0.59.0",
272
340
  ]
273
341
 
@@ -283,6 +351,27 @@ version = "0.7.6"
283
351
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
352
  checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
285
353
 
354
+ [[package]]
355
+ name = "assert-json-diff"
356
+ version = "2.0.2"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
359
+ dependencies = [
360
+ "serde",
361
+ "serde_json",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "async-channel"
366
+ version = "1.9.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
369
+ dependencies = [
370
+ "concurrent-queue",
371
+ "event-listener",
372
+ "futures-core",
373
+ ]
374
+
286
375
  [[package]]
287
376
  name = "async-stream"
288
377
  version = "0.3.6"
@@ -302,7 +391,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
302
391
  dependencies = [
303
392
  "proc-macro2",
304
393
  "quote",
305
- "syn",
394
+ "syn 2.0.103",
306
395
  ]
307
396
 
308
397
  [[package]]
@@ -313,7 +402,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
313
402
  dependencies = [
314
403
  "proc-macro2",
315
404
  "quote",
316
- "syn",
405
+ "syn 2.0.103",
317
406
  ]
318
407
 
319
408
  [[package]]
@@ -324,25 +413,26 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
324
413
 
325
414
  [[package]]
326
415
  name = "autocfg"
327
- version = "1.4.0"
416
+ version = "1.5.0"
328
417
  source = "registry+https://github.com/rust-lang/crates.io-index"
329
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
418
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
330
419
 
331
420
  [[package]]
332
421
  name = "aws-lc-rs"
333
- version = "1.13.0"
422
+ version = "1.13.1"
334
423
  source = "registry+https://github.com/rust-lang/crates.io-index"
335
- checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
424
+ checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
336
425
  dependencies = [
337
426
  "aws-lc-sys",
427
+ "untrusted 0.7.1",
338
428
  "zeroize",
339
429
  ]
340
430
 
341
431
  [[package]]
342
432
  name = "aws-lc-sys"
343
- version = "0.28.2"
433
+ version = "0.29.0"
344
434
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
435
+ checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
346
436
  dependencies = [
347
437
  "bindgen",
348
438
  "cc",
@@ -353,15 +443,15 @@ dependencies = [
353
443
 
354
444
  [[package]]
355
445
  name = "axum"
356
- version = "0.8.3"
446
+ version = "0.8.4"
357
447
  source = "registry+https://github.com/rust-lang/crates.io-index"
358
- checksum = "de45108900e1f9b9242f7f2e254aa3e2c029c921c258fe9e6b4217eeebd54288"
448
+ checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
359
449
  dependencies = [
360
450
  "axum-core",
361
451
  "bytes",
362
452
  "futures-util",
363
- "http",
364
- "http-body",
453
+ "http 1.3.1",
454
+ "http-body 1.0.1",
365
455
  "http-body-util",
366
456
  "itoa",
367
457
  "matchit",
@@ -385,8 +475,8 @@ checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
385
475
  dependencies = [
386
476
  "bytes",
387
477
  "futures-core",
388
- "http",
389
- "http-body",
478
+ "http 1.3.1",
479
+ "http-body 1.0.1",
390
480
  "http-body-util",
391
481
  "mime",
392
482
  "pin-project-lite",
@@ -398,9 +488,9 @@ dependencies = [
398
488
 
399
489
  [[package]]
400
490
  name = "backtrace"
401
- version = "0.3.74"
491
+ version = "0.3.75"
402
492
  source = "registry+https://github.com/rust-lang/crates.io-index"
403
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
493
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
404
494
  dependencies = [
405
495
  "addr2line",
406
496
  "cfg-if",
@@ -411,32 +501,64 @@ dependencies = [
411
501
  "windows-targets 0.52.6",
412
502
  ]
413
503
 
504
+ [[package]]
505
+ name = "base64"
506
+ version = "0.13.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
509
+
510
+ [[package]]
511
+ name = "base64"
512
+ version = "0.21.7"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
515
+
414
516
  [[package]]
415
517
  name = "base64"
416
518
  version = "0.22.1"
417
519
  source = "registry+https://github.com/rust-lang/crates.io-index"
418
520
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
419
521
 
522
+ [[package]]
523
+ name = "bincode"
524
+ version = "2.0.1"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
527
+ dependencies = [
528
+ "bincode_derive",
529
+ "serde",
530
+ "unty",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "bincode_derive"
535
+ version = "2.0.1"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
538
+ dependencies = [
539
+ "virtue",
540
+ ]
541
+
420
542
  [[package]]
421
543
  name = "bindgen"
422
544
  version = "0.69.5"
423
545
  source = "registry+https://github.com/rust-lang/crates.io-index"
424
546
  checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
425
547
  dependencies = [
426
- "bitflags",
548
+ "bitflags 2.9.1",
427
549
  "cexpr",
428
550
  "clang-sys",
429
551
  "itertools 0.12.1",
430
552
  "lazy_static",
431
553
  "lazycell",
432
554
  "log",
433
- "prettyplease",
555
+ "prettyplease 0.2.34",
434
556
  "proc-macro2",
435
557
  "quote",
436
558
  "regex",
437
559
  "rustc-hash 1.1.0",
438
560
  "shlex",
439
- "syn",
561
+ "syn 2.0.103",
440
562
  "which",
441
563
  ]
442
564
 
@@ -448,15 +570,30 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
448
570
 
449
571
  [[package]]
450
572
  name = "bitflags"
451
- version = "2.9.0"
573
+ version = "1.3.2"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
576
+
577
+ [[package]]
578
+ name = "bitflags"
579
+ version = "2.9.1"
452
580
  source = "registry+https://github.com/rust-lang/crates.io-index"
453
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
581
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
582
+
583
+ [[package]]
584
+ name = "block-buffer"
585
+ version = "0.10.4"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
588
+ dependencies = [
589
+ "generic-array",
590
+ ]
454
591
 
455
592
  [[package]]
456
593
  name = "bumpalo"
457
- version = "3.17.0"
594
+ version = "3.18.1"
458
595
  source = "registry+https://github.com/rust-lang/crates.io-index"
459
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
596
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
460
597
 
461
598
  [[package]]
462
599
  name = "bytes"
@@ -472,9 +609,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
472
609
 
473
610
  [[package]]
474
611
  name = "cc"
475
- version = "1.2.19"
612
+ version = "1.2.27"
476
613
  source = "registry+https://github.com/rust-lang/crates.io-index"
477
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
614
+ checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
478
615
  dependencies = [
479
616
  "jobserver",
480
617
  "libc",
@@ -492,15 +629,15 @@ dependencies = [
492
629
 
493
630
  [[package]]
494
631
  name = "cfg-if"
495
- version = "1.0.0"
632
+ version = "1.0.1"
496
633
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
634
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
498
635
 
499
636
  [[package]]
500
637
  name = "chrono"
501
- version = "0.4.40"
638
+ version = "0.4.41"
502
639
  source = "registry+https://github.com/rust-lang/crates.io-index"
503
- checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
640
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
504
641
  dependencies = [
505
642
  "android-tzdata",
506
643
  "iana-time-zone",
@@ -550,9 +687,9 @@ dependencies = [
550
687
 
551
688
  [[package]]
552
689
  name = "clap"
553
- version = "4.5.37"
690
+ version = "4.5.40"
554
691
  source = "registry+https://github.com/rust-lang/crates.io-index"
555
- checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
692
+ checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
556
693
  dependencies = [
557
694
  "clap_builder",
558
695
  "clap_derive",
@@ -560,9 +697,9 @@ dependencies = [
560
697
 
561
698
  [[package]]
562
699
  name = "clap_builder"
563
- version = "4.5.37"
700
+ version = "4.5.40"
564
701
  source = "registry+https://github.com/rust-lang/crates.io-index"
565
- checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
702
+ checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
566
703
  dependencies = [
567
704
  "anstream",
568
705
  "anstyle",
@@ -572,21 +709,21 @@ dependencies = [
572
709
 
573
710
  [[package]]
574
711
  name = "clap_derive"
575
- version = "4.5.32"
712
+ version = "4.5.40"
576
713
  source = "registry+https://github.com/rust-lang/crates.io-index"
577
- checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
714
+ checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
578
715
  dependencies = [
579
- "heck",
716
+ "heck 0.5.0",
580
717
  "proc-macro2",
581
718
  "quote",
582
- "syn",
719
+ "syn 2.0.103",
583
720
  ]
584
721
 
585
722
  [[package]]
586
723
  name = "clap_lex"
587
- version = "0.7.4"
724
+ version = "0.7.5"
588
725
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
726
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
590
727
 
591
728
  [[package]]
592
729
  name = "cmake"
@@ -599,9 +736,18 @@ dependencies = [
599
736
 
600
737
  [[package]]
601
738
  name = "colorchoice"
602
- version = "1.0.3"
739
+ version = "1.0.4"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
742
+
743
+ [[package]]
744
+ name = "concurrent-queue"
745
+ version = "2.5.0"
603
746
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
747
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
748
+ dependencies = [
749
+ "crossbeam-utils",
750
+ ]
605
751
 
606
752
  [[package]]
607
753
  name = "console"
@@ -618,9 +764,19 @@ dependencies = [
618
764
 
619
765
  [[package]]
620
766
  name = "core-foundation"
621
- version = "0.10.0"
767
+ version = "0.9.4"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
770
+ dependencies = [
771
+ "core-foundation-sys",
772
+ "libc",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "core-foundation"
777
+ version = "0.10.1"
622
778
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
- checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
779
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
624
780
  dependencies = [
625
781
  "core-foundation-sys",
626
782
  "libc",
@@ -632,6 +788,15 @@ version = "0.8.7"
632
788
  source = "registry+https://github.com/rust-lang/crates.io-index"
633
789
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
634
790
 
791
+ [[package]]
792
+ name = "cpufeatures"
793
+ version = "0.2.17"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
796
+ dependencies = [
797
+ "libc",
798
+ ]
799
+
635
800
  [[package]]
636
801
  name = "criterion"
637
802
  version = "0.5.1"
@@ -668,6 +833,12 @@ dependencies = [
668
833
  "itertools 0.10.5",
669
834
  ]
670
835
 
836
+ [[package]]
837
+ name = "critical-section"
838
+ version = "1.2.0"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
841
+
671
842
  [[package]]
672
843
  name = "crossbeam-deque"
673
844
  version = "0.8.6"
@@ -699,6 +870,79 @@ version = "0.2.3"
699
870
  source = "registry+https://github.com/rust-lang/crates.io-index"
700
871
  checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
701
872
 
873
+ [[package]]
874
+ name = "crypto-common"
875
+ version = "0.1.6"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
878
+ dependencies = [
879
+ "generic-array",
880
+ "typenum",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "darling"
885
+ version = "0.20.11"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
888
+ dependencies = [
889
+ "darling_core",
890
+ "darling_macro",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "darling_core"
895
+ version = "0.20.11"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
898
+ dependencies = [
899
+ "fnv",
900
+ "ident_case",
901
+ "proc-macro2",
902
+ "quote",
903
+ "strsim",
904
+ "syn 2.0.103",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "darling_macro"
909
+ version = "0.20.11"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
912
+ dependencies = [
913
+ "darling_core",
914
+ "quote",
915
+ "syn 2.0.103",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "deadpool"
920
+ version = "0.9.5"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
923
+ dependencies = [
924
+ "async-trait",
925
+ "deadpool-runtime",
926
+ "num_cpus",
927
+ "retain_mut",
928
+ "tokio",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "deadpool-runtime"
933
+ version = "0.1.4"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
936
+
937
+ [[package]]
938
+ name = "debug_tree"
939
+ version = "0.4.0"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "2d1ec383f2d844902d3c34e4253ba11ae48513cdaddc565cf1a6518db09a8e57"
942
+ dependencies = [
943
+ "once_cell",
944
+ ]
945
+
702
946
  [[package]]
703
947
  name = "deranged"
704
948
  version = "0.4.0"
@@ -708,6 +952,37 @@ dependencies = [
708
952
  "powerfmt",
709
953
  ]
710
954
 
955
+ [[package]]
956
+ name = "digest"
957
+ version = "0.10.7"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
960
+ dependencies = [
961
+ "block-buffer",
962
+ "crypto-common",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "dirs"
967
+ version = "5.0.1"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
970
+ dependencies = [
971
+ "dirs-sys",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "dirs-sys"
976
+ version = "0.4.1"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
979
+ dependencies = [
980
+ "libc",
981
+ "option-ext",
982
+ "redox_users",
983
+ "windows-sys 0.48.0",
984
+ ]
985
+
711
986
  [[package]]
712
987
  name = "displaydoc"
713
988
  version = "0.2.5"
@@ -716,7 +991,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
716
991
  dependencies = [
717
992
  "proc-macro2",
718
993
  "quote",
719
- "syn",
994
+ "syn 2.0.103",
720
995
  ]
721
996
 
722
997
  [[package]]
@@ -744,11 +1019,17 @@ dependencies = [
744
1019
  "chrono",
745
1020
  "rust_decimal",
746
1021
  "serde",
747
- "thiserror",
1022
+ "thiserror 2.0.12",
748
1023
  "time",
749
1024
  "winnow 0.6.26",
750
1025
  ]
751
1026
 
1027
+ [[package]]
1028
+ name = "dyn-clone"
1029
+ version = "1.0.19"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
1032
+
752
1033
  [[package]]
753
1034
  name = "either"
754
1035
  version = "1.15.0"
@@ -761,6 +1042,15 @@ version = "1.0.0"
761
1042
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
1043
  checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
763
1044
 
1045
+ [[package]]
1046
+ name = "encoding_rs"
1047
+ version = "0.8.35"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1050
+ dependencies = [
1051
+ "cfg-if",
1052
+ ]
1053
+
764
1054
  [[package]]
765
1055
  name = "equivalent"
766
1056
  version = "1.0.2"
@@ -769,20 +1059,82 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
769
1059
 
770
1060
  [[package]]
771
1061
  name = "errno"
772
- version = "0.3.11"
1062
+ version = "0.3.12"
773
1063
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1064
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
775
1065
  dependencies = [
776
1066
  "libc",
777
1067
  "windows-sys 0.59.0",
778
1068
  ]
779
1069
 
1070
+ [[package]]
1071
+ name = "event-listener"
1072
+ version = "2.5.3"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
1075
+
1076
+ [[package]]
1077
+ name = "ext-trait"
1078
+ version = "1.0.1"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "d772df1c1a777963712fb68e014235e80863d6a91a85c4e06ba2d16243a310e5"
1081
+ dependencies = [
1082
+ "ext-trait-proc_macros",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "ext-trait-proc_macros"
1087
+ version = "1.0.1"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "1ab7934152eaf26aa5aa9f7371408ad5af4c31357073c9e84c3b9d7f11ad639a"
1090
+ dependencies = [
1091
+ "proc-macro2",
1092
+ "quote",
1093
+ "syn 1.0.109",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "extension-traits"
1098
+ version = "1.0.1"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "a296e5a895621edf9fa8329c83aa1cb69a964643e36cf54d8d7a69b789089537"
1101
+ dependencies = [
1102
+ "ext-trait",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "extern-c"
1107
+ version = "0.1.0"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "320bea982e85d42441eb25c49b41218e7eaa2657e8f90bc4eca7437376751e23"
1110
+
1111
+ [[package]]
1112
+ name = "fastrand"
1113
+ version = "1.9.0"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
1116
+ dependencies = [
1117
+ "instant",
1118
+ ]
1119
+
780
1120
  [[package]]
781
1121
  name = "fastrand"
782
1122
  version = "2.3.0"
783
1123
  source = "registry+https://github.com/rust-lang/crates.io-index"
784
1124
  checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
785
1125
 
1126
+ [[package]]
1127
+ name = "filetime"
1128
+ version = "0.2.25"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
1131
+ dependencies = [
1132
+ "cfg-if",
1133
+ "libc",
1134
+ "libredox",
1135
+ "windows-sys 0.59.0",
1136
+ ]
1137
+
786
1138
  [[package]]
787
1139
  name = "fixedbitset"
788
1140
  version = "0.5.7"
@@ -811,8 +1163,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
811
1163
  checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
812
1164
 
813
1165
  [[package]]
814
- name = "futures"
815
- version = "0.3.31"
1166
+ name = "fsevent-sys"
1167
+ version = "4.1.0"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
1170
+ dependencies = [
1171
+ "libc",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "futures"
1176
+ version = "0.3.31"
816
1177
  source = "registry+https://github.com/rust-lang/crates.io-index"
817
1178
  checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
818
1179
  dependencies = [
@@ -858,6 +1219,21 @@ version = "0.3.31"
858
1219
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
1220
  checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
860
1221
 
1222
+ [[package]]
1223
+ name = "futures-lite"
1224
+ version = "1.13.0"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
1227
+ dependencies = [
1228
+ "fastrand 1.9.0",
1229
+ "futures-core",
1230
+ "futures-io",
1231
+ "memchr",
1232
+ "parking",
1233
+ "pin-project-lite",
1234
+ "waker-fn",
1235
+ ]
1236
+
861
1237
  [[package]]
862
1238
  name = "futures-macro"
863
1239
  version = "0.3.31"
@@ -866,7 +1242,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
866
1242
  dependencies = [
867
1243
  "proc-macro2",
868
1244
  "quote",
869
- "syn",
1245
+ "syn 2.0.103",
870
1246
  ]
871
1247
 
872
1248
  [[package]]
@@ -881,6 +1257,12 @@ version = "0.3.31"
881
1257
  source = "registry+https://github.com/rust-lang/crates.io-index"
882
1258
  checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
883
1259
 
1260
+ [[package]]
1261
+ name = "futures-timer"
1262
+ version = "3.0.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1265
+
884
1266
  [[package]]
885
1267
  name = "futures-util"
886
1268
  version = "0.3.31"
@@ -899,6 +1281,27 @@ dependencies = [
899
1281
  "slab",
900
1282
  ]
901
1283
 
1284
+ [[package]]
1285
+ name = "generic-array"
1286
+ version = "0.14.7"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1289
+ dependencies = [
1290
+ "typenum",
1291
+ "version_check",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "getrandom"
1296
+ version = "0.1.16"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1299
+ dependencies = [
1300
+ "cfg-if",
1301
+ "libc",
1302
+ "wasi 0.9.0+wasi-snapshot-preview1",
1303
+ ]
1304
+
902
1305
  [[package]]
903
1306
  name = "getrandom"
904
1307
  version = "0.2.16"
@@ -906,15 +1309,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
906
1309
  checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
907
1310
  dependencies = [
908
1311
  "cfg-if",
1312
+ "js-sys",
909
1313
  "libc",
910
- "wasi 0.11.0+wasi-snapshot-preview1",
1314
+ "wasi 0.11.1+wasi-snapshot-preview1",
1315
+ "wasm-bindgen",
911
1316
  ]
912
1317
 
913
1318
  [[package]]
914
1319
  name = "getrandom"
915
- version = "0.3.2"
1320
+ version = "0.3.3"
916
1321
  source = "registry+https://github.com/rust-lang/crates.io-index"
917
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1322
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
918
1323
  dependencies = [
919
1324
  "cfg-if",
920
1325
  "libc",
@@ -936,16 +1341,35 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
936
1341
 
937
1342
  [[package]]
938
1343
  name = "h2"
939
- version = "0.4.9"
1344
+ version = "0.3.26"
940
1345
  source = "registry+https://github.com/rust-lang/crates.io-index"
941
- checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1346
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1347
+ dependencies = [
1348
+ "bytes",
1349
+ "fnv",
1350
+ "futures-core",
1351
+ "futures-sink",
1352
+ "futures-util",
1353
+ "http 0.2.12",
1354
+ "indexmap 2.9.0",
1355
+ "slab",
1356
+ "tokio",
1357
+ "tokio-util",
1358
+ "tracing",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "h2"
1363
+ version = "0.4.10"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
942
1366
  dependencies = [
943
1367
  "atomic-waker",
944
1368
  "bytes",
945
1369
  "fnv",
946
1370
  "futures-core",
947
1371
  "futures-sink",
948
- "http",
1372
+ "http 1.3.1",
949
1373
  "indexmap 2.9.0",
950
1374
  "slab",
951
1375
  "tokio",
@@ -971,9 +1395,39 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
971
1395
 
972
1396
  [[package]]
973
1397
  name = "hashbrown"
974
- version = "0.15.2"
1398
+ version = "0.15.4"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1401
+
1402
+ [[package]]
1403
+ name = "headers"
1404
+ version = "0.4.1"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
1407
+ dependencies = [
1408
+ "base64 0.22.1",
1409
+ "bytes",
1410
+ "headers-core",
1411
+ "http 1.3.1",
1412
+ "httpdate",
1413
+ "mime",
1414
+ "sha1",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "headers-core"
1419
+ version = "0.3.0"
975
1420
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1421
+ checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
1422
+ dependencies = [
1423
+ "http 1.3.1",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "heck"
1428
+ version = "0.4.1"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
977
1431
 
978
1432
  [[package]]
979
1433
  name = "heck"
@@ -983,15 +1437,18 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
983
1437
 
984
1438
  [[package]]
985
1439
  name = "hermit-abi"
986
- version = "0.3.9"
1440
+ version = "0.5.2"
987
1441
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1442
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
989
1443
 
990
1444
  [[package]]
991
- name = "hermit-abi"
992
- version = "0.5.0"
1445
+ name = "hex"
1446
+ version = "0.4.3"
993
1447
  source = "registry+https://github.com/rust-lang/crates.io-index"
994
- checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1448
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1449
+ dependencies = [
1450
+ "serde",
1451
+ ]
995
1452
 
996
1453
  [[package]]
997
1454
  name = "home"
@@ -1002,6 +1459,17 @@ dependencies = [
1002
1459
  "windows-sys 0.59.0",
1003
1460
  ]
1004
1461
 
1462
+ [[package]]
1463
+ name = "http"
1464
+ version = "0.2.12"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1467
+ dependencies = [
1468
+ "bytes",
1469
+ "fnv",
1470
+ "itoa",
1471
+ ]
1472
+
1005
1473
  [[package]]
1006
1474
  name = "http"
1007
1475
  version = "1.3.1"
@@ -1013,6 +1481,17 @@ dependencies = [
1013
1481
  "itoa",
1014
1482
  ]
1015
1483
 
1484
+ [[package]]
1485
+ name = "http-body"
1486
+ version = "0.4.6"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1489
+ dependencies = [
1490
+ "bytes",
1491
+ "http 0.2.12",
1492
+ "pin-project-lite",
1493
+ ]
1494
+
1016
1495
  [[package]]
1017
1496
  name = "http-body"
1018
1497
  version = "1.0.1"
@@ -1020,7 +1499,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
1499
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1021
1500
  dependencies = [
1022
1501
  "bytes",
1023
- "http",
1502
+ "http 1.3.1",
1024
1503
  ]
1025
1504
 
1026
1505
  [[package]]
@@ -1031,11 +1510,32 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1031
1510
  dependencies = [
1032
1511
  "bytes",
1033
1512
  "futures-core",
1034
- "http",
1035
- "http-body",
1513
+ "http 1.3.1",
1514
+ "http-body 1.0.1",
1036
1515
  "pin-project-lite",
1037
1516
  ]
1038
1517
 
1518
+ [[package]]
1519
+ name = "http-types"
1520
+ version = "2.12.0"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1523
+ dependencies = [
1524
+ "anyhow",
1525
+ "async-channel",
1526
+ "base64 0.13.1",
1527
+ "futures-lite",
1528
+ "http 0.2.12",
1529
+ "infer",
1530
+ "pin-project-lite",
1531
+ "rand 0.7.3",
1532
+ "serde",
1533
+ "serde_json",
1534
+ "serde_qs",
1535
+ "serde_urlencoded",
1536
+ "url",
1537
+ ]
1538
+
1039
1539
  [[package]]
1040
1540
  name = "httparse"
1041
1541
  version = "1.10.1"
@@ -1048,6 +1548,30 @@ version = "1.0.3"
1048
1548
  source = "registry+https://github.com/rust-lang/crates.io-index"
1049
1549
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1050
1550
 
1551
+ [[package]]
1552
+ name = "hyper"
1553
+ version = "0.14.32"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1556
+ dependencies = [
1557
+ "bytes",
1558
+ "futures-channel",
1559
+ "futures-core",
1560
+ "futures-util",
1561
+ "h2 0.3.26",
1562
+ "http 0.2.12",
1563
+ "http-body 0.4.6",
1564
+ "httparse",
1565
+ "httpdate",
1566
+ "itoa",
1567
+ "pin-project-lite",
1568
+ "socket2",
1569
+ "tokio",
1570
+ "tower-service",
1571
+ "tracing",
1572
+ "want",
1573
+ ]
1574
+
1051
1575
  [[package]]
1052
1576
  name = "hyper"
1053
1577
  version = "1.6.0"
@@ -1057,9 +1581,9 @@ dependencies = [
1057
1581
  "bytes",
1058
1582
  "futures-channel",
1059
1583
  "futures-util",
1060
- "h2",
1061
- "http",
1062
- "http-body",
1584
+ "h2 0.4.10",
1585
+ "http 1.3.1",
1586
+ "http-body 1.0.1",
1063
1587
  "httparse",
1064
1588
  "httpdate",
1065
1589
  "itoa",
@@ -1071,13 +1595,12 @@ dependencies = [
1071
1595
 
1072
1596
  [[package]]
1073
1597
  name = "hyper-rustls"
1074
- version = "0.27.5"
1598
+ version = "0.27.7"
1075
1599
  source = "registry+https://github.com/rust-lang/crates.io-index"
1076
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1600
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1077
1601
  dependencies = [
1078
- "futures-util",
1079
- "http",
1080
- "hyper",
1602
+ "http 1.3.1",
1603
+ "hyper 1.6.0",
1081
1604
  "hyper-util",
1082
1605
  "rustls",
1083
1606
  "rustls-pki-types",
@@ -1092,7 +1615,7 @@ version = "0.5.2"
1092
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
1616
  checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1094
1617
  dependencies = [
1095
- "hyper",
1618
+ "hyper 1.6.0",
1096
1619
  "hyper-util",
1097
1620
  "pin-project-lite",
1098
1621
  "tokio",
@@ -1101,22 +1624,28 @@ dependencies = [
1101
1624
 
1102
1625
  [[package]]
1103
1626
  name = "hyper-util"
1104
- version = "0.1.11"
1627
+ version = "0.1.14"
1105
1628
  source = "registry+https://github.com/rust-lang/crates.io-index"
1106
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1629
+ checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
1107
1630
  dependencies = [
1631
+ "base64 0.22.1",
1108
1632
  "bytes",
1109
1633
  "futures-channel",
1634
+ "futures-core",
1110
1635
  "futures-util",
1111
- "http",
1112
- "http-body",
1113
- "hyper",
1636
+ "http 1.3.1",
1637
+ "http-body 1.0.1",
1638
+ "hyper 1.6.0",
1639
+ "ipnet",
1114
1640
  "libc",
1641
+ "percent-encoding",
1115
1642
  "pin-project-lite",
1116
1643
  "socket2",
1644
+ "system-configuration",
1117
1645
  "tokio",
1118
1646
  "tower-service",
1119
1647
  "tracing",
1648
+ "windows-registry",
1120
1649
  ]
1121
1650
 
1122
1651
  [[package]]
@@ -1145,21 +1674,22 @@ dependencies = [
1145
1674
 
1146
1675
  [[package]]
1147
1676
  name = "icu_collections"
1148
- version = "1.5.0"
1677
+ version = "2.0.0"
1149
1678
  source = "registry+https://github.com/rust-lang/crates.io-index"
1150
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1679
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1151
1680
  dependencies = [
1152
1681
  "displaydoc",
1682
+ "potential_utf",
1153
1683
  "yoke",
1154
1684
  "zerofrom",
1155
1685
  "zerovec",
1156
1686
  ]
1157
1687
 
1158
1688
  [[package]]
1159
- name = "icu_locid"
1160
- version = "1.5.0"
1689
+ name = "icu_locale_core"
1690
+ version = "2.0.0"
1161
1691
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1692
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1163
1693
  dependencies = [
1164
1694
  "displaydoc",
1165
1695
  "litemap",
@@ -1168,31 +1698,11 @@ dependencies = [
1168
1698
  "zerovec",
1169
1699
  ]
1170
1700
 
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
1701
  [[package]]
1192
1702
  name = "icu_normalizer"
1193
- version = "1.5.0"
1703
+ version = "2.0.0"
1194
1704
  source = "registry+https://github.com/rust-lang/crates.io-index"
1195
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1705
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1196
1706
  dependencies = [
1197
1707
  "displaydoc",
1198
1708
  "icu_collections",
@@ -1200,66 +1710,59 @@ dependencies = [
1200
1710
  "icu_properties",
1201
1711
  "icu_provider",
1202
1712
  "smallvec",
1203
- "utf16_iter",
1204
- "utf8_iter",
1205
- "write16",
1206
1713
  "zerovec",
1207
1714
  ]
1208
1715
 
1209
1716
  [[package]]
1210
1717
  name = "icu_normalizer_data"
1211
- version = "1.5.1"
1718
+ version = "2.0.0"
1212
1719
  source = "registry+https://github.com/rust-lang/crates.io-index"
1213
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1720
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1214
1721
 
1215
1722
  [[package]]
1216
1723
  name = "icu_properties"
1217
- version = "1.5.1"
1724
+ version = "2.0.1"
1218
1725
  source = "registry+https://github.com/rust-lang/crates.io-index"
1219
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1726
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1220
1727
  dependencies = [
1221
1728
  "displaydoc",
1222
1729
  "icu_collections",
1223
- "icu_locid_transform",
1730
+ "icu_locale_core",
1224
1731
  "icu_properties_data",
1225
1732
  "icu_provider",
1226
- "tinystr",
1733
+ "potential_utf",
1734
+ "zerotrie",
1227
1735
  "zerovec",
1228
1736
  ]
1229
1737
 
1230
1738
  [[package]]
1231
1739
  name = "icu_properties_data"
1232
- version = "1.5.1"
1740
+ version = "2.0.1"
1233
1741
  source = "registry+https://github.com/rust-lang/crates.io-index"
1234
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1742
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1235
1743
 
1236
1744
  [[package]]
1237
1745
  name = "icu_provider"
1238
- version = "1.5.0"
1746
+ version = "2.0.0"
1239
1747
  source = "registry+https://github.com/rust-lang/crates.io-index"
1240
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1748
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1241
1749
  dependencies = [
1242
1750
  "displaydoc",
1243
- "icu_locid",
1244
- "icu_provider_macros",
1751
+ "icu_locale_core",
1245
1752
  "stable_deref_trait",
1246
1753
  "tinystr",
1247
1754
  "writeable",
1248
1755
  "yoke",
1249
1756
  "zerofrom",
1757
+ "zerotrie",
1250
1758
  "zerovec",
1251
1759
  ]
1252
1760
 
1253
1761
  [[package]]
1254
- name = "icu_provider_macros"
1255
- version = "1.5.0"
1762
+ name = "ident_case"
1763
+ version = "1.0.1"
1256
1764
  source = "registry+https://github.com/rust-lang/crates.io-index"
1257
- checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1258
- dependencies = [
1259
- "proc-macro2",
1260
- "quote",
1261
- "syn",
1262
- ]
1765
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1263
1766
 
1264
1767
  [[package]]
1265
1768
  name = "idna"
@@ -1274,36 +1777,14 @@ dependencies = [
1274
1777
 
1275
1778
  [[package]]
1276
1779
  name = "idna_adapter"
1277
- version = "1.2.0"
1780
+ version = "1.2.1"
1278
1781
  source = "registry+https://github.com/rust-lang/crates.io-index"
1279
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1782
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1280
1783
  dependencies = [
1281
1784
  "icu_normalizer",
1282
1785
  "icu_properties",
1283
1786
  ]
1284
1787
 
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
1788
  [[package]]
1308
1789
  name = "indexmap"
1309
1790
  version = "1.9.3"
@@ -1321,7 +1802,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
1802
  checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1322
1803
  dependencies = [
1323
1804
  "equivalent",
1324
- "hashbrown 0.15.2",
1805
+ "hashbrown 0.15.4",
1325
1806
  ]
1326
1807
 
1327
1808
  [[package]]
@@ -1343,6 +1824,41 @@ version = "2.0.6"
1343
1824
  source = "registry+https://github.com/rust-lang/crates.io-index"
1344
1825
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1345
1826
 
1827
+ [[package]]
1828
+ name = "infer"
1829
+ version = "0.2.3"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1832
+
1833
+ [[package]]
1834
+ name = "inotify"
1835
+ version = "0.11.0"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1838
+ dependencies = [
1839
+ "bitflags 2.9.1",
1840
+ "inotify-sys",
1841
+ "libc",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "inotify-sys"
1846
+ version = "0.1.5"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1849
+ dependencies = [
1850
+ "libc",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "instant"
1855
+ version = "0.1.13"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1858
+ dependencies = [
1859
+ "cfg-if",
1860
+ ]
1861
+
1346
1862
  [[package]]
1347
1863
  name = "inventory"
1348
1864
  version = "0.3.20"
@@ -1358,13 +1874,23 @@ version = "2.11.0"
1358
1874
  source = "registry+https://github.com/rust-lang/crates.io-index"
1359
1875
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1360
1876
 
1877
+ [[package]]
1878
+ name = "iri-string"
1879
+ version = "0.7.8"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1882
+ dependencies = [
1883
+ "memchr",
1884
+ "serde",
1885
+ ]
1886
+
1361
1887
  [[package]]
1362
1888
  name = "is-terminal"
1363
1889
  version = "0.4.16"
1364
1890
  source = "registry+https://github.com/rust-lang/crates.io-index"
1365
1891
  checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1366
1892
  dependencies = [
1367
- "hermit-abi 0.5.0",
1893
+ "hermit-abi",
1368
1894
  "libc",
1369
1895
  "windows-sys 0.59.0",
1370
1896
  ]
@@ -1443,7 +1969,7 @@ version = "0.1.33"
1443
1969
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
1970
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1445
1971
  dependencies = [
1446
- "getrandom 0.3.2",
1972
+ "getrandom 0.3.3",
1447
1973
  "libc",
1448
1974
  ]
1449
1975
 
@@ -1457,6 +1983,40 @@ dependencies = [
1457
1983
  "wasm-bindgen",
1458
1984
  ]
1459
1985
 
1986
+ [[package]]
1987
+ name = "jsonwebtoken-aws-lc"
1988
+ version = "9.3.0"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "5719b46c18bab340120f6d71f2a98d775cc3b1dd22d810335e4b00d52830d841"
1991
+ dependencies = [
1992
+ "aws-lc-rs",
1993
+ "base64 0.22.1",
1994
+ "pem",
1995
+ "serde",
1996
+ "serde_json",
1997
+ "simple_asn1",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "kqueue"
2002
+ version = "1.1.1"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
2005
+ dependencies = [
2006
+ "kqueue-sys",
2007
+ "libc",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "kqueue-sys"
2012
+ version = "1.0.4"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
2015
+ dependencies = [
2016
+ "bitflags 1.3.2",
2017
+ "libc",
2018
+ ]
2019
+
1460
2020
  [[package]]
1461
2021
  name = "lazy_static"
1462
2022
  version = "1.5.0"
@@ -1471,18 +2031,29 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1471
2031
 
1472
2032
  [[package]]
1473
2033
  name = "libc"
1474
- version = "0.2.172"
2034
+ version = "0.2.174"
1475
2035
  source = "registry+https://github.com/rust-lang/crates.io-index"
1476
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2036
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1477
2037
 
1478
2038
  [[package]]
1479
2039
  name = "libloading"
1480
- version = "0.8.6"
2040
+ version = "0.8.8"
1481
2041
  source = "registry+https://github.com/rust-lang/crates.io-index"
1482
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2042
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1483
2043
  dependencies = [
1484
2044
  "cfg-if",
1485
- "windows-targets 0.52.6",
2045
+ "windows-targets 0.53.2",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "libredox"
2050
+ version = "0.1.3"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2053
+ dependencies = [
2054
+ "bitflags 2.9.1",
2055
+ "libc",
2056
+ "redox_syscall",
1486
2057
  ]
1487
2058
 
1488
2059
  [[package]]
@@ -1499,15 +2070,15 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1499
2070
 
1500
2071
  [[package]]
1501
2072
  name = "litemap"
1502
- version = "0.7.5"
2073
+ version = "0.8.0"
1503
2074
  source = "registry+https://github.com/rust-lang/crates.io-index"
1504
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2075
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1505
2076
 
1506
2077
  [[package]]
1507
2078
  name = "lock_api"
1508
- version = "0.4.12"
2079
+ version = "0.4.13"
1509
2080
  source = "registry+https://github.com/rust-lang/crates.io-index"
1510
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2081
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1511
2082
  dependencies = [
1512
2083
  "autocfg",
1513
2084
  "scopeguard",
@@ -1520,27 +2091,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
2091
  checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1521
2092
 
1522
2093
  [[package]]
1523
- name = "manyhow"
1524
- version = "0.11.4"
2094
+ name = "macro_rules_attribute"
2095
+ version = "0.1.3"
1525
2096
  source = "registry+https://github.com/rust-lang/crates.io-index"
1526
- checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
2097
+ checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
1527
2098
  dependencies = [
1528
- "manyhow-macros",
1529
- "proc-macro2",
1530
- "quote",
1531
- "syn",
2099
+ "macro_rules_attribute-proc_macro",
2100
+ "paste",
1532
2101
  ]
1533
2102
 
1534
2103
  [[package]]
1535
- name = "manyhow-macros"
1536
- version = "0.11.4"
2104
+ name = "macro_rules_attribute-proc_macro"
2105
+ version = "0.1.3"
1537
2106
  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
- ]
2107
+ checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
1544
2108
 
1545
2109
  [[package]]
1546
2110
  name = "maplit"
@@ -1565,19 +2129,30 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1565
2129
 
1566
2130
  [[package]]
1567
2131
  name = "matrixmultiply"
1568
- version = "0.3.9"
2132
+ version = "0.3.10"
1569
2133
  source = "registry+https://github.com/rust-lang/crates.io-index"
1570
- checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
2134
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1571
2135
  dependencies = [
1572
2136
  "autocfg",
1573
2137
  "rawpointer",
1574
2138
  ]
1575
2139
 
2140
+ [[package]]
2141
+ name = "maybe-async"
2142
+ version = "0.2.10"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
2145
+ dependencies = [
2146
+ "proc-macro2",
2147
+ "quote",
2148
+ "syn 2.0.103",
2149
+ ]
2150
+
1576
2151
  [[package]]
1577
2152
  name = "memchr"
1578
- version = "2.7.4"
2153
+ version = "2.7.5"
1579
2154
  source = "registry+https://github.com/rust-lang/crates.io-index"
1580
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2155
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1581
2156
 
1582
2157
  [[package]]
1583
2158
  name = "memoffset"
@@ -1602,29 +2177,156 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1602
2177
 
1603
2178
  [[package]]
1604
2179
  name = "miniz_oxide"
1605
- version = "0.8.8"
2180
+ version = "0.8.9"
1606
2181
  source = "registry+https://github.com/rust-lang/crates.io-index"
1607
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2182
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1608
2183
  dependencies = [
1609
2184
  "adler2",
1610
2185
  ]
1611
2186
 
1612
2187
  [[package]]
1613
2188
  name = "mio"
1614
- version = "1.0.3"
2189
+ version = "1.0.4"
1615
2190
  source = "registry+https://github.com/rust-lang/crates.io-index"
1616
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2191
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1617
2192
  dependencies = [
1618
2193
  "libc",
1619
- "wasi 0.11.0+wasi-snapshot-preview1",
1620
- "windows-sys 0.52.0",
2194
+ "log",
2195
+ "wasi 0.11.1+wasi-snapshot-preview1",
2196
+ "windows-sys 0.59.0",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "mls-rs"
2201
+ version = "0.48.0"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "a5c5f385480adea41795dfae0fd694440f14040ead5dca1af27ce981a37ca68c"
2204
+ dependencies = [
2205
+ "async-trait",
2206
+ "cfg-if",
2207
+ "debug_tree",
2208
+ "futures",
2209
+ "getrandom 0.2.16",
2210
+ "hex",
2211
+ "itertools 0.14.0",
2212
+ "maybe-async",
2213
+ "mls-rs-codec",
2214
+ "mls-rs-core",
2215
+ "mls-rs-identity-x509",
2216
+ "portable-atomic",
2217
+ "portable-atomic-util",
2218
+ "rand_core 0.6.4",
2219
+ "rayon",
2220
+ "safer-ffi-gen",
2221
+ "serde",
2222
+ "spin",
2223
+ "thiserror 2.0.12",
2224
+ "wasm-bindgen",
2225
+ "zeroize",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "mls-rs-codec"
2230
+ version = "0.6.0"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "f865c30512488ec839e934208ff2ca4b2491cb3cde5a929f2b0cfed064e05511"
2233
+ dependencies = [
2234
+ "mls-rs-codec-derive",
2235
+ "thiserror 1.0.69",
2236
+ "wasm-bindgen",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "mls-rs-codec-derive"
2241
+ version = "0.2.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "c8b31fb579767147e96686889f1e7459d6bd41a131b11d7cd130776cffadb1c3"
2244
+ dependencies = [
2245
+ "darling",
2246
+ "proc-macro2",
2247
+ "quote",
2248
+ "syn 2.0.103",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "mls-rs-core"
2253
+ version = "0.23.0"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "a282545c6b6ce1fe29f1f4b707019a694d3b5bcb82e84e6f72c9d51e99fb56b1"
2256
+ dependencies = [
2257
+ "async-trait",
2258
+ "hex",
2259
+ "maybe-async",
2260
+ "mls-rs-codec",
2261
+ "safer-ffi-gen",
2262
+ "serde",
2263
+ "thiserror 2.0.12",
2264
+ "wasm-bindgen",
2265
+ "zeroize",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "mls-rs-crypto-awslc"
2270
+ version = "0.18.0"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "9334e7ff64572364753d461c677253c2c2617361affdd4a5051a5257d1a22c1b"
2273
+ dependencies = [
2274
+ "async-trait",
2275
+ "aws-lc-rs",
2276
+ "aws-lc-sys",
2277
+ "maybe-async",
2278
+ "mls-rs-core",
2279
+ "mls-rs-crypto-hpke",
2280
+ "mls-rs-crypto-traits",
2281
+ "mls-rs-identity-x509",
2282
+ "thiserror 2.0.12",
2283
+ "zeroize",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "mls-rs-crypto-hpke"
2288
+ version = "0.16.0"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "59b6208976b78f5d12196a8308618a24a974014a04de554e47dc3e65cd26795d"
2291
+ dependencies = [
2292
+ "async-trait",
2293
+ "cfg-if",
2294
+ "maybe-async",
2295
+ "mls-rs-core",
2296
+ "mls-rs-crypto-traits",
2297
+ "thiserror 2.0.12",
2298
+ "zeroize",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "mls-rs-crypto-traits"
2303
+ version = "0.17.0"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "20d41b82ac304c249cfc2e62ceb411e7c0cb34fac7b0d32b5ea1f01bc090d667"
2306
+ dependencies = [
2307
+ "async-trait",
2308
+ "maybe-async",
2309
+ "mls-rs-core",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "mls-rs-identity-x509"
2314
+ version = "0.17.0"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "982328b99e2785a301e80fed6893539ad5b2ea2dbd7bbd9db453757e8a4bcbf4"
2317
+ dependencies = [
2318
+ "async-trait",
2319
+ "maybe-async",
2320
+ "mls-rs-core",
2321
+ "thiserror 2.0.12",
2322
+ "wasm-bindgen",
1621
2323
  ]
1622
2324
 
1623
2325
  [[package]]
1624
2326
  name = "multimap"
1625
- version = "0.10.0"
2327
+ version = "0.10.1"
1626
2328
  source = "registry+https://github.com/rust-lang/crates.io-index"
1627
- checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
2329
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1628
2330
 
1629
2331
  [[package]]
1630
2332
  name = "ndarray"
@@ -1651,6 +2353,31 @@ dependencies = [
1651
2353
  "minimal-lexical",
1652
2354
  ]
1653
2355
 
2356
+ [[package]]
2357
+ name = "notify"
2358
+ version = "8.0.0"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
2361
+ dependencies = [
2362
+ "bitflags 2.9.1",
2363
+ "filetime",
2364
+ "fsevent-sys",
2365
+ "inotify",
2366
+ "kqueue",
2367
+ "libc",
2368
+ "log",
2369
+ "mio",
2370
+ "notify-types",
2371
+ "walkdir",
2372
+ "windows-sys 0.59.0",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "notify-types"
2377
+ version = "2.0.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2380
+
1654
2381
  [[package]]
1655
2382
  name = "nu-ansi-term"
1656
2383
  version = "0.46.0"
@@ -1661,6 +2388,16 @@ dependencies = [
1661
2388
  "winapi",
1662
2389
  ]
1663
2390
 
2391
+ [[package]]
2392
+ name = "num-bigint"
2393
+ version = "0.4.6"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2396
+ dependencies = [
2397
+ "num-integer",
2398
+ "num-traits",
2399
+ ]
2400
+
1664
2401
  [[package]]
1665
2402
  name = "num-complex"
1666
2403
  version = "0.4.6"
@@ -1696,11 +2433,11 @@ dependencies = [
1696
2433
 
1697
2434
  [[package]]
1698
2435
  name = "num_cpus"
1699
- version = "1.16.0"
2436
+ version = "1.17.0"
1700
2437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1701
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2438
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1702
2439
  dependencies = [
1703
- "hermit-abi 0.3.9",
2440
+ "hermit-abi",
1704
2441
  "libc",
1705
2442
  ]
1706
2443
 
@@ -1740,6 +2477,16 @@ name = "once_cell"
1740
2477
  version = "1.21.3"
1741
2478
  source = "registry+https://github.com/rust-lang/crates.io-index"
1742
2479
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2480
+ dependencies = [
2481
+ "critical-section",
2482
+ "portable-atomic",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "once_cell_polyfill"
2487
+ version = "1.70.1"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1743
2490
 
1744
2491
  [[package]]
1745
2492
  name = "oorandom"
@@ -1763,7 +2510,7 @@ dependencies = [
1763
2510
  "futures-sink",
1764
2511
  "js-sys",
1765
2512
  "pin-project-lite",
1766
- "thiserror",
2513
+ "thiserror 2.0.12",
1767
2514
  "tracing",
1768
2515
  ]
1769
2516
 
@@ -1775,7 +2522,7 @@ checksum = "46d7ab32b827b5b495bd90fa95a6cb65ccc293555dcc3199ae2937d2d237c8ed"
1775
2522
  dependencies = [
1776
2523
  "async-trait",
1777
2524
  "bytes",
1778
- "http",
2525
+ "http 1.3.1",
1779
2526
  "opentelemetry",
1780
2527
  "reqwest",
1781
2528
  "tracing",
@@ -1788,14 +2535,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
2535
  checksum = "d899720fe06916ccba71c01d04ecd77312734e2de3467fd30d9d580c8ce85656"
1789
2536
  dependencies = [
1790
2537
  "futures-core",
1791
- "http",
2538
+ "http 1.3.1",
1792
2539
  "opentelemetry",
1793
2540
  "opentelemetry-http",
1794
2541
  "opentelemetry-proto",
1795
2542
  "opentelemetry_sdk",
1796
2543
  "prost",
1797
2544
  "reqwest",
1798
- "thiserror",
2545
+ "thiserror 2.0.12",
1799
2546
  "tokio",
1800
2547
  "tonic 0.12.3",
1801
2548
  "tracing",
@@ -1845,23 +2592,35 @@ dependencies = [
1845
2592
  "percent-encoding",
1846
2593
  "rand 0.9.1",
1847
2594
  "serde_json",
1848
- "thiserror",
2595
+ "thiserror 2.0.12",
1849
2596
  "tokio",
1850
2597
  "tokio-stream",
1851
2598
  "tracing",
1852
2599
  ]
1853
2600
 
2601
+ [[package]]
2602
+ name = "option-ext"
2603
+ version = "0.2.0"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2606
+
1854
2607
  [[package]]
1855
2608
  name = "overload"
1856
2609
  version = "0.1.1"
1857
2610
  source = "registry+https://github.com/rust-lang/crates.io-index"
1858
2611
  checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1859
2612
 
2613
+ [[package]]
2614
+ name = "parking"
2615
+ version = "2.2.1"
2616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2617
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2618
+
1860
2619
  [[package]]
1861
2620
  name = "parking_lot"
1862
- version = "0.12.3"
2621
+ version = "0.12.4"
1863
2622
  source = "registry+https://github.com/rust-lang/crates.io-index"
1864
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2623
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1865
2624
  dependencies = [
1866
2625
  "lock_api",
1867
2626
  "parking_lot_core",
@@ -1869,9 +2628,9 @@ dependencies = [
1869
2628
 
1870
2629
  [[package]]
1871
2630
  name = "parking_lot_core"
1872
- version = "0.9.10"
2631
+ version = "0.9.11"
1873
2632
  source = "registry+https://github.com/rust-lang/crates.io-index"
1874
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2633
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1875
2634
  dependencies = [
1876
2635
  "cfg-if",
1877
2636
  "libc",
@@ -1880,6 +2639,22 @@ dependencies = [
1880
2639
  "windows-targets 0.52.6",
1881
2640
  ]
1882
2641
 
2642
+ [[package]]
2643
+ name = "paste"
2644
+ version = "1.0.15"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2647
+
2648
+ [[package]]
2649
+ name = "pem"
2650
+ version = "3.0.5"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
2653
+ dependencies = [
2654
+ "base64 0.22.1",
2655
+ "serde",
2656
+ ]
2657
+
1883
2658
  [[package]]
1884
2659
  name = "percent-encoding"
1885
2660
  version = "2.3.1"
@@ -1913,7 +2688,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1913
2688
  dependencies = [
1914
2689
  "proc-macro2",
1915
2690
  "quote",
1916
- "syn",
2691
+ "syn 2.0.103",
1917
2692
  ]
1918
2693
 
1919
2694
  [[package]]
@@ -1958,9 +2733,12 @@ dependencies = [
1958
2733
 
1959
2734
  [[package]]
1960
2735
  name = "portable-atomic"
1961
- version = "1.11.0"
2736
+ version = "1.11.1"
1962
2737
  source = "registry+https://github.com/rust-lang/crates.io-index"
1963
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2738
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2739
+ dependencies = [
2740
+ "critical-section",
2741
+ ]
1964
2742
 
1965
2743
  [[package]]
1966
2744
  name = "portable-atomic-util"
@@ -1971,6 +2749,15 @@ dependencies = [
1971
2749
  "portable-atomic",
1972
2750
  ]
1973
2751
 
2752
+ [[package]]
2753
+ name = "potential_utf"
2754
+ version = "0.1.2"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2757
+ dependencies = [
2758
+ "zerovec",
2759
+ ]
2760
+
1974
2761
  [[package]]
1975
2762
  name = "powerfmt"
1976
2763
  version = "0.2.0"
@@ -1988,23 +2775,55 @@ dependencies = [
1988
2775
 
1989
2776
  [[package]]
1990
2777
  name = "prettyplease"
1991
- version = "0.2.32"
2778
+ version = "0.1.25"
1992
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
1993
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2780
+ checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
1994
2781
  dependencies = [
1995
2782
  "proc-macro2",
1996
- "syn",
2783
+ "syn 1.0.109",
1997
2784
  ]
1998
2785
 
1999
2786
  [[package]]
2000
- name = "proc-macro-utils"
2001
- version = "0.10.0"
2787
+ name = "prettyplease"
2788
+ version = "0.2.34"
2789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2790
+ checksum = "6837b9e10d61f45f987d50808f83d1ee3d206c66acf650c3e4ae2e1f6ddedf55"
2791
+ dependencies = [
2792
+ "proc-macro2",
2793
+ "syn 2.0.103",
2794
+ ]
2795
+
2796
+ [[package]]
2797
+ name = "proc-macro-crate"
2798
+ version = "3.3.0"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2801
+ dependencies = [
2802
+ "toml_edit",
2803
+ ]
2804
+
2805
+ [[package]]
2806
+ name = "proc-macro-error"
2807
+ version = "1.0.4"
2002
2808
  source = "registry+https://github.com/rust-lang/crates.io-index"
2003
- checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
2809
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2004
2810
  dependencies = [
2811
+ "proc-macro-error-attr",
2005
2812
  "proc-macro2",
2006
2813
  "quote",
2007
- "smallvec",
2814
+ "syn 1.0.109",
2815
+ "version_check",
2816
+ ]
2817
+
2818
+ [[package]]
2819
+ name = "proc-macro-error-attr"
2820
+ version = "1.0.4"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2823
+ dependencies = [
2824
+ "proc-macro2",
2825
+ "quote",
2826
+ "version_check",
2008
2827
  ]
2009
2828
 
2010
2829
  [[package]]
@@ -2032,17 +2851,17 @@ version = "0.13.5"
2032
2851
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
2852
  checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
2034
2853
  dependencies = [
2035
- "heck",
2854
+ "heck 0.5.0",
2036
2855
  "itertools 0.14.0",
2037
2856
  "log",
2038
2857
  "multimap",
2039
2858
  "once_cell",
2040
2859
  "petgraph",
2041
- "prettyplease",
2860
+ "prettyplease 0.2.34",
2042
2861
  "prost",
2043
2862
  "prost-types",
2044
2863
  "regex",
2045
- "syn",
2864
+ "syn 2.0.103",
2046
2865
  "tempfile",
2047
2866
  ]
2048
2867
 
@@ -2056,7 +2875,7 @@ dependencies = [
2056
2875
  "itertools 0.14.0",
2057
2876
  "proc-macro2",
2058
2877
  "quote",
2059
- "syn",
2878
+ "syn 2.0.103",
2060
2879
  ]
2061
2880
 
2062
2881
  [[package]]
@@ -2185,7 +3004,7 @@ dependencies = [
2185
3004
  "proc-macro2",
2186
3005
  "pyo3-macros-backend",
2187
3006
  "quote",
2188
- "syn",
3007
+ "syn 2.0.103",
2189
3008
  ]
2190
3009
 
2191
3010
  [[package]]
@@ -2194,11 +3013,11 @@ version = "0.24.2"
2194
3013
  source = "registry+https://github.com/rust-lang/crates.io-index"
2195
3014
  checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2196
3015
  dependencies = [
2197
- "heck",
3016
+ "heck 0.5.0",
2198
3017
  "proc-macro2",
2199
3018
  "pyo3-build-config",
2200
3019
  "quote",
2201
- "syn",
3020
+ "syn 2.0.103",
2202
3021
  ]
2203
3022
 
2204
3023
  [[package]]
@@ -2229,7 +3048,7 @@ checksum = "3ee49d727163163a0c6fc3fee4636c8b5c82e1bb868e85cf411be7ae9e4e5b40"
2229
3048
  dependencies = [
2230
3049
  "proc-macro2",
2231
3050
  "quote",
2232
- "syn",
3051
+ "syn 2.0.103",
2233
3052
  ]
2234
3053
 
2235
3054
  [[package]]
@@ -2243,9 +3062,22 @@ dependencies = [
2243
3062
 
2244
3063
  [[package]]
2245
3064
  name = "r-efi"
2246
- version = "5.2.0"
3065
+ version = "5.3.0"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3068
+
3069
+ [[package]]
3070
+ name = "rand"
3071
+ version = "0.7.3"
2247
3072
  source = "registry+https://github.com/rust-lang/crates.io-index"
2248
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3073
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
3074
+ dependencies = [
3075
+ "getrandom 0.1.16",
3076
+ "libc",
3077
+ "rand_chacha 0.2.2",
3078
+ "rand_core 0.5.1",
3079
+ "rand_hc",
3080
+ ]
2249
3081
 
2250
3082
  [[package]]
2251
3083
  name = "rand"
@@ -2268,6 +3100,16 @@ dependencies = [
2268
3100
  "rand_core 0.9.3",
2269
3101
  ]
2270
3102
 
3103
+ [[package]]
3104
+ name = "rand_chacha"
3105
+ version = "0.2.2"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
3108
+ dependencies = [
3109
+ "ppv-lite86",
3110
+ "rand_core 0.5.1",
3111
+ ]
3112
+
2271
3113
  [[package]]
2272
3114
  name = "rand_chacha"
2273
3115
  version = "0.3.1"
@@ -2288,6 +3130,15 @@ dependencies = [
2288
3130
  "rand_core 0.9.3",
2289
3131
  ]
2290
3132
 
3133
+ [[package]]
3134
+ name = "rand_core"
3135
+ version = "0.5.1"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
3138
+ dependencies = [
3139
+ "getrandom 0.1.16",
3140
+ ]
3141
+
2291
3142
  [[package]]
2292
3143
  name = "rand_core"
2293
3144
  version = "0.6.4"
@@ -2303,7 +3154,16 @@ version = "0.9.3"
2303
3154
  source = "registry+https://github.com/rust-lang/crates.io-index"
2304
3155
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2305
3156
  dependencies = [
2306
- "getrandom 0.3.2",
3157
+ "getrandom 0.3.3",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "rand_hc"
3162
+ version = "0.2.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
3165
+ dependencies = [
3166
+ "rand_core 0.5.1",
2307
3167
  ]
2308
3168
 
2309
3169
  [[package]]
@@ -2334,11 +3194,42 @@ dependencies = [
2334
3194
 
2335
3195
  [[package]]
2336
3196
  name = "redox_syscall"
2337
- version = "0.5.11"
3197
+ version = "0.5.13"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
3200
+ dependencies = [
3201
+ "bitflags 2.9.1",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "redox_users"
3206
+ version = "0.4.6"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
3209
+ dependencies = [
3210
+ "getrandom 0.2.16",
3211
+ "libredox",
3212
+ "thiserror 1.0.69",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "ref-cast"
3217
+ version = "1.0.24"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
3220
+ dependencies = [
3221
+ "ref-cast-impl",
3222
+ ]
3223
+
3224
+ [[package]]
3225
+ name = "ref-cast-impl"
3226
+ version = "1.0.24"
2338
3227
  source = "registry+https://github.com/rust-lang/crates.io-index"
2339
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
3228
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
2340
3229
  dependencies = [
2341
- "bitflags",
3230
+ "proc-macro2",
3231
+ "quote",
3232
+ "syn 2.0.103",
2342
3233
  ]
2343
3234
 
2344
3235
  [[package]]
@@ -2387,43 +3278,51 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2387
3278
 
2388
3279
  [[package]]
2389
3280
  name = "reqwest"
2390
- version = "0.12.15"
3281
+ version = "0.12.20"
2391
3282
  source = "registry+https://github.com/rust-lang/crates.io-index"
2392
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3283
+ checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
2393
3284
  dependencies = [
2394
- "base64",
3285
+ "base64 0.22.1",
2395
3286
  "bytes",
3287
+ "encoding_rs",
2396
3288
  "futures-channel",
2397
3289
  "futures-core",
2398
3290
  "futures-util",
2399
- "http",
2400
- "http-body",
3291
+ "h2 0.4.10",
3292
+ "http 1.3.1",
3293
+ "http-body 1.0.1",
2401
3294
  "http-body-util",
2402
- "hyper",
3295
+ "hyper 1.6.0",
3296
+ "hyper-rustls",
2403
3297
  "hyper-util",
2404
- "ipnet",
2405
3298
  "js-sys",
2406
3299
  "log",
2407
3300
  "mime",
2408
- "once_cell",
2409
3301
  "percent-encoding",
2410
3302
  "pin-project-lite",
3303
+ "rustls",
3304
+ "rustls-pki-types",
2411
3305
  "serde",
2412
3306
  "serde_json",
2413
3307
  "serde_urlencoded",
2414
3308
  "sync_wrapper",
2415
3309
  "tokio",
2416
- "tokio-util",
3310
+ "tokio-rustls",
2417
3311
  "tower 0.5.2",
3312
+ "tower-http",
2418
3313
  "tower-service",
2419
3314
  "url",
2420
3315
  "wasm-bindgen",
2421
3316
  "wasm-bindgen-futures",
2422
- "wasm-streams",
2423
3317
  "web-sys",
2424
- "windows-registry",
2425
3318
  ]
2426
3319
 
3320
+ [[package]]
3321
+ name = "retain_mut"
3322
+ version = "0.1.9"
3323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+ checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
3325
+
2427
3326
  [[package]]
2428
3327
  name = "ring"
2429
3328
  version = "0.17.14"
@@ -2434,15 +3333,15 @@ dependencies = [
2434
3333
  "cfg-if",
2435
3334
  "getrandom 0.2.16",
2436
3335
  "libc",
2437
- "untrusted",
3336
+ "untrusted 0.9.0",
2438
3337
  "windows-sys 0.52.0",
2439
3338
  ]
2440
3339
 
2441
3340
  [[package]]
2442
3341
  name = "rust_decimal"
2443
- version = "1.37.1"
3342
+ version = "1.37.2"
2444
3343
  source = "registry+https://github.com/rust-lang/crates.io-index"
2445
- checksum = "faa7de2ba56ac291bd90c6b9bece784a52ae1411f9506544b3eae36dd2356d50"
3344
+ checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
2446
3345
  dependencies = [
2447
3346
  "arrayvec",
2448
3347
  "num-traits",
@@ -2450,9 +3349,9 @@ dependencies = [
2450
3349
 
2451
3350
  [[package]]
2452
3351
  name = "rustc-demangle"
2453
- version = "0.1.24"
3352
+ version = "0.1.25"
2454
3353
  source = "registry+https://github.com/rust-lang/crates.io-index"
2455
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3354
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2456
3355
 
2457
3356
  [[package]]
2458
3357
  name = "rustc-hash"
@@ -2466,13 +3365,22 @@ version = "2.1.1"
2466
3365
  source = "registry+https://github.com/rust-lang/crates.io-index"
2467
3366
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2468
3367
 
3368
+ [[package]]
3369
+ name = "rustc_version"
3370
+ version = "0.4.1"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3373
+ dependencies = [
3374
+ "semver",
3375
+ ]
3376
+
2469
3377
  [[package]]
2470
3378
  name = "rustix"
2471
3379
  version = "0.38.44"
2472
3380
  source = "registry+https://github.com/rust-lang/crates.io-index"
2473
3381
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2474
3382
  dependencies = [
2475
- "bitflags",
3383
+ "bitflags 2.9.1",
2476
3384
  "errno",
2477
3385
  "libc",
2478
3386
  "linux-raw-sys 0.4.15",
@@ -2481,11 +3389,11 @@ dependencies = [
2481
3389
 
2482
3390
  [[package]]
2483
3391
  name = "rustix"
2484
- version = "1.0.5"
3392
+ version = "1.0.7"
2485
3393
  source = "registry+https://github.com/rust-lang/crates.io-index"
2486
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
3394
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2487
3395
  dependencies = [
2488
- "bitflags",
3396
+ "bitflags 2.9.1",
2489
3397
  "errno",
2490
3398
  "libc",
2491
3399
  "linux-raw-sys 0.9.4",
@@ -2494,9 +3402,9 @@ dependencies = [
2494
3402
 
2495
3403
  [[package]]
2496
3404
  name = "rustls"
2497
- version = "0.23.26"
3405
+ version = "0.23.28"
2498
3406
  source = "registry+https://github.com/rust-lang/crates.io-index"
2499
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
3407
+ checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
2500
3408
  dependencies = [
2501
3409
  "aws-lc-rs",
2502
3410
  "log",
@@ -2521,27 +3429,30 @@ dependencies = [
2521
3429
 
2522
3430
  [[package]]
2523
3431
  name = "rustls-pki-types"
2524
- version = "1.11.0"
3432
+ version = "1.12.0"
2525
3433
  source = "registry+https://github.com/rust-lang/crates.io-index"
2526
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3434
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3435
+ dependencies = [
3436
+ "zeroize",
3437
+ ]
2527
3438
 
2528
3439
  [[package]]
2529
3440
  name = "rustls-webpki"
2530
- version = "0.103.1"
3441
+ version = "0.103.3"
2531
3442
  source = "registry+https://github.com/rust-lang/crates.io-index"
2532
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
3443
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
2533
3444
  dependencies = [
2534
3445
  "aws-lc-rs",
2535
3446
  "ring",
2536
3447
  "rustls-pki-types",
2537
- "untrusted",
3448
+ "untrusted 0.9.0",
2538
3449
  ]
2539
3450
 
2540
3451
  [[package]]
2541
3452
  name = "rustversion"
2542
- version = "1.0.20"
3453
+ version = "1.0.21"
2543
3454
  source = "registry+https://github.com/rust-lang/crates.io-index"
2544
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3455
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2545
3456
 
2546
3457
  [[package]]
2547
3458
  name = "ryu"
@@ -2549,6 +3460,62 @@ version = "1.0.20"
2549
3460
  source = "registry+https://github.com/rust-lang/crates.io-index"
2550
3461
  checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2551
3462
 
3463
+ [[package]]
3464
+ name = "safer-ffi"
3465
+ version = "0.1.13"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "435fdd58b61a6f1d8545274c1dfa458e905ff68c166e65e294a0130ef5e675bd"
3468
+ dependencies = [
3469
+ "extern-c",
3470
+ "libc",
3471
+ "macro_rules_attribute",
3472
+ "paste",
3473
+ "safer_ffi-proc_macros",
3474
+ "scopeguard",
3475
+ "stabby",
3476
+ "uninit",
3477
+ "unwind_safe",
3478
+ "with_builtin_macros",
3479
+ ]
3480
+
3481
+ [[package]]
3482
+ name = "safer-ffi-gen"
3483
+ version = "0.9.2"
3484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3485
+ checksum = "bdc3e72a8e99de537461ab5e9331d32c08dd558493e844cb70753a9890fdbc48"
3486
+ dependencies = [
3487
+ "once_cell",
3488
+ "safer-ffi",
3489
+ "safer-ffi-gen-macro",
3490
+ ]
3491
+
3492
+ [[package]]
3493
+ name = "safer-ffi-gen-macro"
3494
+ version = "0.9.2"
3495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3496
+ checksum = "836aa8cd7b269dcdd3d81cca1ddc136aa1d2b05f30b6a34c0ff075152b2e3771"
3497
+ dependencies = [
3498
+ "heck 0.4.1",
3499
+ "proc-macro-error",
3500
+ "proc-macro2",
3501
+ "quote",
3502
+ "syn 2.0.103",
3503
+ "thiserror 1.0.69",
3504
+ ]
3505
+
3506
+ [[package]]
3507
+ name = "safer_ffi-proc_macros"
3508
+ version = "0.1.13"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "f0f25be5ba5f319542edb31925517e0380245ae37df50a9752cdbc05ef948156"
3511
+ dependencies = [
3512
+ "macro_rules_attribute",
3513
+ "prettyplease 0.1.25",
3514
+ "proc-macro2",
3515
+ "quote",
3516
+ "syn 1.0.109",
3517
+ ]
3518
+
2552
3519
  [[package]]
2553
3520
  name = "same-file"
2554
3521
  version = "1.0.6"
@@ -2567,6 +3534,31 @@ dependencies = [
2567
3534
  "windows-sys 0.59.0",
2568
3535
  ]
2569
3536
 
3537
+ [[package]]
3538
+ name = "schemars"
3539
+ version = "1.0.3"
3540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3541
+ checksum = "1375ba8ef45a6f15d83fa8748f1079428295d403d6ea991d09ab100155fbc06d"
3542
+ dependencies = [
3543
+ "dyn-clone",
3544
+ "ref-cast",
3545
+ "schemars_derive",
3546
+ "serde",
3547
+ "serde_json",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "schemars_derive"
3552
+ version = "1.0.3"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "2b13ed22d6d49fe23712e068770b5c4df4a693a2b02eeff8e7ca3135627a24f6"
3555
+ dependencies = [
3556
+ "proc-macro2",
3557
+ "quote",
3558
+ "serde_derive_internals",
3559
+ "syn 2.0.103",
3560
+ ]
3561
+
2570
3562
  [[package]]
2571
3563
  name = "scopeguard"
2572
3564
  version = "1.2.0"
@@ -2579,8 +3571,8 @@ version = "3.2.0"
2579
3571
  source = "registry+https://github.com/rust-lang/crates.io-index"
2580
3572
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2581
3573
  dependencies = [
2582
- "bitflags",
2583
- "core-foundation",
3574
+ "bitflags 2.9.1",
3575
+ "core-foundation 0.10.1",
2584
3576
  "core-foundation-sys",
2585
3577
  "libc",
2586
3578
  "security-framework-sys",
@@ -2596,6 +3588,12 @@ dependencies = [
2596
3588
  "libc",
2597
3589
  ]
2598
3590
 
3591
+ [[package]]
3592
+ name = "semver"
3593
+ version = "1.0.26"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3596
+
2599
3597
  [[package]]
2600
3598
  name = "serde"
2601
3599
  version = "1.0.219"
@@ -2607,9 +3605,9 @@ dependencies = [
2607
3605
 
2608
3606
  [[package]]
2609
3607
  name = "serde-pyobject"
2610
- version = "0.6.1"
3608
+ version = "0.6.2"
2611
3609
  source = "registry+https://github.com/rust-lang/crates.io-index"
2612
- checksum = "8448b99b12404bbb03ee8fe18f4ddbc693a0859074ea7b746bc17e47e510299c"
3610
+ checksum = "4c485853a65e1a5f2db72e818ec4c7548a39614fabdd988f5e3504071453b7d7"
2613
3611
  dependencies = [
2614
3612
  "pyo3",
2615
3613
  "serde",
@@ -2623,7 +3621,18 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2623
3621
  dependencies = [
2624
3622
  "proc-macro2",
2625
3623
  "quote",
2626
- "syn",
3624
+ "syn 2.0.103",
3625
+ ]
3626
+
3627
+ [[package]]
3628
+ name = "serde_derive_internals"
3629
+ version = "0.29.1"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3632
+ dependencies = [
3633
+ "proc-macro2",
3634
+ "quote",
3635
+ "syn 2.0.103",
2627
3636
  ]
2628
3637
 
2629
3638
  [[package]]
@@ -2638,11 +3647,22 @@ dependencies = [
2638
3647
  "serde",
2639
3648
  ]
2640
3649
 
3650
+ [[package]]
3651
+ name = "serde_qs"
3652
+ version = "0.8.5"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
3655
+ dependencies = [
3656
+ "percent-encoding",
3657
+ "serde",
3658
+ "thiserror 1.0.69",
3659
+ ]
3660
+
2641
3661
  [[package]]
2642
3662
  name = "serde_spanned"
2643
- version = "0.6.8"
3663
+ version = "0.6.9"
2644
3664
  source = "registry+https://github.com/rust-lang/crates.io-index"
2645
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
3665
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2646
3666
  dependencies = [
2647
3667
  "serde",
2648
3668
  ]
@@ -2672,6 +3692,23 @@ dependencies = [
2672
3692
  "unsafe-libyaml",
2673
3693
  ]
2674
3694
 
3695
+ [[package]]
3696
+ name = "sha1"
3697
+ version = "0.10.6"
3698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3699
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3700
+ dependencies = [
3701
+ "cfg-if",
3702
+ "cpufeatures",
3703
+ "digest",
3704
+ ]
3705
+
3706
+ [[package]]
3707
+ name = "sha2-const-stable"
3708
+ version = "0.1.0"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "5f179d4e11094a893b82fff208f74d448a7512f99f5a0acbd5c679b705f83ed9"
3711
+
2675
3712
  [[package]]
2676
3713
  name = "sharded-slab"
2677
3714
  version = "0.1.7"
@@ -2697,42 +3734,97 @@ dependencies = [
2697
3734
  ]
2698
3735
 
2699
3736
  [[package]]
2700
- name = "slab"
2701
- version = "0.4.9"
3737
+ name = "simple_asn1"
3738
+ version = "0.6.3"
2702
3739
  source = "registry+https://github.com/rust-lang/crates.io-index"
2703
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3740
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
2704
3741
  dependencies = [
2705
- "autocfg",
3742
+ "num-bigint",
3743
+ "num-traits",
3744
+ "thiserror 2.0.12",
3745
+ "time",
2706
3746
  ]
2707
3747
 
3748
+ [[package]]
3749
+ name = "slab"
3750
+ version = "0.4.10"
3751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3752
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
3753
+
2708
3754
  [[package]]
2709
3755
  name = "slim-examples"
2710
3756
  version = "0.1.0"
2711
3757
  dependencies = [
2712
- "agntcy-slim",
2713
- "agntcy-slim-config",
2714
- "agntcy-slim-datapath",
2715
- "agntcy-slim-service",
2716
- "agntcy-slim-signal",
2717
- "clap",
2718
- "tokio",
2719
- "tracing",
3758
+ "agntcy-slim",
3759
+ "agntcy-slim-auth",
3760
+ "agntcy-slim-config",
3761
+ "agntcy-slim-datapath",
3762
+ "agntcy-slim-mls",
3763
+ "agntcy-slim-service",
3764
+ "agntcy-slim-signal",
3765
+ "clap",
3766
+ "tokio",
3767
+ "tracing",
3768
+ ]
3769
+
3770
+ [[package]]
3771
+ name = "smallvec"
3772
+ version = "1.15.1"
3773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3774
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3775
+
3776
+ [[package]]
3777
+ name = "socket2"
3778
+ version = "0.5.10"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3781
+ dependencies = [
3782
+ "libc",
3783
+ "windows-sys 0.52.0",
3784
+ ]
3785
+
3786
+ [[package]]
3787
+ name = "spin"
3788
+ version = "0.10.0"
3789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3790
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3791
+ dependencies = [
3792
+ "portable-atomic",
3793
+ ]
3794
+
3795
+ [[package]]
3796
+ name = "stabby"
3797
+ version = "36.2.2"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "89b7e94eaf470c2e76b5f15fb2fb49714471a36cc512df5ee231e62e82ec79f8"
3800
+ dependencies = [
3801
+ "rustversion",
3802
+ "stabby-abi",
2720
3803
  ]
2721
3804
 
2722
3805
  [[package]]
2723
- name = "smallvec"
2724
- version = "1.15.0"
3806
+ name = "stabby-abi"
3807
+ version = "36.2.2"
2725
3808
  source = "registry+https://github.com/rust-lang/crates.io-index"
2726
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3809
+ checksum = "0dc7a63b8276b54e51bfffe3d85da56e7906b2dcfcb29018a8ab666c06734c1a"
3810
+ dependencies = [
3811
+ "rustc_version",
3812
+ "rustversion",
3813
+ "sha2-const-stable",
3814
+ "stabby-macros",
3815
+ ]
2727
3816
 
2728
3817
  [[package]]
2729
- name = "socket2"
2730
- version = "0.5.9"
3818
+ name = "stabby-macros"
3819
+ version = "36.2.2"
2731
3820
  source = "registry+https://github.com/rust-lang/crates.io-index"
2732
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3821
+ checksum = "eecb7ec5611ec93ec79d120fbe55f31bea234dc1bed1001d4a071bb688651615"
2733
3822
  dependencies = [
2734
- "libc",
2735
- "windows-sys 0.52.0",
3823
+ "proc-macro-crate",
3824
+ "proc-macro2",
3825
+ "quote",
3826
+ "rand 0.8.5",
3827
+ "syn 1.0.109",
2736
3828
  ]
2737
3829
 
2738
3830
  [[package]]
@@ -2755,9 +3847,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2755
3847
 
2756
3848
  [[package]]
2757
3849
  name = "syn"
2758
- version = "2.0.100"
3850
+ version = "1.0.109"
3851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3852
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3853
+ dependencies = [
3854
+ "proc-macro2",
3855
+ "quote",
3856
+ "unicode-ident",
3857
+ ]
3858
+
3859
+ [[package]]
3860
+ name = "syn"
3861
+ version = "2.0.103"
2759
3862
  source = "registry+https://github.com/rust-lang/crates.io-index"
2760
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3863
+ checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
2761
3864
  dependencies = [
2762
3865
  "proc-macro2",
2763
3866
  "quote",
@@ -2775,13 +3878,34 @@ dependencies = [
2775
3878
 
2776
3879
  [[package]]
2777
3880
  name = "synstructure"
2778
- version = "0.13.1"
3881
+ version = "0.13.2"
2779
3882
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3883
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2781
3884
  dependencies = [
2782
3885
  "proc-macro2",
2783
3886
  "quote",
2784
- "syn",
3887
+ "syn 2.0.103",
3888
+ ]
3889
+
3890
+ [[package]]
3891
+ name = "system-configuration"
3892
+ version = "0.6.1"
3893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3894
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3895
+ dependencies = [
3896
+ "bitflags 2.9.1",
3897
+ "core-foundation 0.9.4",
3898
+ "system-configuration-sys",
3899
+ ]
3900
+
3901
+ [[package]]
3902
+ name = "system-configuration-sys"
3903
+ version = "0.6.0"
3904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3905
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3906
+ dependencies = [
3907
+ "core-foundation-sys",
3908
+ "libc",
2785
3909
  ]
2786
3910
 
2787
3911
  [[package]]
@@ -2792,14 +3916,14 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2792
3916
 
2793
3917
  [[package]]
2794
3918
  name = "tempfile"
2795
- version = "3.19.1"
3919
+ version = "3.20.0"
2796
3920
  source = "registry+https://github.com/rust-lang/crates.io-index"
2797
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3921
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2798
3922
  dependencies = [
2799
- "fastrand",
2800
- "getrandom 0.3.2",
3923
+ "fastrand 2.3.0",
3924
+ "getrandom 0.3.3",
2801
3925
  "once_cell",
2802
- "rustix 1.0.5",
3926
+ "rustix 1.0.7",
2803
3927
  "windows-sys 0.59.0",
2804
3928
  ]
2805
3929
 
@@ -2808,26 +3932,48 @@ name = "testing"
2808
3932
  version = "0.1.0"
2809
3933
  dependencies = [
2810
3934
  "agntcy-slim",
3935
+ "agntcy-slim-auth",
2811
3936
  "agntcy-slim-config",
2812
3937
  "agntcy-slim-datapath",
2813
3938
  "agntcy-slim-service",
3939
+ "agntcy-slim-tracing",
2814
3940
  "clap",
2815
3941
  "indicatif",
2816
3942
  "parking_lot",
2817
3943
  "rand 0.9.1",
2818
- "thiserror",
3944
+ "thiserror 2.0.12",
2819
3945
  "tokio",
2820
3946
  "tokio-util",
2821
3947
  "tracing",
2822
3948
  ]
2823
3949
 
3950
+ [[package]]
3951
+ name = "thiserror"
3952
+ version = "1.0.69"
3953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3954
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3955
+ dependencies = [
3956
+ "thiserror-impl 1.0.69",
3957
+ ]
3958
+
2824
3959
  [[package]]
2825
3960
  name = "thiserror"
2826
3961
  version = "2.0.12"
2827
3962
  source = "registry+https://github.com/rust-lang/crates.io-index"
2828
3963
  checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2829
3964
  dependencies = [
2830
- "thiserror-impl",
3965
+ "thiserror-impl 2.0.12",
3966
+ ]
3967
+
3968
+ [[package]]
3969
+ name = "thiserror-impl"
3970
+ version = "1.0.69"
3971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3972
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3973
+ dependencies = [
3974
+ "proc-macro2",
3975
+ "quote",
3976
+ "syn 2.0.103",
2831
3977
  ]
2832
3978
 
2833
3979
  [[package]]
@@ -2838,17 +3984,16 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2838
3984
  dependencies = [
2839
3985
  "proc-macro2",
2840
3986
  "quote",
2841
- "syn",
3987
+ "syn 2.0.103",
2842
3988
  ]
2843
3989
 
2844
3990
  [[package]]
2845
3991
  name = "thread_local"
2846
- version = "1.1.8"
3992
+ version = "1.1.9"
2847
3993
  source = "registry+https://github.com/rust-lang/crates.io-index"
2848
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3994
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2849
3995
  dependencies = [
2850
3996
  "cfg-if",
2851
- "once_cell",
2852
3997
  ]
2853
3998
 
2854
3999
  [[package]]
@@ -2858,9 +4003,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
4003
  checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2859
4004
  dependencies = [
2860
4005
  "deranged",
4006
+ "itoa",
2861
4007
  "num-conv",
2862
4008
  "powerfmt",
4009
+ "serde",
2863
4010
  "time-core",
4011
+ "time-macros",
2864
4012
  ]
2865
4013
 
2866
4014
  [[package]]
@@ -2869,11 +4017,21 @@ version = "0.1.4"
2869
4017
  source = "registry+https://github.com/rust-lang/crates.io-index"
2870
4018
  checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2871
4019
 
4020
+ [[package]]
4021
+ name = "time-macros"
4022
+ version = "0.2.22"
4023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4024
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
4025
+ dependencies = [
4026
+ "num-conv",
4027
+ "time-core",
4028
+ ]
4029
+
2872
4030
  [[package]]
2873
4031
  name = "tinystr"
2874
- version = "0.7.6"
4032
+ version = "0.8.1"
2875
4033
  source = "registry+https://github.com/rust-lang/crates.io-index"
2876
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4034
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2877
4035
  dependencies = [
2878
4036
  "displaydoc",
2879
4037
  "zerovec",
@@ -2891,9 +4049,9 @@ dependencies = [
2891
4049
 
2892
4050
  [[package]]
2893
4051
  name = "tokio"
2894
- version = "1.44.2"
4052
+ version = "1.45.1"
2895
4053
  source = "registry+https://github.com/rust-lang/crates.io-index"
2896
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
4054
+ checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
2897
4055
  dependencies = [
2898
4056
  "backtrace",
2899
4057
  "bytes",
@@ -2914,7 +4072,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2914
4072
  dependencies = [
2915
4073
  "proc-macro2",
2916
4074
  "quote",
2917
- "syn",
4075
+ "syn 2.0.103",
2918
4076
  ]
2919
4077
 
2920
4078
  [[package]]
@@ -2953,9 +4111,9 @@ dependencies = [
2953
4111
 
2954
4112
  [[package]]
2955
4113
  name = "toml"
2956
- version = "0.8.20"
4114
+ version = "0.8.23"
2957
4115
  source = "registry+https://github.com/rust-lang/crates.io-index"
2958
- checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
4116
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2959
4117
  dependencies = [
2960
4118
  "serde",
2961
4119
  "serde_spanned",
@@ -2965,26 +4123,33 @@ dependencies = [
2965
4123
 
2966
4124
  [[package]]
2967
4125
  name = "toml_datetime"
2968
- version = "0.6.8"
4126
+ version = "0.6.11"
2969
4127
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
4128
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2971
4129
  dependencies = [
2972
4130
  "serde",
2973
4131
  ]
2974
4132
 
2975
4133
  [[package]]
2976
4134
  name = "toml_edit"
2977
- version = "0.22.24"
4135
+ version = "0.22.27"
2978
4136
  source = "registry+https://github.com/rust-lang/crates.io-index"
2979
- checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
4137
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2980
4138
  dependencies = [
2981
4139
  "indexmap 2.9.0",
2982
4140
  "serde",
2983
4141
  "serde_spanned",
2984
4142
  "toml_datetime",
2985
- "winnow 0.7.6",
4143
+ "toml_write",
4144
+ "winnow 0.7.11",
2986
4145
  ]
2987
4146
 
4147
+ [[package]]
4148
+ name = "toml_write"
4149
+ version = "0.1.2"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
4152
+
2988
4153
  [[package]]
2989
4154
  name = "tonic"
2990
4155
  version = "0.12.3"
@@ -2992,12 +4157,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
4157
  checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2993
4158
  dependencies = [
2994
4159
  "async-trait",
2995
- "base64",
4160
+ "base64 0.22.1",
2996
4161
  "bytes",
2997
- "http",
2998
- "http-body",
4162
+ "http 1.3.1",
4163
+ "http-body 1.0.1",
2999
4164
  "http-body-util",
3000
- "hyper",
4165
+ "hyper 1.6.0",
3001
4166
  "hyper-timeout",
3002
4167
  "hyper-util",
3003
4168
  "percent-encoding",
@@ -3013,19 +4178,19 @@ dependencies = [
3013
4178
 
3014
4179
  [[package]]
3015
4180
  name = "tonic"
3016
- version = "0.13.0"
4181
+ version = "0.13.1"
3017
4182
  source = "registry+https://github.com/rust-lang/crates.io-index"
3018
- checksum = "85839f0b32fd242bb3209262371d07feda6d780d16ee9d2bc88581b89da1549b"
4183
+ checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
3019
4184
  dependencies = [
3020
4185
  "async-trait",
3021
4186
  "axum",
3022
- "base64",
4187
+ "base64 0.22.1",
3023
4188
  "bytes",
3024
- "h2",
3025
- "http",
3026
- "http-body",
4189
+ "h2 0.4.10",
4190
+ "http 1.3.1",
4191
+ "http-body 1.0.1",
3027
4192
  "http-body-util",
3028
- "hyper",
4193
+ "hyper 1.6.0",
3029
4194
  "hyper-timeout",
3030
4195
  "hyper-util",
3031
4196
  "percent-encoding",
@@ -3042,16 +4207,16 @@ dependencies = [
3042
4207
 
3043
4208
  [[package]]
3044
4209
  name = "tonic-build"
3045
- version = "0.13.0"
4210
+ version = "0.13.1"
3046
4211
  source = "registry+https://github.com/rust-lang/crates.io-index"
3047
- checksum = "d85f0383fadd15609306383a90e85eaed44169f931a5d2be1b42c76ceff1825e"
4212
+ checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
3048
4213
  dependencies = [
3049
- "prettyplease",
4214
+ "prettyplease 0.2.34",
3050
4215
  "proc-macro2",
3051
4216
  "prost-build",
3052
4217
  "prost-types",
3053
4218
  "quote",
3054
- "syn",
4219
+ "syn 2.0.103",
3055
4220
  ]
3056
4221
 
3057
4222
  [[package]]
@@ -3062,11 +4227,11 @@ checksum = "e96bedfe5ae00cd370db4029612380c267bc224b2d45f1d35402b6b588e68d7b"
3062
4227
  dependencies = [
3063
4228
  "async-stream",
3064
4229
  "futures",
3065
- "hyper",
4230
+ "hyper 1.6.0",
3066
4231
  "hyper-util",
3067
4232
  "tokio",
3068
4233
  "tokio-rustls",
3069
- "tonic 0.13.0",
4234
+ "tonic 0.13.1",
3070
4235
  "tower 0.5.2",
3071
4236
  "tracing",
3072
4237
  ]
@@ -3112,16 +4277,20 @@ dependencies = [
3112
4277
 
3113
4278
  [[package]]
3114
4279
  name = "tower-http"
3115
- version = "0.6.2"
4280
+ version = "0.6.6"
3116
4281
  source = "registry+https://github.com/rust-lang/crates.io-index"
3117
- checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
4282
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3118
4283
  dependencies = [
3119
- "base64",
3120
- "bitflags",
4284
+ "base64 0.22.1",
4285
+ "bitflags 2.9.1",
3121
4286
  "bytes",
3122
- "http",
4287
+ "futures-util",
4288
+ "http 1.3.1",
4289
+ "http-body 1.0.1",
4290
+ "iri-string",
3123
4291
  "mime",
3124
4292
  "pin-project-lite",
4293
+ "tower 0.5.2",
3125
4294
  "tower-layer",
3126
4295
  "tower-service",
3127
4296
  ]
@@ -3132,25 +4301,6 @@ version = "0.3.3"
3132
4301
  source = "registry+https://github.com/rust-lang/crates.io-index"
3133
4302
  checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3134
4303
 
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
4304
  [[package]]
3155
4305
  name = "tower-service"
3156
4306
  version = "0.3.3"
@@ -3170,20 +4320,20 @@ dependencies = [
3170
4320
 
3171
4321
  [[package]]
3172
4322
  name = "tracing-attributes"
3173
- version = "0.1.28"
4323
+ version = "0.1.30"
3174
4324
  source = "registry+https://github.com/rust-lang/crates.io-index"
3175
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
4325
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3176
4326
  dependencies = [
3177
4327
  "proc-macro2",
3178
4328
  "quote",
3179
- "syn",
4329
+ "syn 2.0.103",
3180
4330
  ]
3181
4331
 
3182
4332
  [[package]]
3183
4333
  name = "tracing-core"
3184
- version = "0.1.33"
4334
+ version = "0.1.34"
3185
4335
  source = "registry+https://github.com/rust-lang/crates.io-index"
3186
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
4336
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3187
4337
  dependencies = [
3188
4338
  "once_cell",
3189
4339
  "valuable",
@@ -3254,7 +4404,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
4404
  checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
3255
4405
  dependencies = [
3256
4406
  "quote",
3257
- "syn",
4407
+ "syn 2.0.103",
3258
4408
  ]
3259
4409
 
3260
4410
  [[package]]
@@ -3263,6 +4413,21 @@ version = "0.2.5"
3263
4413
  source = "registry+https://github.com/rust-lang/crates.io-index"
3264
4414
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3265
4415
 
4416
+ [[package]]
4417
+ name = "twox-hash"
4418
+ version = "2.1.1"
4419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4420
+ checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
4421
+ dependencies = [
4422
+ "rand 0.9.1",
4423
+ ]
4424
+
4425
+ [[package]]
4426
+ name = "typenum"
4427
+ version = "1.18.0"
4428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4429
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
4430
+
3266
4431
  [[package]]
3267
4432
  name = "unicode-ident"
3268
4433
  version = "1.0.18"
@@ -3271,9 +4436,9 @@ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3271
4436
 
3272
4437
  [[package]]
3273
4438
  name = "unicode-width"
3274
- version = "0.2.0"
4439
+ version = "0.2.1"
3275
4440
  source = "registry+https://github.com/rust-lang/crates.io-index"
3276
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
4441
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
3277
4442
 
3278
4443
  [[package]]
3279
4444
  name = "unindent"
@@ -3281,18 +4446,45 @@ version = "0.2.4"
3281
4446
  source = "registry+https://github.com/rust-lang/crates.io-index"
3282
4447
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3283
4448
 
4449
+ [[package]]
4450
+ name = "uninit"
4451
+ version = "0.5.1"
4452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4453
+ checksum = "3e130f2ed46ca5d8ec13c7ff95836827f92f5f5f37fd2b2bf16f33c408d98bb6"
4454
+ dependencies = [
4455
+ "extension-traits",
4456
+ ]
4457
+
3284
4458
  [[package]]
3285
4459
  name = "unsafe-libyaml"
3286
4460
  version = "0.2.11"
3287
4461
  source = "registry+https://github.com/rust-lang/crates.io-index"
3288
4462
  checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3289
4463
 
4464
+ [[package]]
4465
+ name = "untrusted"
4466
+ version = "0.7.1"
4467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4468
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
4469
+
3290
4470
  [[package]]
3291
4471
  name = "untrusted"
3292
4472
  version = "0.9.0"
3293
4473
  source = "registry+https://github.com/rust-lang/crates.io-index"
3294
4474
  checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3295
4475
 
4476
+ [[package]]
4477
+ name = "unty"
4478
+ version = "0.0.4"
4479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4480
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
4481
+
4482
+ [[package]]
4483
+ name = "unwind_safe"
4484
+ version = "0.1.0"
4485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4486
+ checksum = "0976c77def3f1f75c4ef892a292c31c0bbe9e3d0702c63044d7c76db298171a3"
4487
+
3296
4488
  [[package]]
3297
4489
  name = "url"
3298
4490
  version = "2.5.4"
@@ -3302,14 +4494,9 @@ dependencies = [
3302
4494
  "form_urlencoded",
3303
4495
  "idna",
3304
4496
  "percent-encoding",
4497
+ "serde",
3305
4498
  ]
3306
4499
 
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
4500
  [[package]]
3314
4501
  name = "utf8_iter"
3315
4502
  version = "1.0.4"
@@ -3324,11 +4511,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3324
4511
 
3325
4512
  [[package]]
3326
4513
  name = "uuid"
3327
- version = "1.16.0"
4514
+ version = "1.17.0"
3328
4515
  source = "registry+https://github.com/rust-lang/crates.io-index"
3329
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
4516
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
3330
4517
  dependencies = [
3331
- "getrandom 0.3.2",
4518
+ "getrandom 0.3.3",
4519
+ "js-sys",
4520
+ "wasm-bindgen",
3332
4521
  ]
3333
4522
 
3334
4523
  [[package]]
@@ -3337,6 +4526,24 @@ version = "0.1.1"
3337
4526
  source = "registry+https://github.com/rust-lang/crates.io-index"
3338
4527
  checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3339
4528
 
4529
+ [[package]]
4530
+ name = "version_check"
4531
+ version = "0.9.5"
4532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4533
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4534
+
4535
+ [[package]]
4536
+ name = "virtue"
4537
+ version = "0.0.18"
4538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4539
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
4540
+
4541
+ [[package]]
4542
+ name = "waker-fn"
4543
+ version = "1.2.0"
4544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4545
+ checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7"
4546
+
3340
4547
  [[package]]
3341
4548
  name = "walkdir"
3342
4549
  version = "2.5.0"
@@ -3358,9 +4565,15 @@ dependencies = [
3358
4565
 
3359
4566
  [[package]]
3360
4567
  name = "wasi"
3361
- version = "0.11.0+wasi-snapshot-preview1"
4568
+ version = "0.9.0+wasi-snapshot-preview1"
4569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4570
+ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
4571
+
4572
+ [[package]]
4573
+ name = "wasi"
4574
+ version = "0.11.1+wasi-snapshot-preview1"
3362
4575
  source = "registry+https://github.com/rust-lang/crates.io-index"
3363
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4576
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3364
4577
 
3365
4578
  [[package]]
3366
4579
  name = "wasi"
@@ -3393,7 +4606,7 @@ dependencies = [
3393
4606
  "log",
3394
4607
  "proc-macro2",
3395
4608
  "quote",
3396
- "syn",
4609
+ "syn 2.0.103",
3397
4610
  "wasm-bindgen-shared",
3398
4611
  ]
3399
4612
 
@@ -3428,7 +4641,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3428
4641
  dependencies = [
3429
4642
  "proc-macro2",
3430
4643
  "quote",
3431
- "syn",
4644
+ "syn 2.0.103",
3432
4645
  "wasm-bindgen-backend",
3433
4646
  "wasm-bindgen-shared",
3434
4647
  ]
@@ -3442,19 +4655,6 @@ dependencies = [
3442
4655
  "unicode-ident",
3443
4656
  ]
3444
4657
 
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
4658
  [[package]]
3459
4659
  name = "web-sys"
3460
4660
  version = "0.3.77"
@@ -3520,15 +4720,15 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3520
4720
 
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
  ]