slim-bindings 0.6.0__tar.gz → 0.6.2__tar.gz

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

Potentially problematic release.


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

Files changed (222) hide show
  1. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/Cargo.lock +781 -460
  2. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/Cargo.toml +4 -0
  3. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/PKG-INFO +1 -1
  4. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/Cargo.toml +3 -1
  5. slim_bindings-0.6.2/core/auth/src/errors.rs +55 -0
  6. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/lib.rs +1 -0
  7. slim_bindings-0.6.2/core/auth/src/oidc.rs +1151 -0
  8. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/resolver.rs +4 -4
  9. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/testutils.rs +96 -1
  10. slim_bindings-0.6.2/core/config/src/auth/oidc.rs +426 -0
  11. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/auth.rs +1 -0
  12. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/message_processing.rs +22 -16
  13. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/messages/encoder.rs +40 -0
  14. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/messages/utils.rs +3 -4
  15. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/tests/data_path_test.rs +65 -0
  16. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/Cargo.toml +2 -5
  17. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/src/app.rs +380 -27
  18. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/src/lib.rs +0 -6
  19. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/src/service.rs +85 -15
  20. slim_bindings-0.6.2/core/session/Cargo.toml +29 -0
  21. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/channel_endpoint.rs +16 -13
  22. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/common.rs +3 -3
  23. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/config.rs +2 -2
  24. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/context.rs +14 -14
  25. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/errors.rs +2 -0
  26. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/handle.rs +21 -21
  27. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/interceptor.rs +2 -2
  28. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/interceptor_mls.rs +1 -1
  29. slim_bindings-0.6.0/core/service/src/session.rs → slim_bindings-0.6.2/core/session/src/lib.rs +2 -2
  30. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/moderator_task.rs +1 -1
  31. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/multicast.rs +3 -3
  32. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/notification.rs +3 -3
  33. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/point_to_point.rs +16 -6
  34. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/session_layer.rs +77 -39
  35. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/traits.rs +1 -1
  36. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/transmitter.rs +7 -7
  37. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/pyproject.toml +1 -1
  38. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/CHANGELOG.md +14 -0
  39. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/Cargo.toml +1 -0
  40. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/CHANGELOG.md +30 -0
  41. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/pyproject.toml +1 -1
  42. {slim_bindings-0.6.0 → slim_bindings-0.6.2/python/bindings}/slim_bindings/__init__.py +2 -0
  43. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/pyservice.rs +4 -8
  44. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/pysession.rs +17 -18
  45. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/uv.lock +154 -154
  46. {slim_bindings-0.6.0/python/bindings → slim_bindings-0.6.2}/slim_bindings/__init__.py +2 -0
  47. slim_bindings-0.6.0/core/auth/src/errors.rs +0 -28
  48. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/README.md +0 -0
  49. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/CHANGELOG.md +0 -0
  50. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/README.md +0 -0
  51. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/auth_provider.rs +0 -0
  52. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/builder.rs +0 -0
  53. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/file_watcher.rs +0 -0
  54. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/jwt.rs +0 -0
  55. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/jwt_middleware.rs +0 -0
  56. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/shared_secret.rs +0 -0
  57. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/auth/src/traits.rs +0 -0
  58. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/CHANGELOG.md +0 -0
  59. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/Cargo.toml +0 -0
  60. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/README.md +0 -0
  61. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/build.rs +0 -0
  62. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/proto/hello.proto +0 -0
  63. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/auth/basic.rs +0 -0
  64. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/auth/jwt.rs +0 -0
  65. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/auth/static_jwt.rs +0 -0
  66. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/component/configuration.rs +0 -0
  67. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/component/id.rs +0 -0
  68. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/component.rs +0 -0
  69. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/client.rs +0 -0
  70. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/compression.rs +0 -0
  71. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/errors.rs +0 -0
  72. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/headers_middleware.rs +0 -0
  73. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/helloworld.rs +0 -0
  74. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/proxy.rs +0 -0
  75. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/schema/client-config.schema.json +0 -0
  76. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/schema/generate_schema.rs +0 -0
  77. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc/server.rs +0 -0
  78. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/grpc.rs +0 -0
  79. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/lib.rs +0 -0
  80. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/metadata.rs +0 -0
  81. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/opaque.rs +0 -0
  82. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/provider/env.rs +0 -0
  83. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/provider/file.rs +0 -0
  84. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/provider/lib.rs +0 -0
  85. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/provider.rs +0 -0
  86. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/testutils/helloworld.rs +0 -0
  87. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/testutils/tower_service.rs +0 -0
  88. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/testutils.rs +0 -0
  89. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/tls/client.rs +0 -0
  90. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/tls/common.rs +0 -0
  91. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/tls/provider.rs +0 -0
  92. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/tls/server.rs +0 -0
  93. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/src/tls.rs +0 -0
  94. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/grpc/ca.crt +0 -0
  95. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/grpc/server.crt +0 -0
  96. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/grpc/server.key +0 -0
  97. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/ec256-public.pem +0 -0
  98. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/ec256-wrong.pem +0 -0
  99. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/ec256.pem +0 -0
  100. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/ec384-public.pem +0 -0
  101. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/ec384-wrong.pem +0 -0
  102. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/ec384.pem +0 -0
  103. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/eddsa-public.pem +0 -0
  104. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/eddsa-wrong.pem +0 -0
  105. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/eddsa.pem +0 -0
  106. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/rsa-public.pem +0 -0
  107. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/rsa-wrong.pem +0 -0
  108. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/jwt/rsa.pem +0 -0
  109. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/testfile +0 -0
  110. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/ca-1.crt +0 -0
  111. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/ca-2.crt +0 -0
  112. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/ca-bad.crt +0 -0
  113. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/client-1.crt +0 -0
  114. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/client-1.key +0 -0
  115. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/client-2.crt +0 -0
  116. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/client-2.key +0 -0
  117. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/server-1.crt +0 -0
  118. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/server-1.key +0 -0
  119. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/server-2.crt +0 -0
  120. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/testdata/tls/server-2.key +0 -0
  121. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/tests/e2e.rs +0 -0
  122. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/config/tests/tls.rs +0 -0
  123. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/CHANGELOG.md +0 -0
  124. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/Cargo.toml +0 -0
  125. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/README.md +0 -0
  126. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/build.rs +0 -0
  127. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/proto/v1/controller.proto +0 -0
  128. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/api/gen/controller.proto.v1.rs +0 -0
  129. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/api/proto.rs +0 -0
  130. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/api.rs +0 -0
  131. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/config.rs +0 -0
  132. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/errors.rs +0 -0
  133. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/lib.rs +0 -0
  134. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/controller/src/service.rs +0 -0
  135. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/CHANGELOG.md +0 -0
  136. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/Cargo.toml +0 -0
  137. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/README.md +0 -0
  138. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/benches/pool_benchmark.rs +0 -0
  139. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/build.rs +0 -0
  140. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/proto/v1/data-plane.proto +0 -0
  141. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/api/gen/dataplane.proto.v1.rs +0 -0
  142. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/api/proto.rs +0 -0
  143. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/api.rs +0 -0
  144. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/connection.rs +0 -0
  145. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/errors.rs +0 -0
  146. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/forwarder.rs +0 -0
  147. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/lib.rs +0 -0
  148. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/messages.rs +0 -0
  149. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/tables/connection_table.rs +0 -0
  150. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/tables/errors.rs +0 -0
  151. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/tables/pool.rs +0 -0
  152. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/tables/remote_subscription_table.rs +0 -0
  153. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/tables/subscription_table.rs +0 -0
  154. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/datapath/src/tables.rs +0 -0
  155. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/CHANGELOG.md +0 -0
  156. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/Cargo.toml +0 -0
  157. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/README.md +0 -0
  158. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/src/errors.rs +0 -0
  159. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/src/identity_provider.rs +0 -0
  160. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/src/lib.rs +0 -0
  161. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/mls/src/mls.rs +0 -0
  162. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/CHANGELOG.md +0 -0
  163. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/README.md +0 -0
  164. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/service/src/errors.rs +0 -0
  165. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/producer_buffer.rs +0 -0
  166. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/receiver_buffer.rs +0 -0
  167. {slim_bindings-0.6.0/core/service/src/session → slim_bindings-0.6.2/core/session/src}/timer.rs +0 -0
  168. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/signal/CHANGELOG.md +0 -0
  169. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/signal/Cargo.toml +0 -0
  170. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/signal/README.md +0 -0
  171. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/signal/src/lib.rs +0 -0
  172. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/tracing/CHANGELOG.md +0 -0
  173. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/tracing/Cargo.toml +0 -0
  174. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/tracing/README.md +0 -0
  175. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/tracing/src/lib.rs +0 -0
  176. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/core/tracing/src/utils.rs +0 -0
  177. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/BUILD.md +0 -0
  178. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/README.md +0 -0
  179. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/SESSION.md +0 -0
  180. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/Taskfile.yaml +0 -0
  181. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/build.rs +0 -0
  182. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/Dockerfile +0 -0
  183. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/README.md +0 -0
  184. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/Taskfile.yaml +0 -0
  185. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/README_group.md +0 -0
  186. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/README_point_to_point.md +0 -0
  187. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/__init__.py +0 -0
  188. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/common.py +0 -0
  189. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/group.py +0 -0
  190. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/point_to_point.py +0 -0
  191. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/examples/src/slim_bindings_examples/slim.py +0 -0
  192. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/slim_bindings/_slim_bindings.pyi +0 -0
  193. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/slim_bindings/errors.py +0 -0
  194. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/slim_bindings/session.py +0 -0
  195. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/slim_bindings/slim.py +0 -0
  196. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/slim_bindings/version.py +0 -0
  197. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/bin/stub_gen.rs +0 -0
  198. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/build_info.rs +0 -0
  199. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/lib.rs +0 -0
  200. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/pyidentity.rs +0 -0
  201. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/pymessage.rs +0 -0
  202. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/src/utils.rs +0 -0
  203. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/common.py +0 -0
  204. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/conftest.py +0 -0
  205. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/test_bindings.py +0 -0
  206. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/test_identity.py +0 -0
  207. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/test_multicast.py +0 -0
  208. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/test_point_to_point.py +0 -0
  209. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/test_session_metadata.py +0 -0
  210. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/ec256-public.pem +0 -0
  211. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/ec256.pem +0 -0
  212. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/ec384-public.pem +0 -0
  213. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/ec384.pem +0 -0
  214. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/eddsa-public.pem +0 -0
  215. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/eddsa.pem +0 -0
  216. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/rsa-public.pem +0 -0
  217. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/python/bindings/tests/testdata/rsa.pem +0 -0
  218. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/slim_bindings/_slim_bindings.pyi +0 -0
  219. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/slim_bindings/errors.py +0 -0
  220. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/slim_bindings/session.py +0 -0
  221. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/slim_bindings/slim.py +0 -0
  222. {slim_bindings-0.6.0 → slim_bindings-0.6.2}/slim_bindings/version.py +0 -0
@@ -4,9 +4,9 @@ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "addr2line"
7
- version = "0.24.2"
7
+ version = "0.25.1"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
10
  dependencies = [
11
11
  "gimli",
12
12
  ]
@@ -43,7 +43,7 @@ dependencies = [
43
43
  "serde",
44
44
  "serde_json",
45
45
  "serde_yaml",
46
- "thiserror 2.0.12",
46
+ "thiserror 2.0.17",
47
47
  "tokio",
48
48
  "tracing",
49
49
  "tracing-test",
@@ -62,14 +62,16 @@ dependencies = [
62
62
  "http 1.3.1",
63
63
  "jsonwebtoken-aws-lc",
64
64
  "notify",
65
+ "oauth2",
65
66
  "parking_lot",
66
67
  "pin-project",
67
- "reqwest",
68
+ "reqwest 0.12.23",
69
+ "rustls 0.23.31",
68
70
  "schemars",
69
71
  "serde",
70
72
  "serde_json",
71
73
  "serde_yaml",
72
- "thiserror 2.0.12",
74
+ "thiserror 2.0.17",
73
75
  "tokio",
74
76
  "tokio-util",
75
77
  "tower 0.5.2",
@@ -89,12 +91,13 @@ dependencies = [
89
91
  "agntcy-slim-config",
90
92
  "agntcy-slim-datapath",
91
93
  "agntcy-slim-service",
94
+ "agntcy-slim-session",
92
95
  "agntcy-slim-tracing",
93
96
  "async-trait",
94
97
  "pyo3",
95
98
  "pyo3-async-runtimes",
96
99
  "pyo3-stub-gen",
97
- "rand 0.9.1",
100
+ "rand 0.9.2",
98
101
  "serde",
99
102
  "serde-pyobject",
100
103
  "tokio",
@@ -110,22 +113,22 @@ dependencies = [
110
113
  "duration-string",
111
114
  "futures",
112
115
  "http 1.3.1",
113
- "hyper-rustls",
116
+ "hyper-rustls 0.27.7",
114
117
  "hyper-util",
115
118
  "lazy_static",
116
119
  "parking_lot",
117
120
  "prost 0.13.5",
118
121
  "protoc-bin-vendored",
119
- "rand 0.9.1",
122
+ "rand 0.9.2",
120
123
  "regex",
121
- "rustls",
124
+ "rustls 0.23.31",
122
125
  "rustls-native-certs",
123
126
  "rustls-pki-types",
124
127
  "schemars",
125
128
  "serde",
126
129
  "serde_json",
127
130
  "serde_yaml",
128
- "thiserror 2.0.12",
131
+ "thiserror 2.0.17",
129
132
  "tokio",
130
133
  "tokio-util",
131
134
  "tonic 0.13.1",
@@ -151,15 +154,15 @@ dependencies = [
151
154
  "base64 0.22.1",
152
155
  "bincode",
153
156
  "drain",
154
- "h2 0.4.10",
157
+ "h2 0.4.12",
155
158
  "parking_lot",
156
159
  "prost 0.13.5",
157
160
  "protoc-bin-vendored",
158
- "rand 0.9.1",
161
+ "rand 0.9.2",
159
162
  "serde",
160
163
  "serde_json",
161
164
  "serde_yaml",
162
- "thiserror 2.0.12",
165
+ "thiserror 2.0.17",
163
166
  "tokio",
164
167
  "tokio-stream",
165
168
  "tokio-util",
@@ -181,13 +184,13 @@ dependencies = [
181
184
  "bytes",
182
185
  "criterion",
183
186
  "drain",
184
- "h2 0.4.10",
187
+ "h2 0.4.12",
185
188
  "opentelemetry",
186
189
  "parking_lot",
187
190
  "prost 0.13.5",
188
191
  "protoc-bin-vendored",
189
- "rand 0.9.1",
190
- "thiserror 2.0.12",
192
+ "rand 0.9.2",
193
+ "thiserror 2.0.17",
191
194
  "tokio",
192
195
  "tokio-stream",
193
196
  "tokio-util",
@@ -212,7 +215,7 @@ dependencies = [
212
215
  "serde",
213
216
  "serde_json",
214
217
  "tempfile",
215
- "thiserror 2.0.12",
218
+ "thiserror 2.0.17",
216
219
  "tokio",
217
220
  "tracing",
218
221
  ]
@@ -235,15 +238,32 @@ dependencies = [
235
238
  "agntcy-slim-controller",
236
239
  "agntcy-slim-datapath",
237
240
  "agntcy-slim-mls",
241
+ "agntcy-slim-session",
242
+ "dirs",
243
+ "drain",
244
+ "parking_lot",
245
+ "serde",
246
+ "thiserror 2.0.17",
247
+ "tokio",
248
+ "tokio-util",
249
+ "tracing",
250
+ "tracing-test",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "agntcy-slim-session"
255
+ version = "0.1.0"
256
+ dependencies = [
257
+ "agntcy-slim-auth",
258
+ "agntcy-slim-datapath",
259
+ "agntcy-slim-mls",
238
260
  "async-trait",
239
261
  "base64 0.22.1",
240
262
  "bincode",
241
- "dirs",
242
- "drain",
243
263
  "parking_lot",
244
- "rand 0.9.1",
264
+ "rand 0.9.2",
245
265
  "serde",
246
- "thiserror 2.0.12",
266
+ "thiserror 2.0.17",
247
267
  "tokio",
248
268
  "tokio-util",
249
269
  "tonic 0.13.1",
@@ -271,7 +291,7 @@ dependencies = [
271
291
  "opentelemetry-stdout",
272
292
  "opentelemetry_sdk",
273
293
  "serde",
274
- "thiserror 2.0.12",
294
+ "thiserror 2.0.17",
275
295
  "tracing",
276
296
  "tracing-opentelemetry",
277
297
  "tracing-subscriber",
@@ -287,12 +307,6 @@ dependencies = [
287
307
  "memchr",
288
308
  ]
289
309
 
290
- [[package]]
291
- name = "android-tzdata"
292
- version = "0.1.1"
293
- source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
295
-
296
310
  [[package]]
297
311
  name = "android_system_properties"
298
312
  version = "0.1.5"
@@ -310,9 +324,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
310
324
 
311
325
  [[package]]
312
326
  name = "anstream"
313
- version = "0.6.19"
327
+ version = "0.6.21"
314
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
329
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
316
330
  dependencies = [
317
331
  "anstyle",
318
332
  "anstyle-parse",
@@ -325,9 +339,9 @@ dependencies = [
325
339
 
326
340
  [[package]]
327
341
  name = "anstyle"
328
- version = "1.0.11"
342
+ version = "1.0.13"
329
343
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
344
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
331
345
 
332
346
  [[package]]
333
347
  name = "anstyle-parse"
@@ -340,29 +354,29 @@ dependencies = [
340
354
 
341
355
  [[package]]
342
356
  name = "anstyle-query"
343
- version = "1.1.3"
357
+ version = "1.1.4"
344
358
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
- checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
359
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
346
360
  dependencies = [
347
- "windows-sys 0.59.0",
361
+ "windows-sys 0.60.2",
348
362
  ]
349
363
 
350
364
  [[package]]
351
365
  name = "anstyle-wincon"
352
- version = "3.0.9"
366
+ version = "3.0.10"
353
367
  source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
368
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
355
369
  dependencies = [
356
370
  "anstyle",
357
371
  "once_cell_polyfill",
358
- "windows-sys 0.59.0",
372
+ "windows-sys 0.60.2",
359
373
  ]
360
374
 
361
375
  [[package]]
362
376
  name = "anyhow"
363
- version = "1.0.98"
377
+ version = "1.0.100"
364
378
  source = "registry+https://github.com/rust-lang/crates.io-index"
365
- checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
379
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
366
380
 
367
381
  [[package]]
368
382
  name = "assert-json-diff"
@@ -404,18 +418,18 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
404
418
  dependencies = [
405
419
  "proc-macro2",
406
420
  "quote",
407
- "syn 2.0.103",
421
+ "syn 2.0.106",
408
422
  ]
409
423
 
410
424
  [[package]]
411
425
  name = "async-trait"
412
- version = "0.1.88"
426
+ version = "0.1.89"
413
427
  source = "registry+https://github.com/rust-lang/crates.io-index"
414
- checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
428
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
415
429
  dependencies = [
416
430
  "proc-macro2",
417
431
  "quote",
418
- "syn 2.0.103",
432
+ "syn 2.0.106",
419
433
  ]
420
434
 
421
435
  [[package]]
@@ -456,9 +470,9 @@ dependencies = [
456
470
 
457
471
  [[package]]
458
472
  name = "axum"
459
- version = "0.8.4"
473
+ version = "0.8.6"
460
474
  source = "registry+https://github.com/rust-lang/crates.io-index"
461
- checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
475
+ checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871"
462
476
  dependencies = [
463
477
  "axum-core",
464
478
  "bytes",
@@ -472,9 +486,8 @@ dependencies = [
472
486
  "mime",
473
487
  "percent-encoding",
474
488
  "pin-project-lite",
475
- "rustversion",
476
- "serde",
477
- "sync_wrapper",
489
+ "serde_core",
490
+ "sync_wrapper 1.0.2",
478
491
  "tower 0.5.2",
479
492
  "tower-layer",
480
493
  "tower-service",
@@ -482,9 +495,9 @@ dependencies = [
482
495
 
483
496
  [[package]]
484
497
  name = "axum-core"
485
- version = "0.5.2"
498
+ version = "0.5.5"
486
499
  source = "registry+https://github.com/rust-lang/crates.io-index"
487
- checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
500
+ checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
488
501
  dependencies = [
489
502
  "bytes",
490
503
  "futures-core",
@@ -493,17 +506,16 @@ dependencies = [
493
506
  "http-body-util",
494
507
  "mime",
495
508
  "pin-project-lite",
496
- "rustversion",
497
- "sync_wrapper",
509
+ "sync_wrapper 1.0.2",
498
510
  "tower-layer",
499
511
  "tower-service",
500
512
  ]
501
513
 
502
514
  [[package]]
503
515
  name = "backtrace"
504
- version = "0.3.75"
516
+ version = "0.3.76"
505
517
  source = "registry+https://github.com/rust-lang/crates.io-index"
506
- checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
518
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
507
519
  dependencies = [
508
520
  "addr2line",
509
521
  "cfg-if",
@@ -511,7 +523,7 @@ dependencies = [
511
523
  "miniz_oxide",
512
524
  "object",
513
525
  "rustc-demangle",
514
- "windows-targets 0.52.6",
526
+ "windows-link 0.2.1",
515
527
  ]
516
528
 
517
529
  [[package]]
@@ -558,20 +570,20 @@ version = "0.69.5"
558
570
  source = "registry+https://github.com/rust-lang/crates.io-index"
559
571
  checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
560
572
  dependencies = [
561
- "bitflags 2.9.1",
573
+ "bitflags 2.9.4",
562
574
  "cexpr",
563
575
  "clang-sys",
564
576
  "itertools 0.12.1",
565
577
  "lazy_static",
566
578
  "lazycell",
567
579
  "log",
568
- "prettyplease 0.2.34",
580
+ "prettyplease 0.2.37",
569
581
  "proc-macro2",
570
582
  "quote",
571
583
  "regex",
572
584
  "rustc-hash 1.1.0",
573
585
  "shlex",
574
- "syn 2.0.103",
586
+ "syn 2.0.106",
575
587
  "which",
576
588
  ]
577
589
 
@@ -589,9 +601,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
589
601
 
590
602
  [[package]]
591
603
  name = "bitflags"
592
- version = "2.9.1"
604
+ version = "2.9.4"
593
605
  source = "registry+https://github.com/rust-lang/crates.io-index"
594
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
606
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
595
607
 
596
608
  [[package]]
597
609
  name = "block-buffer"
@@ -604,9 +616,9 @@ dependencies = [
604
616
 
605
617
  [[package]]
606
618
  name = "bumpalo"
607
- version = "3.18.1"
619
+ version = "3.19.0"
608
620
  source = "registry+https://github.com/rust-lang/crates.io-index"
609
- checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
621
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
610
622
 
611
623
  [[package]]
612
624
  name = "bytes"
@@ -622,10 +634,11 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
622
634
 
623
635
  [[package]]
624
636
  name = "cc"
625
- version = "1.2.27"
637
+ version = "1.2.41"
626
638
  source = "registry+https://github.com/rust-lang/crates.io-index"
627
- checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
639
+ checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
628
640
  dependencies = [
641
+ "find-msvc-tools",
629
642
  "jobserver",
630
643
  "libc",
631
644
  "shlex",
@@ -642,22 +655,22 @@ dependencies = [
642
655
 
643
656
  [[package]]
644
657
  name = "cfg-if"
645
- version = "1.0.1"
658
+ version = "1.0.3"
646
659
  source = "registry+https://github.com/rust-lang/crates.io-index"
647
- checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
660
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
648
661
 
649
662
  [[package]]
650
663
  name = "chrono"
651
- version = "0.4.41"
664
+ version = "0.4.42"
652
665
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
- checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
666
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
654
667
  dependencies = [
655
- "android-tzdata",
656
668
  "iana-time-zone",
657
669
  "js-sys",
658
670
  "num-traits",
671
+ "serde",
659
672
  "wasm-bindgen",
660
- "windows-link",
673
+ "windows-link 0.2.1",
661
674
  ]
662
675
 
663
676
  [[package]]
@@ -700,9 +713,9 @@ dependencies = [
700
713
 
701
714
  [[package]]
702
715
  name = "clap"
703
- version = "4.5.40"
716
+ version = "4.5.48"
704
717
  source = "registry+https://github.com/rust-lang/crates.io-index"
705
- checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
718
+ checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
706
719
  dependencies = [
707
720
  "clap_builder",
708
721
  "clap_derive",
@@ -710,9 +723,9 @@ dependencies = [
710
723
 
711
724
  [[package]]
712
725
  name = "clap_builder"
713
- version = "4.5.40"
726
+ version = "4.5.48"
714
727
  source = "registry+https://github.com/rust-lang/crates.io-index"
715
- checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
728
+ checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
716
729
  dependencies = [
717
730
  "anstream",
718
731
  "anstyle",
@@ -722,14 +735,14 @@ dependencies = [
722
735
 
723
736
  [[package]]
724
737
  name = "clap_derive"
725
- version = "4.5.40"
738
+ version = "4.5.47"
726
739
  source = "registry+https://github.com/rust-lang/crates.io-index"
727
- checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
740
+ checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
728
741
  dependencies = [
729
742
  "heck 0.5.0",
730
743
  "proc-macro2",
731
744
  "quote",
732
- "syn 2.0.103",
745
+ "syn 2.0.106",
733
746
  ]
734
747
 
735
748
  [[package]]
@@ -879,9 +892,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
879
892
 
880
893
  [[package]]
881
894
  name = "crunchy"
882
- version = "0.2.3"
895
+ version = "0.2.4"
883
896
  source = "registry+https://github.com/rust-lang/crates.io-index"
884
- checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
897
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
885
898
 
886
899
  [[package]]
887
900
  name = "crypto-common"
@@ -914,7 +927,7 @@ dependencies = [
914
927
  "proc-macro2",
915
928
  "quote",
916
929
  "strsim",
917
- "syn 2.0.103",
930
+ "syn 2.0.106",
918
931
  ]
919
932
 
920
933
  [[package]]
@@ -925,7 +938,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
925
938
  dependencies = [
926
939
  "darling_core",
927
940
  "quote",
928
- "syn 2.0.103",
941
+ "syn 2.0.106",
929
942
  ]
930
943
 
931
944
  [[package]]
@@ -958,9 +971,9 @@ dependencies = [
958
971
 
959
972
  [[package]]
960
973
  name = "deranged"
961
- version = "0.4.0"
974
+ version = "0.5.4"
962
975
  source = "registry+https://github.com/rust-lang/crates.io-index"
963
- checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
976
+ checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071"
964
977
  dependencies = [
965
978
  "powerfmt",
966
979
  ]
@@ -1004,7 +1017,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1004
1017
  dependencies = [
1005
1018
  "proc-macro2",
1006
1019
  "quote",
1007
- "syn 2.0.103",
1020
+ "syn 2.0.106",
1008
1021
  ]
1009
1022
 
1010
1023
  [[package]]
@@ -1034,9 +1047,9 @@ dependencies = [
1034
1047
 
1035
1048
  [[package]]
1036
1049
  name = "dyn-clone"
1037
- version = "1.0.19"
1050
+ version = "1.0.20"
1038
1051
  source = "registry+https://github.com/rust-lang/crates.io-index"
1039
- checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
1052
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1040
1053
 
1041
1054
  [[package]]
1042
1055
  name = "either"
@@ -1067,12 +1080,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1067
1080
 
1068
1081
  [[package]]
1069
1082
  name = "errno"
1070
- version = "0.3.12"
1083
+ version = "0.3.14"
1071
1084
  source = "registry+https://github.com/rust-lang/crates.io-index"
1072
- checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
1085
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1073
1086
  dependencies = [
1074
1087
  "libc",
1075
- "windows-sys 0.59.0",
1088
+ "windows-sys 0.61.2",
1076
1089
  ]
1077
1090
 
1078
1091
  [[package]]
@@ -1132,16 +1145,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
1145
  checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1133
1146
 
1134
1147
  [[package]]
1135
- name = "filetime"
1136
- version = "0.2.25"
1148
+ name = "find-msvc-tools"
1149
+ version = "0.1.4"
1137
1150
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
1139
- dependencies = [
1140
- "cfg-if",
1141
- "libc",
1142
- "libredox",
1143
- "windows-sys 0.59.0",
1144
- ]
1151
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1145
1152
 
1146
1153
  [[package]]
1147
1154
  name = "fixedbitset"
@@ -1157,9 +1164,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1157
1164
 
1158
1165
  [[package]]
1159
1166
  name = "form_urlencoded"
1160
- version = "1.2.1"
1167
+ version = "1.2.2"
1161
1168
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1169
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1163
1170
  dependencies = [
1164
1171
  "percent-encoding",
1165
1172
  ]
@@ -1250,7 +1257,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1250
1257
  dependencies = [
1251
1258
  "proc-macro2",
1252
1259
  "quote",
1253
- "syn 2.0.103",
1260
+ "syn 2.0.106",
1254
1261
  ]
1255
1262
 
1256
1263
  [[package]]
@@ -1332,26 +1339,26 @@ dependencies = [
1332
1339
  "cfg-if",
1333
1340
  "libc",
1334
1341
  "r-efi",
1335
- "wasi 0.14.2+wasi-0.2.4",
1342
+ "wasi 0.14.7+wasi-0.2.4",
1336
1343
  ]
1337
1344
 
1338
1345
  [[package]]
1339
1346
  name = "gimli"
1340
- version = "0.31.1"
1347
+ version = "0.32.3"
1341
1348
  source = "registry+https://github.com/rust-lang/crates.io-index"
1342
- checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1349
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1343
1350
 
1344
1351
  [[package]]
1345
1352
  name = "glob"
1346
- version = "0.3.2"
1353
+ version = "0.3.3"
1347
1354
  source = "registry+https://github.com/rust-lang/crates.io-index"
1348
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1355
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1349
1356
 
1350
1357
  [[package]]
1351
1358
  name = "h2"
1352
- version = "0.3.26"
1359
+ version = "0.3.27"
1353
1360
  source = "registry+https://github.com/rust-lang/crates.io-index"
1354
- checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1361
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1355
1362
  dependencies = [
1356
1363
  "bytes",
1357
1364
  "fnv",
@@ -1359,7 +1366,7 @@ dependencies = [
1359
1366
  "futures-sink",
1360
1367
  "futures-util",
1361
1368
  "http 0.2.12",
1362
- "indexmap 2.9.0",
1369
+ "indexmap 2.11.4",
1363
1370
  "slab",
1364
1371
  "tokio",
1365
1372
  "tokio-util",
@@ -1368,9 +1375,9 @@ dependencies = [
1368
1375
 
1369
1376
  [[package]]
1370
1377
  name = "h2"
1371
- version = "0.4.10"
1378
+ version = "0.4.12"
1372
1379
  source = "registry+https://github.com/rust-lang/crates.io-index"
1373
- checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
1380
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1374
1381
  dependencies = [
1375
1382
  "atomic-waker",
1376
1383
  "bytes",
@@ -1378,7 +1385,7 @@ dependencies = [
1378
1385
  "futures-core",
1379
1386
  "futures-sink",
1380
1387
  "http 1.3.1",
1381
- "indexmap 2.9.0",
1388
+ "indexmap 2.11.4",
1382
1389
  "slab",
1383
1390
  "tokio",
1384
1391
  "tokio-util",
@@ -1387,12 +1394,13 @@ dependencies = [
1387
1394
 
1388
1395
  [[package]]
1389
1396
  name = "half"
1390
- version = "2.6.0"
1397
+ version = "2.7.0"
1391
1398
  source = "registry+https://github.com/rust-lang/crates.io-index"
1392
- checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
1399
+ checksum = "e54c115d4f30f52c67202f079c5f9d8b49db4691f460fdb0b4c2e838261b2ba5"
1393
1400
  dependencies = [
1394
1401
  "cfg-if",
1395
1402
  "crunchy",
1403
+ "zerocopy",
1396
1404
  ]
1397
1405
 
1398
1406
  [[package]]
@@ -1403,9 +1411,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1403
1411
 
1404
1412
  [[package]]
1405
1413
  name = "hashbrown"
1406
- version = "0.15.4"
1414
+ version = "0.16.0"
1407
1415
  source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1416
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1409
1417
 
1410
1418
  [[package]]
1411
1419
  name = "headers"
@@ -1566,14 +1574,14 @@ dependencies = [
1566
1574
  "futures-channel",
1567
1575
  "futures-core",
1568
1576
  "futures-util",
1569
- "h2 0.3.26",
1577
+ "h2 0.3.27",
1570
1578
  "http 0.2.12",
1571
1579
  "http-body 0.4.6",
1572
1580
  "httparse",
1573
1581
  "httpdate",
1574
1582
  "itoa",
1575
1583
  "pin-project-lite",
1576
- "socket2",
1584
+ "socket2 0.5.10",
1577
1585
  "tokio",
1578
1586
  "tower-service",
1579
1587
  "tracing",
@@ -1582,25 +1590,41 @@ dependencies = [
1582
1590
 
1583
1591
  [[package]]
1584
1592
  name = "hyper"
1585
- version = "1.6.0"
1593
+ version = "1.7.0"
1586
1594
  source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1595
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1588
1596
  dependencies = [
1597
+ "atomic-waker",
1589
1598
  "bytes",
1590
1599
  "futures-channel",
1591
- "futures-util",
1592
- "h2 0.4.10",
1600
+ "futures-core",
1601
+ "h2 0.4.12",
1593
1602
  "http 1.3.1",
1594
1603
  "http-body 1.0.1",
1595
1604
  "httparse",
1596
1605
  "httpdate",
1597
1606
  "itoa",
1598
1607
  "pin-project-lite",
1608
+ "pin-utils",
1599
1609
  "smallvec",
1600
1610
  "tokio",
1601
1611
  "want",
1602
1612
  ]
1603
1613
 
1614
+ [[package]]
1615
+ name = "hyper-rustls"
1616
+ version = "0.24.2"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1619
+ dependencies = [
1620
+ "futures-util",
1621
+ "http 0.2.12",
1622
+ "hyper 0.14.32",
1623
+ "rustls 0.21.12",
1624
+ "tokio",
1625
+ "tokio-rustls 0.24.1",
1626
+ ]
1627
+
1604
1628
  [[package]]
1605
1629
  name = "hyper-rustls"
1606
1630
  version = "0.27.7"
@@ -1608,12 +1632,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
1632
  checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1609
1633
  dependencies = [
1610
1634
  "http 1.3.1",
1611
- "hyper 1.6.0",
1635
+ "hyper 1.7.0",
1612
1636
  "hyper-util",
1613
- "rustls",
1637
+ "rustls 0.23.31",
1614
1638
  "rustls-pki-types",
1615
1639
  "tokio",
1616
- "tokio-rustls",
1640
+ "tokio-rustls 0.26.4",
1617
1641
  "tower-service",
1618
1642
  ]
1619
1643
 
@@ -1623,7 +1647,7 @@ version = "0.5.2"
1623
1647
  source = "registry+https://github.com/rust-lang/crates.io-index"
1624
1648
  checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1625
1649
  dependencies = [
1626
- "hyper 1.6.0",
1650
+ "hyper 1.7.0",
1627
1651
  "hyper-util",
1628
1652
  "pin-project-lite",
1629
1653
  "tokio",
@@ -1632,9 +1656,9 @@ dependencies = [
1632
1656
 
1633
1657
  [[package]]
1634
1658
  name = "hyper-util"
1635
- version = "0.1.14"
1659
+ version = "0.1.17"
1636
1660
  source = "registry+https://github.com/rust-lang/crates.io-index"
1637
- checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
1661
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1638
1662
  dependencies = [
1639
1663
  "base64 0.22.1",
1640
1664
  "bytes",
@@ -1643,13 +1667,13 @@ dependencies = [
1643
1667
  "futures-util",
1644
1668
  "http 1.3.1",
1645
1669
  "http-body 1.0.1",
1646
- "hyper 1.6.0",
1670
+ "hyper 1.7.0",
1647
1671
  "ipnet",
1648
1672
  "libc",
1649
1673
  "percent-encoding",
1650
1674
  "pin-project-lite",
1651
- "socket2",
1652
- "system-configuration",
1675
+ "socket2 0.6.0",
1676
+ "system-configuration 0.6.1",
1653
1677
  "tokio",
1654
1678
  "tower-service",
1655
1679
  "tracing",
@@ -1658,9 +1682,9 @@ dependencies = [
1658
1682
 
1659
1683
  [[package]]
1660
1684
  name = "iana-time-zone"
1661
- version = "0.1.63"
1685
+ version = "0.1.64"
1662
1686
  source = "registry+https://github.com/rust-lang/crates.io-index"
1663
- checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1687
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1664
1688
  dependencies = [
1665
1689
  "android_system_properties",
1666
1690
  "core-foundation-sys",
@@ -1774,9 +1798,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1774
1798
 
1775
1799
  [[package]]
1776
1800
  name = "idna"
1777
- version = "1.0.3"
1801
+ version = "1.1.0"
1778
1802
  source = "registry+https://github.com/rust-lang/crates.io-index"
1779
- checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1803
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1780
1804
  dependencies = [
1781
1805
  "idna_adapter",
1782
1806
  "smallvec",
@@ -1805,12 +1829,12 @@ dependencies = [
1805
1829
 
1806
1830
  [[package]]
1807
1831
  name = "indexmap"
1808
- version = "2.9.0"
1832
+ version = "2.11.4"
1809
1833
  source = "registry+https://github.com/rust-lang/crates.io-index"
1810
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1834
+ checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
1811
1835
  dependencies = [
1812
1836
  "equivalent",
1813
- "hashbrown 0.15.4",
1837
+ "hashbrown 0.16.0",
1814
1838
  ]
1815
1839
 
1816
1840
  [[package]]
@@ -1844,7 +1868,7 @@ version = "0.11.0"
1844
1868
  source = "registry+https://github.com/rust-lang/crates.io-index"
1845
1869
  checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1846
1870
  dependencies = [
1847
- "bitflags 2.9.1",
1871
+ "bitflags 2.9.4",
1848
1872
  "inotify-sys",
1849
1873
  "libc",
1850
1874
  ]
@@ -1869,13 +1893,24 @@ dependencies = [
1869
1893
 
1870
1894
  [[package]]
1871
1895
  name = "inventory"
1872
- version = "0.3.20"
1896
+ version = "0.3.21"
1873
1897
  source = "registry+https://github.com/rust-lang/crates.io-index"
1874
- checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
1898
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1875
1899
  dependencies = [
1876
1900
  "rustversion",
1877
1901
  ]
1878
1902
 
1903
+ [[package]]
1904
+ name = "io-uring"
1905
+ version = "0.7.10"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
1908
+ dependencies = [
1909
+ "bitflags 2.9.4",
1910
+ "cfg-if",
1911
+ "libc",
1912
+ ]
1913
+
1879
1914
  [[package]]
1880
1915
  name = "ipnet"
1881
1916
  version = "2.11.0"
@@ -1973,9 +2008,9 @@ dependencies = [
1973
2008
 
1974
2009
  [[package]]
1975
2010
  name = "jobserver"
1976
- version = "0.1.33"
2011
+ version = "0.1.34"
1977
2012
  source = "registry+https://github.com/rust-lang/crates.io-index"
1978
- checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
2013
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1979
2014
  dependencies = [
1980
2015
  "getrandom 0.3.3",
1981
2016
  "libc",
@@ -1983,9 +2018,9 @@ dependencies = [
1983
2018
 
1984
2019
  [[package]]
1985
2020
  name = "js-sys"
1986
- version = "0.3.77"
2021
+ version = "0.3.81"
1987
2022
  source = "registry+https://github.com/rust-lang/crates.io-index"
1988
- checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
2023
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
1989
2024
  dependencies = [
1990
2025
  "once_cell",
1991
2026
  "wasm-bindgen",
@@ -2039,29 +2074,28 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2039
2074
 
2040
2075
  [[package]]
2041
2076
  name = "libc"
2042
- version = "0.2.174"
2077
+ version = "0.2.177"
2043
2078
  source = "registry+https://github.com/rust-lang/crates.io-index"
2044
- checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2079
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2045
2080
 
2046
2081
  [[package]]
2047
2082
  name = "libloading"
2048
- version = "0.8.8"
2083
+ version = "0.8.9"
2049
2084
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
2085
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
2051
2086
  dependencies = [
2052
2087
  "cfg-if",
2053
- "windows-targets 0.53.2",
2088
+ "windows-link 0.2.1",
2054
2089
  ]
2055
2090
 
2056
2091
  [[package]]
2057
2092
  name = "libredox"
2058
- version = "0.1.3"
2093
+ version = "0.1.10"
2059
2094
  source = "registry+https://github.com/rust-lang/crates.io-index"
2060
- checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2095
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2061
2096
  dependencies = [
2062
- "bitflags 2.9.1",
2097
+ "bitflags 2.9.4",
2063
2098
  "libc",
2064
- "redox_syscall",
2065
2099
  ]
2066
2100
 
2067
2101
  [[package]]
@@ -2072,9 +2106,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2072
2106
 
2073
2107
  [[package]]
2074
2108
  name = "linux-raw-sys"
2075
- version = "0.9.4"
2109
+ version = "0.11.0"
2076
2110
  source = "registry+https://github.com/rust-lang/crates.io-index"
2077
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2111
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
2078
2112
 
2079
2113
  [[package]]
2080
2114
  name = "litemap"
@@ -2084,19 +2118,18 @@ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2084
2118
 
2085
2119
  [[package]]
2086
2120
  name = "lock_api"
2087
- version = "0.4.13"
2121
+ version = "0.4.14"
2088
2122
  source = "registry+https://github.com/rust-lang/crates.io-index"
2089
- checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2123
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2090
2124
  dependencies = [
2091
- "autocfg",
2092
2125
  "scopeguard",
2093
2126
  ]
2094
2127
 
2095
2128
  [[package]]
2096
2129
  name = "log"
2097
- version = "0.4.27"
2130
+ version = "0.4.28"
2098
2131
  source = "registry+https://github.com/rust-lang/crates.io-index"
2099
- checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
2132
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2100
2133
 
2101
2134
  [[package]]
2102
2135
  name = "macro_rules_attribute"
@@ -2153,14 +2186,14 @@ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
2153
2186
  dependencies = [
2154
2187
  "proc-macro2",
2155
2188
  "quote",
2156
- "syn 2.0.103",
2189
+ "syn 2.0.106",
2157
2190
  ]
2158
2191
 
2159
2192
  [[package]]
2160
2193
  name = "memchr"
2161
- version = "2.7.5"
2194
+ version = "2.7.6"
2162
2195
  source = "registry+https://github.com/rust-lang/crates.io-index"
2163
- checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2196
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2164
2197
 
2165
2198
  [[package]]
2166
2199
  name = "memoffset"
@@ -2228,7 +2261,7 @@ dependencies = [
2228
2261
  "safer-ffi-gen",
2229
2262
  "serde",
2230
2263
  "spin",
2231
- "thiserror 2.0.12",
2264
+ "thiserror 2.0.17",
2232
2265
  "wasm-bindgen",
2233
2266
  "zeroize",
2234
2267
  ]
@@ -2253,7 +2286,7 @@ dependencies = [
2253
2286
  "darling",
2254
2287
  "proc-macro2",
2255
2288
  "quote",
2256
- "syn 2.0.103",
2289
+ "syn 2.0.106",
2257
2290
  ]
2258
2291
 
2259
2292
  [[package]]
@@ -2268,7 +2301,7 @@ dependencies = [
2268
2301
  "mls-rs-codec",
2269
2302
  "safer-ffi-gen",
2270
2303
  "serde",
2271
- "thiserror 2.0.12",
2304
+ "thiserror 2.0.17",
2272
2305
  "wasm-bindgen",
2273
2306
  "zeroize",
2274
2307
  ]
@@ -2287,7 +2320,7 @@ dependencies = [
2287
2320
  "mls-rs-crypto-hpke",
2288
2321
  "mls-rs-crypto-traits",
2289
2322
  "mls-rs-identity-x509",
2290
- "thiserror 2.0.12",
2323
+ "thiserror 2.0.17",
2291
2324
  "zeroize",
2292
2325
  ]
2293
2326
 
@@ -2302,7 +2335,7 @@ dependencies = [
2302
2335
  "maybe-async",
2303
2336
  "mls-rs-core",
2304
2337
  "mls-rs-crypto-traits",
2305
- "thiserror 2.0.12",
2338
+ "thiserror 2.0.17",
2306
2339
  "zeroize",
2307
2340
  ]
2308
2341
 
@@ -2326,7 +2359,7 @@ dependencies = [
2326
2359
  "async-trait",
2327
2360
  "maybe-async",
2328
2361
  "mls-rs-core",
2329
- "thiserror 2.0.12",
2362
+ "thiserror 2.0.17",
2330
2363
  "wasm-bindgen",
2331
2364
  ]
2332
2365
 
@@ -2363,12 +2396,11 @@ dependencies = [
2363
2396
 
2364
2397
  [[package]]
2365
2398
  name = "notify"
2366
- version = "8.0.0"
2399
+ version = "8.2.0"
2367
2400
  source = "registry+https://github.com/rust-lang/crates.io-index"
2368
- checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
2401
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
2369
2402
  dependencies = [
2370
- "bitflags 2.9.1",
2371
- "filetime",
2403
+ "bitflags 2.9.4",
2372
2404
  "fsevent-sys",
2373
2405
  "inotify",
2374
2406
  "kqueue",
@@ -2377,7 +2409,7 @@ dependencies = [
2377
2409
  "mio",
2378
2410
  "notify-types",
2379
2411
  "walkdir",
2380
- "windows-sys 0.59.0",
2412
+ "windows-sys 0.60.2",
2381
2413
  ]
2382
2414
 
2383
2415
  [[package]]
@@ -2388,11 +2420,11 @@ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2388
2420
 
2389
2421
  [[package]]
2390
2422
  name = "nu-ansi-term"
2391
- version = "0.50.1"
2423
+ version = "0.50.3"
2392
2424
  source = "registry+https://github.com/rust-lang/crates.io-index"
2393
- checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
2425
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2394
2426
  dependencies = [
2395
- "windows-sys 0.52.0",
2427
+ "windows-sys 0.61.2",
2396
2428
  ]
2397
2429
 
2398
2430
  [[package]]
@@ -2470,11 +2502,31 @@ dependencies = [
2470
2502
  "rustc-hash 2.1.1",
2471
2503
  ]
2472
2504
 
2505
+ [[package]]
2506
+ name = "oauth2"
2507
+ version = "4.4.2"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "c38841cdd844847e3e7c8d29cef9dcfed8877f8f56f9071f77843ecf3baf937f"
2510
+ dependencies = [
2511
+ "base64 0.13.1",
2512
+ "chrono",
2513
+ "getrandom 0.2.16",
2514
+ "http 0.2.12",
2515
+ "rand 0.8.5",
2516
+ "reqwest 0.11.27",
2517
+ "serde",
2518
+ "serde_json",
2519
+ "serde_path_to_error",
2520
+ "sha2",
2521
+ "thiserror 1.0.69",
2522
+ "url",
2523
+ ]
2524
+
2473
2525
  [[package]]
2474
2526
  name = "object"
2475
- version = "0.36.7"
2527
+ version = "0.37.3"
2476
2528
  source = "registry+https://github.com/rust-lang/crates.io-index"
2477
- checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2529
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
2478
2530
  dependencies = [
2479
2531
  "memchr",
2480
2532
  ]
@@ -2517,7 +2569,7 @@ dependencies = [
2517
2569
  "futures-sink",
2518
2570
  "js-sys",
2519
2571
  "pin-project-lite",
2520
- "thiserror 2.0.12",
2572
+ "thiserror 2.0.17",
2521
2573
  "tracing",
2522
2574
  ]
2523
2575
 
@@ -2531,7 +2583,7 @@ dependencies = [
2531
2583
  "bytes",
2532
2584
  "http 1.3.1",
2533
2585
  "opentelemetry",
2534
- "reqwest",
2586
+ "reqwest 0.12.23",
2535
2587
  "tracing",
2536
2588
  ]
2537
2589
 
@@ -2548,8 +2600,8 @@ dependencies = [
2548
2600
  "opentelemetry-proto",
2549
2601
  "opentelemetry_sdk",
2550
2602
  "prost 0.13.5",
2551
- "reqwest",
2552
- "thiserror 2.0.12",
2603
+ "reqwest 0.12.23",
2604
+ "thiserror 2.0.17",
2553
2605
  "tokio",
2554
2606
  "tonic 0.12.3",
2555
2607
  "tracing",
@@ -2597,9 +2649,9 @@ dependencies = [
2597
2649
  "glob",
2598
2650
  "opentelemetry",
2599
2651
  "percent-encoding",
2600
- "rand 0.9.1",
2652
+ "rand 0.9.2",
2601
2653
  "serde_json",
2602
- "thiserror 2.0.12",
2654
+ "thiserror 2.0.17",
2603
2655
  "tokio",
2604
2656
  "tokio-stream",
2605
2657
  "tracing",
@@ -2619,9 +2671,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2619
2671
 
2620
2672
  [[package]]
2621
2673
  name = "parking_lot"
2622
- version = "0.12.4"
2674
+ version = "0.12.5"
2623
2675
  source = "registry+https://github.com/rust-lang/crates.io-index"
2624
- checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2676
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2625
2677
  dependencies = [
2626
2678
  "lock_api",
2627
2679
  "parking_lot_core",
@@ -2629,15 +2681,15 @@ dependencies = [
2629
2681
 
2630
2682
  [[package]]
2631
2683
  name = "parking_lot_core"
2632
- version = "0.9.11"
2684
+ version = "0.9.12"
2633
2685
  source = "registry+https://github.com/rust-lang/crates.io-index"
2634
- checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2686
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2635
2687
  dependencies = [
2636
2688
  "cfg-if",
2637
2689
  "libc",
2638
2690
  "redox_syscall",
2639
2691
  "smallvec",
2640
- "windows-targets 0.52.6",
2692
+ "windows-link 0.2.1",
2641
2693
  ]
2642
2694
 
2643
2695
  [[package]]
@@ -2648,19 +2700,19 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2648
2700
 
2649
2701
  [[package]]
2650
2702
  name = "pem"
2651
- version = "3.0.5"
2703
+ version = "3.0.6"
2652
2704
  source = "registry+https://github.com/rust-lang/crates.io-index"
2653
- checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
2705
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
2654
2706
  dependencies = [
2655
2707
  "base64 0.22.1",
2656
- "serde",
2708
+ "serde_core",
2657
2709
  ]
2658
2710
 
2659
2711
  [[package]]
2660
2712
  name = "percent-encoding"
2661
- version = "2.3.1"
2713
+ version = "2.3.2"
2662
2714
  source = "registry+https://github.com/rust-lang/crates.io-index"
2663
- checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2715
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2664
2716
 
2665
2717
  [[package]]
2666
2718
  name = "petgraph"
@@ -2669,7 +2721,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
2721
  checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
2670
2722
  dependencies = [
2671
2723
  "fixedbitset",
2672
- "indexmap 2.9.0",
2724
+ "indexmap 2.11.4",
2673
2725
  ]
2674
2726
 
2675
2727
  [[package]]
@@ -2689,7 +2741,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2689
2741
  dependencies = [
2690
2742
  "proc-macro2",
2691
2743
  "quote",
2692
- "syn 2.0.103",
2744
+ "syn 2.0.106",
2693
2745
  ]
2694
2746
 
2695
2747
  [[package]]
@@ -2752,9 +2804,9 @@ dependencies = [
2752
2804
 
2753
2805
  [[package]]
2754
2806
  name = "potential_utf"
2755
- version = "0.1.2"
2807
+ version = "0.1.3"
2756
2808
  source = "registry+https://github.com/rust-lang/crates.io-index"
2757
- checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2809
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2758
2810
  dependencies = [
2759
2811
  "zerovec",
2760
2812
  ]
@@ -2786,21 +2838,21 @@ dependencies = [
2786
2838
 
2787
2839
  [[package]]
2788
2840
  name = "prettyplease"
2789
- version = "0.2.34"
2841
+ version = "0.2.37"
2790
2842
  source = "registry+https://github.com/rust-lang/crates.io-index"
2791
- checksum = "6837b9e10d61f45f987d50808f83d1ee3d206c66acf650c3e4ae2e1f6ddedf55"
2843
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2792
2844
  dependencies = [
2793
2845
  "proc-macro2",
2794
- "syn 2.0.103",
2846
+ "syn 2.0.106",
2795
2847
  ]
2796
2848
 
2797
2849
  [[package]]
2798
2850
  name = "proc-macro-crate"
2799
- version = "3.3.0"
2851
+ version = "3.4.0"
2800
2852
  source = "registry+https://github.com/rust-lang/crates.io-index"
2801
- checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2853
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2802
2854
  dependencies = [
2803
- "toml_edit",
2855
+ "toml_edit 0.23.7",
2804
2856
  ]
2805
2857
 
2806
2858
  [[package]]
@@ -2829,9 +2881,9 @@ dependencies = [
2829
2881
 
2830
2882
  [[package]]
2831
2883
  name = "proc-macro2"
2832
- version = "1.0.95"
2884
+ version = "1.0.101"
2833
2885
  source = "registry+https://github.com/rust-lang/crates.io-index"
2834
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2886
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2835
2887
  dependencies = [
2836
2888
  "unicode-ident",
2837
2889
  ]
@@ -2868,11 +2920,11 @@ dependencies = [
2868
2920
  "multimap",
2869
2921
  "once_cell",
2870
2922
  "petgraph",
2871
- "prettyplease 0.2.34",
2923
+ "prettyplease 0.2.37",
2872
2924
  "prost 0.13.5",
2873
2925
  "prost-types 0.13.5",
2874
2926
  "regex",
2875
- "syn 2.0.103",
2927
+ "syn 2.0.106",
2876
2928
  "tempfile",
2877
2929
  ]
2878
2930
 
@@ -2886,7 +2938,7 @@ dependencies = [
2886
2938
  "itertools 0.14.0",
2887
2939
  "proc-macro2",
2888
2940
  "quote",
2889
- "syn 2.0.103",
2941
+ "syn 2.0.106",
2890
2942
  ]
2891
2943
 
2892
2944
  [[package]]
@@ -2899,7 +2951,7 @@ dependencies = [
2899
2951
  "itertools 0.14.0",
2900
2952
  "proc-macro2",
2901
2953
  "quote",
2902
- "syn 2.0.103",
2954
+ "syn 2.0.106",
2903
2955
  ]
2904
2956
 
2905
2957
  [[package]]
@@ -2922,12 +2974,13 @@ dependencies = [
2922
2974
 
2923
2975
  [[package]]
2924
2976
  name = "protoc-bin-vendored"
2925
- version = "3.1.0"
2977
+ version = "3.2.0"
2926
2978
  source = "registry+https://github.com/rust-lang/crates.io-index"
2927
- checksum = "dd89a830d0eab2502c81a9b8226d446a52998bb78e5e33cb2637c0cdd6068d99"
2979
+ checksum = "d1c381df33c98266b5f08186583660090a4ffa0889e76c7e9a5e175f645a67fa"
2928
2980
  dependencies = [
2929
2981
  "protoc-bin-vendored-linux-aarch_64",
2930
2982
  "protoc-bin-vendored-linux-ppcle_64",
2983
+ "protoc-bin-vendored-linux-s390_64",
2931
2984
  "protoc-bin-vendored-linux-x86_32",
2932
2985
  "protoc-bin-vendored-linux-x86_64",
2933
2986
  "protoc-bin-vendored-macos-aarch_64",
@@ -2937,45 +2990,51 @@ dependencies = [
2937
2990
 
2938
2991
  [[package]]
2939
2992
  name = "protoc-bin-vendored-linux-aarch_64"
2940
- version = "3.1.0"
2993
+ version = "3.2.0"
2941
2994
  source = "registry+https://github.com/rust-lang/crates.io-index"
2942
- checksum = "f563627339f1653ea1453dfbcb4398a7369b768925eb14499457aeaa45afe22c"
2995
+ checksum = "c350df4d49b5b9e3ca79f7e646fde2377b199e13cfa87320308397e1f37e1a4c"
2943
2996
 
2944
2997
  [[package]]
2945
2998
  name = "protoc-bin-vendored-linux-ppcle_64"
2946
- version = "3.1.0"
2999
+ version = "3.2.0"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "a55a63e6c7244f19b5c6393f025017eb5d793fd5467823a099740a7a4222440c"
3002
+
3003
+ [[package]]
3004
+ name = "protoc-bin-vendored-linux-s390_64"
3005
+ version = "3.2.0"
2947
3006
  source = "registry+https://github.com/rust-lang/crates.io-index"
2948
- checksum = "5025c949a02cd3b60c02501dd0f348c16e8fff464f2a7f27db8a9732c608b746"
3007
+ checksum = "1dba5565db4288e935d5330a07c264a4ee8e4a5b4a4e6f4e83fad824cc32f3b0"
2949
3008
 
2950
3009
  [[package]]
2951
3010
  name = "protoc-bin-vendored-linux-x86_32"
2952
- version = "3.1.0"
3011
+ version = "3.2.0"
2953
3012
  source = "registry+https://github.com/rust-lang/crates.io-index"
2954
- checksum = "9c9500ce67d132c2f3b572504088712db715755eb9adf69d55641caa2cb68a07"
3013
+ checksum = "8854774b24ee28b7868cd71dccaae8e02a2365e67a4a87a6cd11ee6cdbdf9cf5"
2955
3014
 
2956
3015
  [[package]]
2957
3016
  name = "protoc-bin-vendored-linux-x86_64"
2958
- version = "3.1.0"
3017
+ version = "3.2.0"
2959
3018
  source = "registry+https://github.com/rust-lang/crates.io-index"
2960
- checksum = "5462592380cefdc9f1f14635bcce70ba9c91c1c2464c7feb2ce564726614cc41"
3019
+ checksum = "b38b07546580df720fa464ce124c4b03630a6fb83e05c336fea2a241df7e5d78"
2961
3020
 
2962
3021
  [[package]]
2963
3022
  name = "protoc-bin-vendored-macos-aarch_64"
2964
- version = "3.1.0"
3023
+ version = "3.2.0"
2965
3024
  source = "registry+https://github.com/rust-lang/crates.io-index"
2966
- checksum = "c637745681b68b4435484543667a37606c95ddacf15e917710801a0877506030"
3025
+ checksum = "89278a9926ce312e51f1d999fee8825d324d603213344a9a706daa009f1d8092"
2967
3026
 
2968
3027
  [[package]]
2969
3028
  name = "protoc-bin-vendored-macos-x86_64"
2970
- version = "3.1.0"
3029
+ version = "3.2.0"
2971
3030
  source = "registry+https://github.com/rust-lang/crates.io-index"
2972
- checksum = "38943f3c90319d522f94a6dfd4a134ba5e36148b9506d2d9723a82ebc57c8b55"
3031
+ checksum = "81745feda7ccfb9471d7a4de888f0652e806d5795b61480605d4943176299756"
2973
3032
 
2974
3033
  [[package]]
2975
3034
  name = "protoc-bin-vendored-win32"
2976
- version = "3.1.0"
3035
+ version = "3.2.0"
2977
3036
  source = "registry+https://github.com/rust-lang/crates.io-index"
2978
- checksum = "7dc55d7dec32ecaf61e0bd90b3d2392d721a28b95cfd23c3e176eccefbeab2f2"
3037
+ checksum = "95067976aca6421a523e491fce939a3e65249bac4b977adee0ee9771568e8aa3"
2979
3038
 
2980
3039
  [[package]]
2981
3040
  name = "pyo3"
@@ -3037,7 +3096,7 @@ dependencies = [
3037
3096
  "proc-macro2",
3038
3097
  "pyo3-macros-backend",
3039
3098
  "quote",
3040
- "syn 2.0.103",
3099
+ "syn 2.0.106",
3041
3100
  ]
3042
3101
 
3043
3102
  [[package]]
@@ -3050,7 +3109,7 @@ dependencies = [
3050
3109
  "proc-macro2",
3051
3110
  "pyo3-build-config",
3052
3111
  "quote",
3053
- "syn 2.0.103",
3112
+ "syn 2.0.106",
3054
3113
  ]
3055
3114
 
3056
3115
  [[package]]
@@ -3081,14 +3140,14 @@ checksum = "3ee49d727163163a0c6fc3fee4636c8b5c82e1bb868e85cf411be7ae9e4e5b40"
3081
3140
  dependencies = [
3082
3141
  "proc-macro2",
3083
3142
  "quote",
3084
- "syn 2.0.103",
3143
+ "syn 2.0.106",
3085
3144
  ]
3086
3145
 
3087
3146
  [[package]]
3088
3147
  name = "quote"
3089
- version = "1.0.40"
3148
+ version = "1.0.41"
3090
3149
  source = "registry+https://github.com/rust-lang/crates.io-index"
3091
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
3150
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
3092
3151
  dependencies = [
3093
3152
  "proc-macro2",
3094
3153
  ]
@@ -3125,9 +3184,9 @@ dependencies = [
3125
3184
 
3126
3185
  [[package]]
3127
3186
  name = "rand"
3128
- version = "0.9.1"
3187
+ version = "0.9.2"
3129
3188
  source = "registry+https://github.com/rust-lang/crates.io-index"
3130
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
3189
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3131
3190
  dependencies = [
3132
3191
  "rand_chacha 0.9.0",
3133
3192
  "rand_core 0.9.3",
@@ -3207,9 +3266,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
3207
3266
 
3208
3267
  [[package]]
3209
3268
  name = "rayon"
3210
- version = "1.10.0"
3269
+ version = "1.11.0"
3211
3270
  source = "registry+https://github.com/rust-lang/crates.io-index"
3212
- checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
3271
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3213
3272
  dependencies = [
3214
3273
  "either",
3215
3274
  "rayon-core",
@@ -3217,9 +3276,9 @@ dependencies = [
3217
3276
 
3218
3277
  [[package]]
3219
3278
  name = "rayon-core"
3220
- version = "1.12.1"
3279
+ version = "1.13.0"
3221
3280
  source = "registry+https://github.com/rust-lang/crates.io-index"
3222
- checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
3281
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
3223
3282
  dependencies = [
3224
3283
  "crossbeam-deque",
3225
3284
  "crossbeam-utils",
@@ -3227,11 +3286,11 @@ dependencies = [
3227
3286
 
3228
3287
  [[package]]
3229
3288
  name = "redox_syscall"
3230
- version = "0.5.13"
3289
+ version = "0.5.18"
3231
3290
  source = "registry+https://github.com/rust-lang/crates.io-index"
3232
- checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
3291
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3233
3292
  dependencies = [
3234
- "bitflags 2.9.1",
3293
+ "bitflags 2.9.4",
3235
3294
  ]
3236
3295
 
3237
3296
  [[package]]
@@ -3247,29 +3306,29 @@ dependencies = [
3247
3306
 
3248
3307
  [[package]]
3249
3308
  name = "ref-cast"
3250
- version = "1.0.24"
3309
+ version = "1.0.25"
3251
3310
  source = "registry+https://github.com/rust-lang/crates.io-index"
3252
- checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
3311
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
3253
3312
  dependencies = [
3254
3313
  "ref-cast-impl",
3255
3314
  ]
3256
3315
 
3257
3316
  [[package]]
3258
3317
  name = "ref-cast-impl"
3259
- version = "1.0.24"
3318
+ version = "1.0.25"
3260
3319
  source = "registry+https://github.com/rust-lang/crates.io-index"
3261
- checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
3320
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
3262
3321
  dependencies = [
3263
3322
  "proc-macro2",
3264
3323
  "quote",
3265
- "syn 2.0.103",
3324
+ "syn 2.0.106",
3266
3325
  ]
3267
3326
 
3268
3327
  [[package]]
3269
3328
  name = "regex"
3270
- version = "1.11.1"
3329
+ version = "1.12.1"
3271
3330
  source = "registry+https://github.com/rust-lang/crates.io-index"
3272
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
3331
+ checksum = "4a52d8d02cacdb176ef4678de6c052efb4b3da14b78e4db683a4252762be5433"
3273
3332
  dependencies = [
3274
3333
  "aho-corasick",
3275
3334
  "memchr",
@@ -3279,9 +3338,9 @@ dependencies = [
3279
3338
 
3280
3339
  [[package]]
3281
3340
  name = "regex-automata"
3282
- version = "0.4.9"
3341
+ version = "0.4.12"
3283
3342
  source = "registry+https://github.com/rust-lang/crates.io-index"
3284
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
3343
+ checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
3285
3344
  dependencies = [
3286
3345
  "aho-corasick",
3287
3346
  "memchr",
@@ -3290,15 +3349,56 @@ dependencies = [
3290
3349
 
3291
3350
  [[package]]
3292
3351
  name = "regex-syntax"
3293
- version = "0.8.5"
3352
+ version = "0.8.7"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "c3160422bbd54dd5ecfdca71e5fd59b7b8fe2b1697ab2baf64f6d05dcc66d298"
3355
+
3356
+ [[package]]
3357
+ name = "reqwest"
3358
+ version = "0.11.27"
3294
3359
  source = "registry+https://github.com/rust-lang/crates.io-index"
3295
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3360
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
3361
+ dependencies = [
3362
+ "base64 0.21.7",
3363
+ "bytes",
3364
+ "encoding_rs",
3365
+ "futures-core",
3366
+ "futures-util",
3367
+ "h2 0.3.27",
3368
+ "http 0.2.12",
3369
+ "http-body 0.4.6",
3370
+ "hyper 0.14.32",
3371
+ "hyper-rustls 0.24.2",
3372
+ "ipnet",
3373
+ "js-sys",
3374
+ "log",
3375
+ "mime",
3376
+ "once_cell",
3377
+ "percent-encoding",
3378
+ "pin-project-lite",
3379
+ "rustls 0.21.12",
3380
+ "rustls-pemfile",
3381
+ "serde",
3382
+ "serde_json",
3383
+ "serde_urlencoded",
3384
+ "sync_wrapper 0.1.2",
3385
+ "system-configuration 0.5.1",
3386
+ "tokio",
3387
+ "tokio-rustls 0.24.1",
3388
+ "tower-service",
3389
+ "url",
3390
+ "wasm-bindgen",
3391
+ "wasm-bindgen-futures",
3392
+ "web-sys",
3393
+ "webpki-roots",
3394
+ "winreg",
3395
+ ]
3296
3396
 
3297
3397
  [[package]]
3298
3398
  name = "reqwest"
3299
- version = "0.12.20"
3399
+ version = "0.12.23"
3300
3400
  source = "registry+https://github.com/rust-lang/crates.io-index"
3301
- checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
3401
+ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
3302
3402
  dependencies = [
3303
3403
  "base64 0.22.1",
3304
3404
  "bytes",
@@ -3306,26 +3406,26 @@ dependencies = [
3306
3406
  "futures-channel",
3307
3407
  "futures-core",
3308
3408
  "futures-util",
3309
- "h2 0.4.10",
3409
+ "h2 0.4.12",
3310
3410
  "http 1.3.1",
3311
3411
  "http-body 1.0.1",
3312
3412
  "http-body-util",
3313
- "hyper 1.6.0",
3314
- "hyper-rustls",
3413
+ "hyper 1.7.0",
3414
+ "hyper-rustls 0.27.7",
3315
3415
  "hyper-util",
3316
3416
  "js-sys",
3317
3417
  "log",
3318
3418
  "mime",
3319
3419
  "percent-encoding",
3320
3420
  "pin-project-lite",
3321
- "rustls",
3421
+ "rustls 0.23.31",
3322
3422
  "rustls-pki-types",
3323
3423
  "serde",
3324
3424
  "serde_json",
3325
3425
  "serde_urlencoded",
3326
- "sync_wrapper",
3426
+ "sync_wrapper 1.0.2",
3327
3427
  "tokio",
3328
- "tokio-rustls",
3428
+ "tokio-rustls 0.26.4",
3329
3429
  "tower 0.5.2",
3330
3430
  "tower-http",
3331
3431
  "tower-service",
@@ -3357,9 +3457,9 @@ dependencies = [
3357
3457
 
3358
3458
  [[package]]
3359
3459
  name = "rustc-demangle"
3360
- version = "0.1.25"
3460
+ version = "0.1.26"
3361
3461
  source = "registry+https://github.com/rust-lang/crates.io-index"
3362
- checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
3462
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3363
3463
 
3364
3464
  [[package]]
3365
3465
  name = "rustc-hash"
@@ -3388,7 +3488,7 @@ version = "0.38.44"
3388
3488
  source = "registry+https://github.com/rust-lang/crates.io-index"
3389
3489
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3390
3490
  dependencies = [
3391
- "bitflags 2.9.1",
3491
+ "bitflags 2.9.4",
3392
3492
  "errno",
3393
3493
  "libc",
3394
3494
  "linux-raw-sys 0.4.15",
@@ -3397,28 +3497,40 @@ dependencies = [
3397
3497
 
3398
3498
  [[package]]
3399
3499
  name = "rustix"
3400
- version = "1.0.7"
3500
+ version = "1.1.2"
3401
3501
  source = "registry+https://github.com/rust-lang/crates.io-index"
3402
- checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
3502
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3403
3503
  dependencies = [
3404
- "bitflags 2.9.1",
3504
+ "bitflags 2.9.4",
3405
3505
  "errno",
3406
3506
  "libc",
3407
- "linux-raw-sys 0.9.4",
3408
- "windows-sys 0.59.0",
3507
+ "linux-raw-sys 0.11.0",
3508
+ "windows-sys 0.61.2",
3509
+ ]
3510
+
3511
+ [[package]]
3512
+ name = "rustls"
3513
+ version = "0.21.12"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
3516
+ dependencies = [
3517
+ "log",
3518
+ "ring",
3519
+ "rustls-webpki 0.101.7",
3520
+ "sct",
3409
3521
  ]
3410
3522
 
3411
3523
  [[package]]
3412
3524
  name = "rustls"
3413
- version = "0.23.28"
3525
+ version = "0.23.31"
3414
3526
  source = "registry+https://github.com/rust-lang/crates.io-index"
3415
- checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
3527
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
3416
3528
  dependencies = [
3417
3529
  "aws-lc-rs",
3418
3530
  "log",
3419
3531
  "once_cell",
3420
3532
  "rustls-pki-types",
3421
- "rustls-webpki",
3533
+ "rustls-webpki 0.103.4",
3422
3534
  "subtle",
3423
3535
  "zeroize",
3424
3536
  ]
@@ -3435,6 +3547,15 @@ dependencies = [
3435
3547
  "security-framework",
3436
3548
  ]
3437
3549
 
3550
+ [[package]]
3551
+ name = "rustls-pemfile"
3552
+ version = "1.0.4"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
3555
+ dependencies = [
3556
+ "base64 0.21.7",
3557
+ ]
3558
+
3438
3559
  [[package]]
3439
3560
  name = "rustls-pki-types"
3440
3561
  version = "1.12.0"
@@ -3446,9 +3567,19 @@ dependencies = [
3446
3567
 
3447
3568
  [[package]]
3448
3569
  name = "rustls-webpki"
3449
- version = "0.103.3"
3570
+ version = "0.101.7"
3450
3571
  source = "registry+https://github.com/rust-lang/crates.io-index"
3451
- checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
3572
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
3573
+ dependencies = [
3574
+ "ring",
3575
+ "untrusted 0.9.0",
3576
+ ]
3577
+
3578
+ [[package]]
3579
+ name = "rustls-webpki"
3580
+ version = "0.103.4"
3581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3582
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
3452
3583
  dependencies = [
3453
3584
  "aws-lc-rs",
3454
3585
  "ring",
@@ -3458,9 +3589,9 @@ dependencies = [
3458
3589
 
3459
3590
  [[package]]
3460
3591
  name = "rustversion"
3461
- version = "1.0.21"
3592
+ version = "1.0.22"
3462
3593
  source = "registry+https://github.com/rust-lang/crates.io-index"
3463
- checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
3594
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3464
3595
 
3465
3596
  [[package]]
3466
3597
  name = "ryu"
@@ -3507,7 +3638,7 @@ dependencies = [
3507
3638
  "proc-macro-error",
3508
3639
  "proc-macro2",
3509
3640
  "quote",
3510
- "syn 2.0.103",
3641
+ "syn 2.0.106",
3511
3642
  "thiserror 1.0.69",
3512
3643
  ]
3513
3644
 
@@ -3535,18 +3666,18 @@ dependencies = [
3535
3666
 
3536
3667
  [[package]]
3537
3668
  name = "schannel"
3538
- version = "0.1.27"
3669
+ version = "0.1.28"
3539
3670
  source = "registry+https://github.com/rust-lang/crates.io-index"
3540
- checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
3671
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3541
3672
  dependencies = [
3542
- "windows-sys 0.59.0",
3673
+ "windows-sys 0.61.2",
3543
3674
  ]
3544
3675
 
3545
3676
  [[package]]
3546
3677
  name = "schemars"
3547
- version = "1.0.3"
3678
+ version = "1.0.4"
3548
3679
  source = "registry+https://github.com/rust-lang/crates.io-index"
3549
- checksum = "1375ba8ef45a6f15d83fa8748f1079428295d403d6ea991d09ab100155fbc06d"
3680
+ checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
3550
3681
  dependencies = [
3551
3682
  "dyn-clone",
3552
3683
  "ref-cast",
@@ -3557,14 +3688,14 @@ dependencies = [
3557
3688
 
3558
3689
  [[package]]
3559
3690
  name = "schemars_derive"
3560
- version = "1.0.3"
3691
+ version = "1.0.4"
3561
3692
  source = "registry+https://github.com/rust-lang/crates.io-index"
3562
- checksum = "2b13ed22d6d49fe23712e068770b5c4df4a693a2b02eeff8e7ca3135627a24f6"
3693
+ checksum = "33d020396d1d138dc19f1165df7545479dcd58d93810dc5d646a16e55abefa80"
3563
3694
  dependencies = [
3564
3695
  "proc-macro2",
3565
3696
  "quote",
3566
3697
  "serde_derive_internals",
3567
- "syn 2.0.103",
3698
+ "syn 2.0.106",
3568
3699
  ]
3569
3700
 
3570
3701
  [[package]]
@@ -3573,13 +3704,23 @@ version = "1.2.0"
3573
3704
  source = "registry+https://github.com/rust-lang/crates.io-index"
3574
3705
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3575
3706
 
3707
+ [[package]]
3708
+ name = "sct"
3709
+ version = "0.7.1"
3710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3711
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
3712
+ dependencies = [
3713
+ "ring",
3714
+ "untrusted 0.9.0",
3715
+ ]
3716
+
3576
3717
  [[package]]
3577
3718
  name = "security-framework"
3578
- version = "3.2.0"
3719
+ version = "3.5.1"
3579
3720
  source = "registry+https://github.com/rust-lang/crates.io-index"
3580
- checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
3721
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3581
3722
  dependencies = [
3582
- "bitflags 2.9.1",
3723
+ "bitflags 2.9.4",
3583
3724
  "core-foundation 0.10.1",
3584
3725
  "core-foundation-sys",
3585
3726
  "libc",
@@ -3588,9 +3729,9 @@ dependencies = [
3588
3729
 
3589
3730
  [[package]]
3590
3731
  name = "security-framework-sys"
3591
- version = "2.14.0"
3732
+ version = "2.15.0"
3592
3733
  source = "registry+https://github.com/rust-lang/crates.io-index"
3593
- checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
3734
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3594
3735
  dependencies = [
3595
3736
  "core-foundation-sys",
3596
3737
  "libc",
@@ -3598,16 +3739,17 @@ dependencies = [
3598
3739
 
3599
3740
  [[package]]
3600
3741
  name = "semver"
3601
- version = "1.0.26"
3742
+ version = "1.0.27"
3602
3743
  source = "registry+https://github.com/rust-lang/crates.io-index"
3603
- checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3744
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3604
3745
 
3605
3746
  [[package]]
3606
3747
  name = "serde"
3607
- version = "1.0.219"
3748
+ version = "1.0.228"
3608
3749
  source = "registry+https://github.com/rust-lang/crates.io-index"
3609
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
3750
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3610
3751
  dependencies = [
3752
+ "serde_core",
3611
3753
  "serde_derive",
3612
3754
  ]
3613
3755
 
@@ -3621,15 +3763,24 @@ dependencies = [
3621
3763
  "serde",
3622
3764
  ]
3623
3765
 
3766
+ [[package]]
3767
+ name = "serde_core"
3768
+ version = "1.0.228"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3771
+ dependencies = [
3772
+ "serde_derive",
3773
+ ]
3774
+
3624
3775
  [[package]]
3625
3776
  name = "serde_derive"
3626
- version = "1.0.219"
3777
+ version = "1.0.228"
3627
3778
  source = "registry+https://github.com/rust-lang/crates.io-index"
3628
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3779
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3629
3780
  dependencies = [
3630
3781
  "proc-macro2",
3631
3782
  "quote",
3632
- "syn 2.0.103",
3783
+ "syn 2.0.106",
3633
3784
  ]
3634
3785
 
3635
3786
  [[package]]
@@ -3640,19 +3791,31 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3640
3791
  dependencies = [
3641
3792
  "proc-macro2",
3642
3793
  "quote",
3643
- "syn 2.0.103",
3794
+ "syn 2.0.106",
3644
3795
  ]
3645
3796
 
3646
3797
  [[package]]
3647
3798
  name = "serde_json"
3648
- version = "1.0.140"
3799
+ version = "1.0.145"
3649
3800
  source = "registry+https://github.com/rust-lang/crates.io-index"
3650
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3801
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3651
3802
  dependencies = [
3652
3803
  "itoa",
3653
3804
  "memchr",
3654
3805
  "ryu",
3655
3806
  "serde",
3807
+ "serde_core",
3808
+ ]
3809
+
3810
+ [[package]]
3811
+ name = "serde_path_to_error"
3812
+ version = "0.1.20"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3814
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3815
+ dependencies = [
3816
+ "itoa",
3817
+ "serde",
3818
+ "serde_core",
3656
3819
  ]
3657
3820
 
3658
3821
  [[package]]
@@ -3693,7 +3856,7 @@ version = "0.9.34+deprecated"
3693
3856
  source = "registry+https://github.com/rust-lang/crates.io-index"
3694
3857
  checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3695
3858
  dependencies = [
3696
- "indexmap 2.9.0",
3859
+ "indexmap 2.11.4",
3697
3860
  "itoa",
3698
3861
  "ryu",
3699
3862
  "serde",
@@ -3711,6 +3874,17 @@ dependencies = [
3711
3874
  "digest",
3712
3875
  ]
3713
3876
 
3877
+ [[package]]
3878
+ name = "sha2"
3879
+ version = "0.10.9"
3880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3881
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3882
+ dependencies = [
3883
+ "cfg-if",
3884
+ "cpufeatures",
3885
+ "digest",
3886
+ ]
3887
+
3714
3888
  [[package]]
3715
3889
  name = "sha2-const-stable"
3716
3890
  version = "0.1.0"
@@ -3734,9 +3908,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3734
3908
 
3735
3909
  [[package]]
3736
3910
  name = "signal-hook-registry"
3737
- version = "1.4.5"
3911
+ version = "1.4.6"
3738
3912
  source = "registry+https://github.com/rust-lang/crates.io-index"
3739
- checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
3913
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3740
3914
  dependencies = [
3741
3915
  "libc",
3742
3916
  ]
@@ -3749,7 +3923,7 @@ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
3749
3923
  dependencies = [
3750
3924
  "num-bigint",
3751
3925
  "num-traits",
3752
- "thiserror 2.0.12",
3926
+ "thiserror 2.0.17",
3753
3927
  "time",
3754
3928
  ]
3755
3929
 
@@ -3770,6 +3944,7 @@ dependencies = [
3770
3944
  "agntcy-slim-datapath",
3771
3945
  "agntcy-slim-mls",
3772
3946
  "agntcy-slim-service",
3947
+ "agntcy-slim-session",
3773
3948
  "agntcy-slim-signal",
3774
3949
  "anyhow",
3775
3950
  "clap",
@@ -3794,6 +3969,16 @@ dependencies = [
3794
3969
  "windows-sys 0.52.0",
3795
3970
  ]
3796
3971
 
3972
+ [[package]]
3973
+ name = "socket2"
3974
+ version = "0.6.0"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3977
+ dependencies = [
3978
+ "libc",
3979
+ "windows-sys 0.59.0",
3980
+ ]
3981
+
3797
3982
  [[package]]
3798
3983
  name = "spin"
3799
3984
  version = "0.10.0"
@@ -3840,9 +4025,9 @@ dependencies = [
3840
4025
 
3841
4026
  [[package]]
3842
4027
  name = "stable_deref_trait"
3843
- version = "1.2.0"
4028
+ version = "1.2.1"
3844
4029
  source = "registry+https://github.com/rust-lang/crates.io-index"
3845
- checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
4030
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3846
4031
 
3847
4032
  [[package]]
3848
4033
  name = "strsim"
@@ -3869,15 +4054,21 @@ dependencies = [
3869
4054
 
3870
4055
  [[package]]
3871
4056
  name = "syn"
3872
- version = "2.0.103"
4057
+ version = "2.0.106"
3873
4058
  source = "registry+https://github.com/rust-lang/crates.io-index"
3874
- checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
4059
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3875
4060
  dependencies = [
3876
4061
  "proc-macro2",
3877
4062
  "quote",
3878
4063
  "unicode-ident",
3879
4064
  ]
3880
4065
 
4066
+ [[package]]
4067
+ name = "sync_wrapper"
4068
+ version = "0.1.2"
4069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4070
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
4071
+
3881
4072
  [[package]]
3882
4073
  name = "sync_wrapper"
3883
4074
  version = "1.0.2"
@@ -3895,7 +4086,18 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3895
4086
  dependencies = [
3896
4087
  "proc-macro2",
3897
4088
  "quote",
3898
- "syn 2.0.103",
4089
+ "syn 2.0.106",
4090
+ ]
4091
+
4092
+ [[package]]
4093
+ name = "system-configuration"
4094
+ version = "0.5.1"
4095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4096
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
4097
+ dependencies = [
4098
+ "bitflags 1.3.2",
4099
+ "core-foundation 0.9.4",
4100
+ "system-configuration-sys 0.5.0",
3899
4101
  ]
3900
4102
 
3901
4103
  [[package]]
@@ -3904,9 +4106,19 @@ version = "0.6.1"
3904
4106
  source = "registry+https://github.com/rust-lang/crates.io-index"
3905
4107
  checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3906
4108
  dependencies = [
3907
- "bitflags 2.9.1",
4109
+ "bitflags 2.9.4",
3908
4110
  "core-foundation 0.9.4",
3909
- "system-configuration-sys",
4111
+ "system-configuration-sys 0.6.0",
4112
+ ]
4113
+
4114
+ [[package]]
4115
+ name = "system-configuration-sys"
4116
+ version = "0.5.0"
4117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4118
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
4119
+ dependencies = [
4120
+ "core-foundation-sys",
4121
+ "libc",
3910
4122
  ]
3911
4123
 
3912
4124
  [[package]]
@@ -3921,21 +4133,21 @@ dependencies = [
3921
4133
 
3922
4134
  [[package]]
3923
4135
  name = "target-lexicon"
3924
- version = "0.13.2"
4136
+ version = "0.13.3"
3925
4137
  source = "registry+https://github.com/rust-lang/crates.io-index"
3926
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
4138
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
3927
4139
 
3928
4140
  [[package]]
3929
4141
  name = "tempfile"
3930
- version = "3.20.0"
4142
+ version = "3.23.0"
3931
4143
  source = "registry+https://github.com/rust-lang/crates.io-index"
3932
- checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
4144
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3933
4145
  dependencies = [
3934
4146
  "fastrand 2.3.0",
3935
4147
  "getrandom 0.3.3",
3936
4148
  "once_cell",
3937
- "rustix 1.0.7",
3938
- "windows-sys 0.59.0",
4149
+ "rustix 1.1.2",
4150
+ "windows-sys 0.61.2",
3939
4151
  ]
3940
4152
 
3941
4153
  [[package]]
@@ -3947,12 +4159,13 @@ dependencies = [
3947
4159
  "agntcy-slim-config",
3948
4160
  "agntcy-slim-datapath",
3949
4161
  "agntcy-slim-service",
4162
+ "agntcy-slim-session",
3950
4163
  "agntcy-slim-tracing",
3951
4164
  "clap",
3952
4165
  "indicatif",
3953
4166
  "parking_lot",
3954
- "rand 0.9.1",
3955
- "thiserror 2.0.12",
4167
+ "rand 0.9.2",
4168
+ "thiserror 2.0.17",
3956
4169
  "tokio",
3957
4170
  "tokio-util",
3958
4171
  "tracing",
@@ -3969,11 +4182,11 @@ dependencies = [
3969
4182
 
3970
4183
  [[package]]
3971
4184
  name = "thiserror"
3972
- version = "2.0.12"
4185
+ version = "2.0.17"
3973
4186
  source = "registry+https://github.com/rust-lang/crates.io-index"
3974
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
4187
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3975
4188
  dependencies = [
3976
- "thiserror-impl 2.0.12",
4189
+ "thiserror-impl 2.0.17",
3977
4190
  ]
3978
4191
 
3979
4192
  [[package]]
@@ -3984,18 +4197,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3984
4197
  dependencies = [
3985
4198
  "proc-macro2",
3986
4199
  "quote",
3987
- "syn 2.0.103",
4200
+ "syn 2.0.106",
3988
4201
  ]
3989
4202
 
3990
4203
  [[package]]
3991
4204
  name = "thiserror-impl"
3992
- version = "2.0.12"
4205
+ version = "2.0.17"
3993
4206
  source = "registry+https://github.com/rust-lang/crates.io-index"
3994
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4207
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3995
4208
  dependencies = [
3996
4209
  "proc-macro2",
3997
4210
  "quote",
3998
- "syn 2.0.103",
4211
+ "syn 2.0.106",
3999
4212
  ]
4000
4213
 
4001
4214
  [[package]]
@@ -4009,9 +4222,9 @@ dependencies = [
4009
4222
 
4010
4223
  [[package]]
4011
4224
  name = "time"
4012
- version = "0.3.41"
4225
+ version = "0.3.44"
4013
4226
  source = "registry+https://github.com/rust-lang/crates.io-index"
4014
- checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
4227
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
4015
4228
  dependencies = [
4016
4229
  "deranged",
4017
4230
  "itoa",
@@ -4024,15 +4237,15 @@ dependencies = [
4024
4237
 
4025
4238
  [[package]]
4026
4239
  name = "time-core"
4027
- version = "0.1.4"
4240
+ version = "0.1.6"
4028
4241
  source = "registry+https://github.com/rust-lang/crates.io-index"
4029
- checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
4242
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
4030
4243
 
4031
4244
  [[package]]
4032
4245
  name = "time-macros"
4033
- version = "0.2.22"
4246
+ version = "0.2.24"
4034
4247
  source = "registry+https://github.com/rust-lang/crates.io-index"
4035
- checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
4248
+ checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
4036
4249
  dependencies = [
4037
4250
  "num-conv",
4038
4251
  "time-core",
@@ -4060,19 +4273,21 @@ dependencies = [
4060
4273
 
4061
4274
  [[package]]
4062
4275
  name = "tokio"
4063
- version = "1.45.1"
4276
+ version = "1.47.1"
4064
4277
  source = "registry+https://github.com/rust-lang/crates.io-index"
4065
- checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
4278
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
4066
4279
  dependencies = [
4067
4280
  "backtrace",
4068
4281
  "bytes",
4282
+ "io-uring",
4069
4283
  "libc",
4070
4284
  "mio",
4071
4285
  "pin-project-lite",
4072
4286
  "signal-hook-registry",
4073
- "socket2",
4287
+ "slab",
4288
+ "socket2 0.6.0",
4074
4289
  "tokio-macros",
4075
- "windows-sys 0.52.0",
4290
+ "windows-sys 0.59.0",
4076
4291
  ]
4077
4292
 
4078
4293
  [[package]]
@@ -4083,16 +4298,26 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4083
4298
  dependencies = [
4084
4299
  "proc-macro2",
4085
4300
  "quote",
4086
- "syn 2.0.103",
4301
+ "syn 2.0.106",
4087
4302
  ]
4088
4303
 
4089
4304
  [[package]]
4090
4305
  name = "tokio-rustls"
4091
- version = "0.26.2"
4306
+ version = "0.24.1"
4092
4307
  source = "registry+https://github.com/rust-lang/crates.io-index"
4093
- checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
4308
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
4094
4309
  dependencies = [
4095
- "rustls",
4310
+ "rustls 0.21.12",
4311
+ "tokio",
4312
+ ]
4313
+
4314
+ [[package]]
4315
+ name = "tokio-rustls"
4316
+ version = "0.26.4"
4317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4318
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4319
+ dependencies = [
4320
+ "rustls 0.23.31",
4096
4321
  "tokio",
4097
4322
  ]
4098
4323
 
@@ -4109,9 +4334,9 @@ dependencies = [
4109
4334
 
4110
4335
  [[package]]
4111
4336
  name = "tokio-util"
4112
- version = "0.7.15"
4337
+ version = "0.7.16"
4113
4338
  source = "registry+https://github.com/rust-lang/crates.io-index"
4114
- checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
4339
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
4115
4340
  dependencies = [
4116
4341
  "bytes",
4117
4342
  "futures-core",
@@ -4128,8 +4353,8 @@ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
4128
4353
  dependencies = [
4129
4354
  "serde",
4130
4355
  "serde_spanned",
4131
- "toml_datetime",
4132
- "toml_edit",
4356
+ "toml_datetime 0.6.11",
4357
+ "toml_edit 0.22.27",
4133
4358
  ]
4134
4359
 
4135
4360
  [[package]]
@@ -4141,20 +4366,50 @@ dependencies = [
4141
4366
  "serde",
4142
4367
  ]
4143
4368
 
4369
+ [[package]]
4370
+ name = "toml_datetime"
4371
+ version = "0.7.3"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
4374
+ dependencies = [
4375
+ "serde_core",
4376
+ ]
4377
+
4144
4378
  [[package]]
4145
4379
  name = "toml_edit"
4146
4380
  version = "0.22.27"
4147
4381
  source = "registry+https://github.com/rust-lang/crates.io-index"
4148
4382
  checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
4149
4383
  dependencies = [
4150
- "indexmap 2.9.0",
4384
+ "indexmap 2.11.4",
4151
4385
  "serde",
4152
4386
  "serde_spanned",
4153
- "toml_datetime",
4387
+ "toml_datetime 0.6.11",
4154
4388
  "toml_write",
4155
4389
  "winnow",
4156
4390
  ]
4157
4391
 
4392
+ [[package]]
4393
+ name = "toml_edit"
4394
+ version = "0.23.7"
4395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4396
+ checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
4397
+ dependencies = [
4398
+ "indexmap 2.11.4",
4399
+ "toml_datetime 0.7.3",
4400
+ "toml_parser",
4401
+ "winnow",
4402
+ ]
4403
+
4404
+ [[package]]
4405
+ name = "toml_parser"
4406
+ version = "1.0.4"
4407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4408
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
4409
+ dependencies = [
4410
+ "winnow",
4411
+ ]
4412
+
4158
4413
  [[package]]
4159
4414
  name = "toml_write"
4160
4415
  version = "0.1.2"
@@ -4173,7 +4428,7 @@ dependencies = [
4173
4428
  "http 1.3.1",
4174
4429
  "http-body 1.0.1",
4175
4430
  "http-body-util",
4176
- "hyper 1.6.0",
4431
+ "hyper 1.7.0",
4177
4432
  "hyper-timeout",
4178
4433
  "hyper-util",
4179
4434
  "percent-encoding",
@@ -4197,17 +4452,17 @@ dependencies = [
4197
4452
  "axum",
4198
4453
  "base64 0.22.1",
4199
4454
  "bytes",
4200
- "h2 0.4.10",
4455
+ "h2 0.4.12",
4201
4456
  "http 1.3.1",
4202
4457
  "http-body 1.0.1",
4203
4458
  "http-body-util",
4204
- "hyper 1.6.0",
4459
+ "hyper 1.7.0",
4205
4460
  "hyper-timeout",
4206
4461
  "hyper-util",
4207
4462
  "percent-encoding",
4208
4463
  "pin-project",
4209
4464
  "prost 0.13.5",
4210
- "socket2",
4465
+ "socket2 0.5.10",
4211
4466
  "tokio",
4212
4467
  "tokio-stream",
4213
4468
  "tower 0.5.2",
@@ -4222,12 +4477,12 @@ version = "0.13.1"
4222
4477
  source = "registry+https://github.com/rust-lang/crates.io-index"
4223
4478
  checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
4224
4479
  dependencies = [
4225
- "prettyplease 0.2.34",
4480
+ "prettyplease 0.2.37",
4226
4481
  "proc-macro2",
4227
4482
  "prost-build",
4228
4483
  "prost-types 0.13.5",
4229
4484
  "quote",
4230
- "syn 2.0.103",
4485
+ "syn 2.0.106",
4231
4486
  ]
4232
4487
 
4233
4488
  [[package]]
@@ -4238,10 +4493,10 @@ checksum = "e96bedfe5ae00cd370db4029612380c267bc224b2d45f1d35402b6b588e68d7b"
4238
4493
  dependencies = [
4239
4494
  "async-stream",
4240
4495
  "futures",
4241
- "hyper 1.6.0",
4496
+ "hyper 1.7.0",
4242
4497
  "hyper-util",
4243
4498
  "tokio",
4244
- "tokio-rustls",
4499
+ "tokio-rustls 0.26.4",
4245
4500
  "tonic 0.13.1",
4246
4501
  "tower 0.5.2",
4247
4502
  "tracing",
@@ -4275,10 +4530,10 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4275
4530
  dependencies = [
4276
4531
  "futures-core",
4277
4532
  "futures-util",
4278
- "indexmap 2.9.0",
4533
+ "indexmap 2.11.4",
4279
4534
  "pin-project-lite",
4280
4535
  "slab",
4281
- "sync_wrapper",
4536
+ "sync_wrapper 1.0.2",
4282
4537
  "tokio",
4283
4538
  "tokio-util",
4284
4539
  "tower-layer",
@@ -4293,7 +4548,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4293
4548
  checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
4294
4549
  dependencies = [
4295
4550
  "base64 0.22.1",
4296
- "bitflags 2.9.1",
4551
+ "bitflags 2.9.4",
4297
4552
  "bytes",
4298
4553
  "futures-util",
4299
4554
  "http 1.3.1",
@@ -4337,7 +4592,7 @@ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4337
4592
  dependencies = [
4338
4593
  "proc-macro2",
4339
4594
  "quote",
4340
- "syn 2.0.103",
4595
+ "syn 2.0.106",
4341
4596
  ]
4342
4597
 
4343
4598
  [[package]]
@@ -4415,7 +4670,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4415
4670
  checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
4416
4671
  dependencies = [
4417
4672
  "quote",
4418
- "syn 2.0.103",
4673
+ "syn 2.0.106",
4419
4674
  ]
4420
4675
 
4421
4676
  [[package]]
@@ -4426,30 +4681,30 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4426
4681
 
4427
4682
  [[package]]
4428
4683
  name = "twox-hash"
4429
- version = "2.1.1"
4684
+ version = "2.1.2"
4430
4685
  source = "registry+https://github.com/rust-lang/crates.io-index"
4431
- checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
4686
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
4432
4687
  dependencies = [
4433
- "rand 0.9.1",
4688
+ "rand 0.9.2",
4434
4689
  ]
4435
4690
 
4436
4691
  [[package]]
4437
4692
  name = "typenum"
4438
- version = "1.18.0"
4693
+ version = "1.19.0"
4439
4694
  source = "registry+https://github.com/rust-lang/crates.io-index"
4440
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
4695
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
4441
4696
 
4442
4697
  [[package]]
4443
4698
  name = "unicode-ident"
4444
- version = "1.0.18"
4699
+ version = "1.0.19"
4445
4700
  source = "registry+https://github.com/rust-lang/crates.io-index"
4446
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
4701
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
4447
4702
 
4448
4703
  [[package]]
4449
4704
  name = "unicode-width"
4450
- version = "0.2.1"
4705
+ version = "0.2.2"
4451
4706
  source = "registry+https://github.com/rust-lang/crates.io-index"
4452
- checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
4707
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4453
4708
 
4454
4709
  [[package]]
4455
4710
  name = "unindent"
@@ -4498,9 +4753,9 @@ checksum = "0976c77def3f1f75c4ef892a292c31c0bbe9e3d0702c63044d7c76db298171a3"
4498
4753
 
4499
4754
  [[package]]
4500
4755
  name = "url"
4501
- version = "2.5.4"
4756
+ version = "2.5.7"
4502
4757
  source = "registry+https://github.com/rust-lang/crates.io-index"
4503
- checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
4758
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
4504
4759
  dependencies = [
4505
4760
  "form_urlencoded",
4506
4761
  "idna",
@@ -4522,9 +4777,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4522
4777
 
4523
4778
  [[package]]
4524
4779
  name = "uuid"
4525
- version = "1.17.0"
4780
+ version = "1.18.1"
4526
4781
  source = "registry+https://github.com/rust-lang/crates.io-index"
4527
- checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
4782
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
4528
4783
  dependencies = [
4529
4784
  "getrandom 0.3.3",
4530
4785
  "js-sys",
@@ -4588,44 +4843,54 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4588
4843
 
4589
4844
  [[package]]
4590
4845
  name = "wasi"
4591
- version = "0.14.2+wasi-0.2.4"
4846
+ version = "0.14.7+wasi-0.2.4"
4847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4848
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
4849
+ dependencies = [
4850
+ "wasip2",
4851
+ ]
4852
+
4853
+ [[package]]
4854
+ name = "wasip2"
4855
+ version = "1.0.1+wasi-0.2.4"
4592
4856
  source = "registry+https://github.com/rust-lang/crates.io-index"
4593
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
4857
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4594
4858
  dependencies = [
4595
- "wit-bindgen-rt",
4859
+ "wit-bindgen",
4596
4860
  ]
4597
4861
 
4598
4862
  [[package]]
4599
4863
  name = "wasm-bindgen"
4600
- version = "0.2.100"
4864
+ version = "0.2.104"
4601
4865
  source = "registry+https://github.com/rust-lang/crates.io-index"
4602
- checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
4866
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
4603
4867
  dependencies = [
4604
4868
  "cfg-if",
4605
4869
  "once_cell",
4606
4870
  "rustversion",
4607
4871
  "wasm-bindgen-macro",
4872
+ "wasm-bindgen-shared",
4608
4873
  ]
4609
4874
 
4610
4875
  [[package]]
4611
4876
  name = "wasm-bindgen-backend"
4612
- version = "0.2.100"
4877
+ version = "0.2.104"
4613
4878
  source = "registry+https://github.com/rust-lang/crates.io-index"
4614
- checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
4879
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
4615
4880
  dependencies = [
4616
4881
  "bumpalo",
4617
4882
  "log",
4618
4883
  "proc-macro2",
4619
4884
  "quote",
4620
- "syn 2.0.103",
4885
+ "syn 2.0.106",
4621
4886
  "wasm-bindgen-shared",
4622
4887
  ]
4623
4888
 
4624
4889
  [[package]]
4625
4890
  name = "wasm-bindgen-futures"
4626
- version = "0.4.50"
4891
+ version = "0.4.54"
4627
4892
  source = "registry+https://github.com/rust-lang/crates.io-index"
4628
- checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
4893
+ checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
4629
4894
  dependencies = [
4630
4895
  "cfg-if",
4631
4896
  "js-sys",
@@ -4636,9 +4901,9 @@ dependencies = [
4636
4901
 
4637
4902
  [[package]]
4638
4903
  name = "wasm-bindgen-macro"
4639
- version = "0.2.100"
4904
+ version = "0.2.104"
4640
4905
  source = "registry+https://github.com/rust-lang/crates.io-index"
4641
- checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
4906
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
4642
4907
  dependencies = [
4643
4908
  "quote",
4644
4909
  "wasm-bindgen-macro-support",
@@ -4646,31 +4911,31 @@ dependencies = [
4646
4911
 
4647
4912
  [[package]]
4648
4913
  name = "wasm-bindgen-macro-support"
4649
- version = "0.2.100"
4914
+ version = "0.2.104"
4650
4915
  source = "registry+https://github.com/rust-lang/crates.io-index"
4651
- checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4916
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
4652
4917
  dependencies = [
4653
4918
  "proc-macro2",
4654
4919
  "quote",
4655
- "syn 2.0.103",
4920
+ "syn 2.0.106",
4656
4921
  "wasm-bindgen-backend",
4657
4922
  "wasm-bindgen-shared",
4658
4923
  ]
4659
4924
 
4660
4925
  [[package]]
4661
4926
  name = "wasm-bindgen-shared"
4662
- version = "0.2.100"
4927
+ version = "0.2.104"
4663
4928
  source = "registry+https://github.com/rust-lang/crates.io-index"
4664
- checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4929
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
4665
4930
  dependencies = [
4666
4931
  "unicode-ident",
4667
4932
  ]
4668
4933
 
4669
4934
  [[package]]
4670
4935
  name = "web-sys"
4671
- version = "0.3.77"
4936
+ version = "0.3.81"
4672
4937
  source = "registry+https://github.com/rust-lang/crates.io-index"
4673
- checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4938
+ checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
4674
4939
  dependencies = [
4675
4940
  "js-sys",
4676
4941
  "wasm-bindgen",
@@ -4686,6 +4951,12 @@ dependencies = [
4686
4951
  "wasm-bindgen",
4687
4952
  ]
4688
4953
 
4954
+ [[package]]
4955
+ name = "webpki-roots"
4956
+ version = "0.25.4"
4957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4958
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
4959
+
4689
4960
  [[package]]
4690
4961
  name = "which"
4691
4962
  version = "4.4.2"
@@ -4700,46 +4971,46 @@ dependencies = [
4700
4971
 
4701
4972
  [[package]]
4702
4973
  name = "winapi-util"
4703
- version = "0.1.9"
4974
+ version = "0.1.11"
4704
4975
  source = "registry+https://github.com/rust-lang/crates.io-index"
4705
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4976
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4706
4977
  dependencies = [
4707
- "windows-sys 0.59.0",
4978
+ "windows-sys 0.61.2",
4708
4979
  ]
4709
4980
 
4710
4981
  [[package]]
4711
4982
  name = "windows-core"
4712
- version = "0.61.2"
4983
+ version = "0.62.2"
4713
4984
  source = "registry+https://github.com/rust-lang/crates.io-index"
4714
- checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
4985
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4715
4986
  dependencies = [
4716
4987
  "windows-implement",
4717
4988
  "windows-interface",
4718
- "windows-link",
4719
- "windows-result",
4720
- "windows-strings",
4989
+ "windows-link 0.2.1",
4990
+ "windows-result 0.4.1",
4991
+ "windows-strings 0.5.1",
4721
4992
  ]
4722
4993
 
4723
4994
  [[package]]
4724
4995
  name = "windows-implement"
4725
- version = "0.60.0"
4996
+ version = "0.60.2"
4726
4997
  source = "registry+https://github.com/rust-lang/crates.io-index"
4727
- checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4998
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4728
4999
  dependencies = [
4729
5000
  "proc-macro2",
4730
5001
  "quote",
4731
- "syn 2.0.103",
5002
+ "syn 2.0.106",
4732
5003
  ]
4733
5004
 
4734
5005
  [[package]]
4735
5006
  name = "windows-interface"
4736
- version = "0.59.1"
5007
+ version = "0.59.3"
4737
5008
  source = "registry+https://github.com/rust-lang/crates.io-index"
4738
- checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
5009
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4739
5010
  dependencies = [
4740
5011
  "proc-macro2",
4741
5012
  "quote",
4742
- "syn 2.0.103",
5013
+ "syn 2.0.106",
4743
5014
  ]
4744
5015
 
4745
5016
  [[package]]
@@ -4748,15 +5019,21 @@ version = "0.1.3"
4748
5019
  source = "registry+https://github.com/rust-lang/crates.io-index"
4749
5020
  checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4750
5021
 
5022
+ [[package]]
5023
+ name = "windows-link"
5024
+ version = "0.2.1"
5025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5026
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
5027
+
4751
5028
  [[package]]
4752
5029
  name = "windows-registry"
4753
- version = "0.5.2"
5030
+ version = "0.5.3"
4754
5031
  source = "registry+https://github.com/rust-lang/crates.io-index"
4755
- checksum = "b3bab093bdd303a1240bb99b8aba8ea8a69ee19d34c9e2ef9594e708a4878820"
5032
+ checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
4756
5033
  dependencies = [
4757
- "windows-link",
4758
- "windows-result",
4759
- "windows-strings",
5034
+ "windows-link 0.1.3",
5035
+ "windows-result 0.3.4",
5036
+ "windows-strings 0.4.2",
4760
5037
  ]
4761
5038
 
4762
5039
  [[package]]
@@ -4765,7 +5042,16 @@ version = "0.3.4"
4765
5042
  source = "registry+https://github.com/rust-lang/crates.io-index"
4766
5043
  checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4767
5044
  dependencies = [
4768
- "windows-link",
5045
+ "windows-link 0.1.3",
5046
+ ]
5047
+
5048
+ [[package]]
5049
+ name = "windows-result"
5050
+ version = "0.4.1"
5051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5052
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
5053
+ dependencies = [
5054
+ "windows-link 0.2.1",
4769
5055
  ]
4770
5056
 
4771
5057
  [[package]]
@@ -4774,7 +5060,16 @@ version = "0.4.2"
4774
5060
  source = "registry+https://github.com/rust-lang/crates.io-index"
4775
5061
  checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
4776
5062
  dependencies = [
4777
- "windows-link",
5063
+ "windows-link 0.1.3",
5064
+ ]
5065
+
5066
+ [[package]]
5067
+ name = "windows-strings"
5068
+ version = "0.5.1"
5069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5070
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
5071
+ dependencies = [
5072
+ "windows-link 0.2.1",
4778
5073
  ]
4779
5074
 
4780
5075
  [[package]]
@@ -4804,6 +5099,24 @@ dependencies = [
4804
5099
  "windows-targets 0.52.6",
4805
5100
  ]
4806
5101
 
5102
+ [[package]]
5103
+ name = "windows-sys"
5104
+ version = "0.60.2"
5105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5106
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5107
+ dependencies = [
5108
+ "windows-targets 0.53.5",
5109
+ ]
5110
+
5111
+ [[package]]
5112
+ name = "windows-sys"
5113
+ version = "0.61.2"
5114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5115
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
5116
+ dependencies = [
5117
+ "windows-link 0.2.1",
5118
+ ]
5119
+
4807
5120
  [[package]]
4808
5121
  name = "windows-targets"
4809
5122
  version = "0.48.5"
@@ -4837,18 +5150,19 @@ dependencies = [
4837
5150
 
4838
5151
  [[package]]
4839
5152
  name = "windows-targets"
4840
- version = "0.53.2"
5153
+ version = "0.53.5"
4841
5154
  source = "registry+https://github.com/rust-lang/crates.io-index"
4842
- checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
5155
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4843
5156
  dependencies = [
4844
- "windows_aarch64_gnullvm 0.53.0",
4845
- "windows_aarch64_msvc 0.53.0",
4846
- "windows_i686_gnu 0.53.0",
4847
- "windows_i686_gnullvm 0.53.0",
4848
- "windows_i686_msvc 0.53.0",
4849
- "windows_x86_64_gnu 0.53.0",
4850
- "windows_x86_64_gnullvm 0.53.0",
4851
- "windows_x86_64_msvc 0.53.0",
5157
+ "windows-link 0.2.1",
5158
+ "windows_aarch64_gnullvm 0.53.1",
5159
+ "windows_aarch64_msvc 0.53.1",
5160
+ "windows_i686_gnu 0.53.1",
5161
+ "windows_i686_gnullvm 0.53.1",
5162
+ "windows_i686_msvc 0.53.1",
5163
+ "windows_x86_64_gnu 0.53.1",
5164
+ "windows_x86_64_gnullvm 0.53.1",
5165
+ "windows_x86_64_msvc 0.53.1",
4852
5166
  ]
4853
5167
 
4854
5168
  [[package]]
@@ -4865,9 +5179,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4865
5179
 
4866
5180
  [[package]]
4867
5181
  name = "windows_aarch64_gnullvm"
4868
- version = "0.53.0"
5182
+ version = "0.53.1"
4869
5183
  source = "registry+https://github.com/rust-lang/crates.io-index"
4870
- checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
5184
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4871
5185
 
4872
5186
  [[package]]
4873
5187
  name = "windows_aarch64_msvc"
@@ -4883,9 +5197,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4883
5197
 
4884
5198
  [[package]]
4885
5199
  name = "windows_aarch64_msvc"
4886
- version = "0.53.0"
5200
+ version = "0.53.1"
4887
5201
  source = "registry+https://github.com/rust-lang/crates.io-index"
4888
- checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
5202
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4889
5203
 
4890
5204
  [[package]]
4891
5205
  name = "windows_i686_gnu"
@@ -4901,9 +5215,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4901
5215
 
4902
5216
  [[package]]
4903
5217
  name = "windows_i686_gnu"
4904
- version = "0.53.0"
5218
+ version = "0.53.1"
4905
5219
  source = "registry+https://github.com/rust-lang/crates.io-index"
4906
- checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
5220
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4907
5221
 
4908
5222
  [[package]]
4909
5223
  name = "windows_i686_gnullvm"
@@ -4913,9 +5227,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4913
5227
 
4914
5228
  [[package]]
4915
5229
  name = "windows_i686_gnullvm"
4916
- version = "0.53.0"
5230
+ version = "0.53.1"
4917
5231
  source = "registry+https://github.com/rust-lang/crates.io-index"
4918
- checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
5232
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4919
5233
 
4920
5234
  [[package]]
4921
5235
  name = "windows_i686_msvc"
@@ -4931,9 +5245,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4931
5245
 
4932
5246
  [[package]]
4933
5247
  name = "windows_i686_msvc"
4934
- version = "0.53.0"
5248
+ version = "0.53.1"
4935
5249
  source = "registry+https://github.com/rust-lang/crates.io-index"
4936
- checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
5250
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4937
5251
 
4938
5252
  [[package]]
4939
5253
  name = "windows_x86_64_gnu"
@@ -4949,9 +5263,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4949
5263
 
4950
5264
  [[package]]
4951
5265
  name = "windows_x86_64_gnu"
4952
- version = "0.53.0"
5266
+ version = "0.53.1"
4953
5267
  source = "registry+https://github.com/rust-lang/crates.io-index"
4954
- checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
5268
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4955
5269
 
4956
5270
  [[package]]
4957
5271
  name = "windows_x86_64_gnullvm"
@@ -4967,9 +5281,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4967
5281
 
4968
5282
  [[package]]
4969
5283
  name = "windows_x86_64_gnullvm"
4970
- version = "0.53.0"
5284
+ version = "0.53.1"
4971
5285
  source = "registry+https://github.com/rust-lang/crates.io-index"
4972
- checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
5286
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4973
5287
 
4974
5288
  [[package]]
4975
5289
  name = "windows_x86_64_msvc"
@@ -4985,19 +5299,29 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4985
5299
 
4986
5300
  [[package]]
4987
5301
  name = "windows_x86_64_msvc"
4988
- version = "0.53.0"
5302
+ version = "0.53.1"
4989
5303
  source = "registry+https://github.com/rust-lang/crates.io-index"
4990
- checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
5304
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4991
5305
 
4992
5306
  [[package]]
4993
5307
  name = "winnow"
4994
- version = "0.7.11"
5308
+ version = "0.7.13"
4995
5309
  source = "registry+https://github.com/rust-lang/crates.io-index"
4996
- checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
5310
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
4997
5311
  dependencies = [
4998
5312
  "memchr",
4999
5313
  ]
5000
5314
 
5315
+ [[package]]
5316
+ name = "winreg"
5317
+ version = "0.50.0"
5318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5319
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
5320
+ dependencies = [
5321
+ "cfg-if",
5322
+ "windows-sys 0.48.0",
5323
+ ]
5324
+
5001
5325
  [[package]]
5002
5326
  name = "wiremock"
5003
5327
  version = "0.5.22"
@@ -5021,13 +5345,10 @@ dependencies = [
5021
5345
  ]
5022
5346
 
5023
5347
  [[package]]
5024
- name = "wit-bindgen-rt"
5025
- version = "0.39.0"
5348
+ name = "wit-bindgen"
5349
+ version = "0.46.0"
5026
5350
  source = "registry+https://github.com/rust-lang/crates.io-index"
5027
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
5028
- dependencies = [
5029
- "bitflags 2.9.1",
5030
- ]
5351
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
5031
5352
 
5032
5353
  [[package]]
5033
5354
  name = "with_builtin_macros"
@@ -5075,28 +5396,28 @@ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
5075
5396
  dependencies = [
5076
5397
  "proc-macro2",
5077
5398
  "quote",
5078
- "syn 2.0.103",
5399
+ "syn 2.0.106",
5079
5400
  "synstructure",
5080
5401
  ]
5081
5402
 
5082
5403
  [[package]]
5083
5404
  name = "zerocopy"
5084
- version = "0.8.26"
5405
+ version = "0.8.27"
5085
5406
  source = "registry+https://github.com/rust-lang/crates.io-index"
5086
- checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
5407
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
5087
5408
  dependencies = [
5088
5409
  "zerocopy-derive",
5089
5410
  ]
5090
5411
 
5091
5412
  [[package]]
5092
5413
  name = "zerocopy-derive"
5093
- version = "0.8.26"
5414
+ version = "0.8.27"
5094
5415
  source = "registry+https://github.com/rust-lang/crates.io-index"
5095
- checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
5416
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
5096
5417
  dependencies = [
5097
5418
  "proc-macro2",
5098
5419
  "quote",
5099
- "syn 2.0.103",
5420
+ "syn 2.0.106",
5100
5421
  ]
5101
5422
 
5102
5423
  [[package]]
@@ -5116,15 +5437,15 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5116
5437
  dependencies = [
5117
5438
  "proc-macro2",
5118
5439
  "quote",
5119
- "syn 2.0.103",
5440
+ "syn 2.0.106",
5120
5441
  "synstructure",
5121
5442
  ]
5122
5443
 
5123
5444
  [[package]]
5124
5445
  name = "zeroize"
5125
- version = "1.8.1"
5446
+ version = "1.8.2"
5126
5447
  source = "registry+https://github.com/rust-lang/crates.io-index"
5127
- checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
5448
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
5128
5449
  dependencies = [
5129
5450
  "zeroize_derive",
5130
5451
  ]
@@ -5137,7 +5458,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
5137
5458
  dependencies = [
5138
5459
  "proc-macro2",
5139
5460
  "quote",
5140
- "syn 2.0.103",
5461
+ "syn 2.0.106",
5141
5462
  ]
5142
5463
 
5143
5464
  [[package]]
@@ -5153,9 +5474,9 @@ dependencies = [
5153
5474
 
5154
5475
  [[package]]
5155
5476
  name = "zerovec"
5156
- version = "0.11.2"
5477
+ version = "0.11.4"
5157
5478
  source = "registry+https://github.com/rust-lang/crates.io-index"
5158
- checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
5479
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
5159
5480
  dependencies = [
5160
5481
  "yoke",
5161
5482
  "zerofrom",
@@ -5170,5 +5491,5 @@ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
5170
5491
  dependencies = [
5171
5492
  "proc-macro2",
5172
5493
  "quote",
5173
- "syn 2.0.103",
5494
+ "syn 2.0.106",
5174
5495
  ]