itsi 0.1.18 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (394) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +15 -0
  3. data/Cargo.lock +924 -385
  4. data/README.md +67 -55
  5. data/crates/itsi_server/Cargo.toml +7 -4
  6. data/crates/itsi_server/src/ruby_types/itsi_http_request.rs +2 -2
  7. data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +150 -19
  8. data/crates/itsi_server/src/ruby_types/itsi_server.rs +1 -0
  9. data/crates/itsi_server/src/server/binds/listener.rs +34 -29
  10. data/crates/itsi_server/src/server/binds/tls/locked_dir_cache.rs +2 -2
  11. data/crates/itsi_server/src/server/binds/tls.rs +1 -1
  12. data/crates/itsi_server/src/server/middleware_stack/middleware.rs +33 -28
  13. data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +56 -3
  14. data/crates/itsi_server/src/server/middleware_stack/middlewares/csp.rs +179 -0
  15. data/crates/itsi_server/src/server/middleware_stack/middlewares/mod.rs +25 -2
  16. data/crates/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +3 -3
  17. data/crates/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +2 -1
  18. data/crates/itsi_server/src/server/middleware_stack/mod.rs +32 -34
  19. data/crates/itsi_server/src/server/serve_strategy/cluster_mode.rs +10 -4
  20. data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +30 -7
  21. data/crates/itsi_server/src/server/thread_worker.rs +2 -2
  22. data/crates/itsi_server/src/services/static_file_server.rs +30 -28
  23. data/crates/itsi_tracing/src/lib.rs +39 -8
  24. data/docker/Dockerfile +12 -0
  25. data/docs/content/_index.md +18 -10
  26. data/docs/content/acknowledgements/_index.md +43 -0
  27. data/docs/content/configuration/_index.md +98 -0
  28. data/docs/content/contact/_index.md +7 -0
  29. data/docs/content/faqs/_index.md +27 -0
  30. data/docs/content/features/_index.md +285 -0
  31. data/docs/content/getting_started/_index.md +70 -0
  32. data/docs/content/getting_started/local_development.md +40 -0
  33. data/docs/content/getting_started/logging.md +16 -0
  34. data/docs/content/getting_started/running_itsi_in_production.md +24 -0
  35. data/docs/content/itsi-server-100.png +0 -0
  36. data/docs/content/itsi_scheduler/_index.md +105 -0
  37. data/docs/content/itsi_scheduler/itsi-scheduler-100.png +0 -0
  38. data/docs/content/ruby-lsp.png +0 -0
  39. data/docs/content/ruby.svg +948 -0
  40. data/docs/data/icons.yaml +949 -0
  41. data/docs/hugo.yaml +27 -28
  42. data/fairytale.txt +34 -0
  43. data/gems/scheduler/Cargo.lock +46 -46
  44. data/gems/scheduler/README.md +53 -24
  45. data/gems/scheduler/itsi-scheduler-100.png +0 -0
  46. data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
  47. data/gems/server/Cargo.lock +932 -382
  48. data/gems/server/README.md +2 -0
  49. data/gems/server/exe/itsi +5 -5
  50. data/gems/server/lib/itsi/http_request.rb +1 -0
  51. data/gems/server/lib/itsi/server/config/config_helpers.rb +93 -0
  52. data/gems/server/lib/itsi/server/config/dsl.rb +98 -37
  53. data/gems/server/lib/itsi/server/config/known_paths/KitchensinkDirectories.txt +2346 -0
  54. data/gems/server/lib/itsi/server/config/known_paths/Randomfiles.txt +24 -0
  55. data/gems/server/lib/itsi/server/config/known_paths/UnixDotfiles.txt +52 -0
  56. data/gems/server/lib/itsi/server/config/known_paths/backdoors/ASP_CommonBackdoors.txt +29 -0
  57. data/gems/server/lib/itsi/server/config/known_paths/backdoors/bot_control_panels.txt +1668 -0
  58. data/gems/server/lib/itsi/server/config/known_paths/backdoors/shells.txt +1167 -0
  59. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST.txt +7 -0
  60. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST_Windows.txt +6 -0
  61. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_Microsoft.txt +79 -0
  62. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_XPlatform.txt +3948 -0
  63. data/gems/server/lib/itsi/server/config/known_paths/cms/README.md +5 -0
  64. data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_plugins.txt +6320 -0
  65. data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_themes.txt +828 -0
  66. data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_plugins.txt +224 -0
  67. data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_themes.txt +30 -0
  68. data/gems/server/lib/itsi/server/config/known_paths/cms/php-nuke.txt +2142 -0
  69. data/gems/server/lib/itsi/server/config/known_paths/cms/wordpress.txt +1566 -0
  70. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_common_theme_files.txt +46 -0
  71. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins.txt +13366 -0
  72. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_full.txt +68662 -0
  73. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_top225.txt +225 -0
  74. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.readme +12 -0
  75. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.txt +7336 -0
  76. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/3CharExtBrute.txt +17576 -0
  77. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/CommonWebExtensions.txt +80 -0
  78. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Backup.txt +14 -0
  79. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Common.txt +865 -0
  80. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Compressed.txt +186 -0
  81. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Mostcommon.txt +30 -0
  82. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Skipfish.txt +93 -0
  83. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/WordlistSkipfish.txt +1918 -0
  84. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/copy_of.txt +8 -0
  85. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt +56180 -0
  86. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories.txt +62290 -0
  87. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt +2367 -0
  88. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions.txt +2450 -0
  89. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files-lowercase.txt +35323 -0
  90. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files.txt +37037 -0
  91. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words-lowercase.txt +107982 -0
  92. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words.txt +119600 -0
  93. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt +26593 -0
  94. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories.txt +30009 -0
  95. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt +1233 -0
  96. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions.txt +1289 -0
  97. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt +16243 -0
  98. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files.txt +17128 -0
  99. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt +56293 -0
  100. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words.txt +63087 -0
  101. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt +17776 -0
  102. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories.txt +20122 -0
  103. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt +914 -0
  104. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions.txt +963 -0
  105. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files-lowercase.txt +10848 -0
  106. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files.txt +11424 -0
  107. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words-lowercase.txt +38267 -0
  108. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words.txt +43003 -0
  109. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/spanish.txt +445 -0
  110. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/test_demo.txt +36 -0
  111. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/upload_variants.txt +44 -0
  112. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/Logins.txt +71 -0
  113. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/cfm.txt +294 -0
  114. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/html.txt +295 -0
  115. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/jsp.txt +294 -0
  116. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/php.txt +294 -0
  117. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-asp.txt +294 -0
  118. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-aspx.txt +294 -0
  119. data/gems/server/lib/itsi/server/config/known_paths/password-file-locations/Passwords.txt +47 -0
  120. data/gems/server/lib/itsi/server/config/known_paths/php/PHP.txt +30 -0
  121. data/gems/server/lib/itsi/server/config/known_paths/php/PHP_CommonBackdoors.txt +5 -0
  122. data/gems/server/lib/itsi/server/config/known_paths/proxy-conf.txt +31 -0
  123. data/gems/server/lib/itsi/server/config/known_paths/tftp.txt +79 -0
  124. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ADFS.txt +86 -0
  125. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/AdobeXML.txt +16 -0
  126. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache.txt +101 -0
  127. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ApacheTomcat.txt +47 -0
  128. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache_Axis.txt +16 -0
  129. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ColdFusion.txt +111 -0
  130. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/FatwireCMS.txt +390 -0
  131. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Frontpage.txt +38 -0
  132. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HP_System_Mgmt_Homepage.txt +239 -0
  133. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HTTP_POST_Microsoft.txt +2 -0
  134. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Hyperion.txt +578 -0
  135. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/IIS.txt +187 -0
  136. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JBoss.txt +5 -0
  137. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JRun.txt +13 -0
  138. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JavaServlets_Common.txt +3 -0
  139. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Joomla_exploitable.txt +1937 -0
  140. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/LotusNotes.txt +206 -0
  141. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Netware.txt +18 -0
  142. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Oracle9i.txt +60 -0
  143. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/OracleAppServer.txt +192 -0
  144. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/README.md +6 -0
  145. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Ruby_Rails.txt +121 -0
  146. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SAP.txt +463 -0
  147. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Sharepoint.txt +1707 -0
  148. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SiteMinder.txt +19 -0
  149. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SunAppServerGlassfish.txt +51 -0
  150. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SuniPlanet.txt +35 -0
  151. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Vignette.txt +73 -0
  152. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Weblogic.txt +160 -0
  153. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Websphere.txt +366 -0
  154. data/gems/server/lib/itsi/server/config/known_paths/wellknown-rfc5785.txt +30 -0
  155. data/gems/server/lib/itsi/server/config/known_paths.rb +17 -0
  156. data/gems/server/lib/itsi/server/config/middleware/_index.md +54 -0
  157. data/gems/server/lib/itsi/server/config/middleware/log_requests.md +63 -0
  158. data/gems/server/lib/itsi/server/config/middleware/log_requests.rb +33 -0
  159. data/gems/server/lib/itsi/server/config/middleware.rb +9 -0
  160. data/gems/server/lib/itsi/server/config/option.rb +9 -0
  161. data/gems/server/lib/itsi/server/config/options/_index.md +36 -0
  162. data/gems/server/lib/itsi/server/config/options/fiber_scheduler.md +35 -0
  163. data/gems/server/lib/itsi/server/config/options/fiber_scheduler.rb +18 -0
  164. data/gems/server/lib/itsi/server/config/options/threads.md +39 -0
  165. data/gems/server/lib/itsi/server/config/options/threads.rb +17 -0
  166. data/gems/server/lib/itsi/server/config/options/workers.md +43 -0
  167. data/gems/server/lib/itsi/server/config/options/workers.rb +17 -0
  168. data/gems/server/lib/itsi/server/config/typed_struct.rb +203 -0
  169. data/gems/server/lib/itsi/server/config.rb +124 -30
  170. data/gems/server/lib/itsi/server/signal_trap.rb +5 -1
  171. data/gems/server/lib/itsi/server/typed_handlers/source_parser.rb +1 -1
  172. data/gems/server/lib/itsi/server/version.rb +1 -1
  173. data/gems/server/lib/itsi/server.rb +27 -6
  174. data/gems/server/lib/ruby_lsp/itsi/addon.rb +64 -48
  175. data/gems/server/test/helpers/test_helper.rb +64 -5
  176. data/gems/server/test/middleware/test_log_requests.rb +17 -0
  177. data/gems/server/test/options/test_threads.rb +15 -0
  178. data/gems/server/test/options/test_workers.rb +18 -0
  179. data/gems/server/test/test_itsi_server.rb +81 -94
  180. data/itsi-scheduler-100.png +0 -0
  181. data/itsi-server-100.png +0 -0
  182. data/lib/itsi/version.rb +1 -1
  183. data/tasks.txt +36 -28
  184. metadata +147 -215
  185. data/crates/_index.md +0 -0
  186. data/crates/itsi_server/src/ruby_types/README.md +0 -21
  187. data/crates/itsi_server/test.md +0 -14
  188. data/docs/Itsi.rb +0 -17
  189. data/docs/content/about.md +0 -6
  190. data/docs/content/docs/_index.md +0 -18
  191. data/docs/content/docs/first-page.md +0 -9
  192. data/docs/content/docs/folder/_index.md +0 -10
  193. data/docs/content/docs/folder/leaf.md +0 -7
  194. data/foo/Itsi.rb +0 -122
  195. data/gems/_index.md +0 -18
  196. data/gems/scheduler/CHANGELOG.md +0 -5
  197. data/gems/scheduler/CODE_OF_CONDUCT.md +0 -139
  198. data/gems/scheduler/LICENSE.txt +0 -21
  199. data/gems/scheduler/_index.md +0 -7
  200. data/gems/server/CHANGELOG.md +0 -10
  201. data/gems/server/CODE_OF_CONDUCT.md +0 -139
  202. data/gems/server/LICENSE.txt +0 -21
  203. data/gems/server/_index.md +0 -6
  204. data/sandbox/README.md +0 -5
  205. data/sandbox/deploy/main.tf +0 -238
  206. data/sandbox/deploy/outputs.tf +0 -4
  207. data/sandbox/deploy/vars.tf +0 -11
  208. data/sandbox/falcon_benchmark/Gemfile +0 -10
  209. data/sandbox/falcon_benchmark/Gemfile.lock +0 -140
  210. data/sandbox/falcon_benchmark/config.ru +0 -54
  211. data/sandbox/itsi_file/Gemfile +0 -13
  212. data/sandbox/itsi_file/Gemfile.lock +0 -111
  213. data/sandbox/itsi_file/Itsi.rb +0 -473
  214. data/sandbox/itsi_file/call.json +0 -1
  215. data/sandbox/itsi_file/echo_client/Gemfile +0 -10
  216. data/sandbox/itsi_file/echo_client/Gemfile.lock +0 -27
  217. data/sandbox/itsi_file/echo_client/README.md +0 -95
  218. data/sandbox/itsi_file/echo_client/echo_client.rb +0 -164
  219. data/sandbox/itsi_file/echo_client/gen_proto.sh +0 -17
  220. data/sandbox/itsi_file/echo_client/lib/echo_pb.rb +0 -16
  221. data/sandbox/itsi_file/echo_client/lib/echo_services_pb.rb +0 -29
  222. data/sandbox/itsi_file/echo_client/run_client.rb +0 -64
  223. data/sandbox/itsi_file/echo_client/test_compressions.sh +0 -20
  224. data/sandbox/itsi_file/echo_service_nonitsi/Gemfile +0 -10
  225. data/sandbox/itsi_file/echo_service_nonitsi/Gemfile.lock +0 -79
  226. data/sandbox/itsi_file/echo_service_nonitsi/echo.proto +0 -26
  227. data/sandbox/itsi_file/echo_service_nonitsi/echo_pb.rb +0 -16
  228. data/sandbox/itsi_file/echo_service_nonitsi/echo_services_pb.rb +0 -29
  229. data/sandbox/itsi_file/echo_service_nonitsi/server.rb +0 -52
  230. data/sandbox/itsi_file/error.html +0 -2
  231. data/sandbox/itsi_file/organisations_controller.rb +0 -20
  232. data/sandbox/itsi_file/public/assets/image.png +0 -0
  233. data/sandbox/itsi_sandbox_async/Gemfile +0 -10
  234. data/sandbox/itsi_sandbox_async/Gemfile.lock +0 -69
  235. data/sandbox/itsi_sandbox_async/config.ru +0 -9
  236. data/sandbox/itsi_sandbox_hanami/.env +0 -2
  237. data/sandbox/itsi_sandbox_hanami/.gitignore +0 -6
  238. data/sandbox/itsi_sandbox_hanami/.rspec +0 -1
  239. data/sandbox/itsi_sandbox_hanami/Gemfile +0 -49
  240. data/sandbox/itsi_sandbox_hanami/Gemfile.lock +0 -440
  241. data/sandbox/itsi_sandbox_hanami/Guardfile +0 -9
  242. data/sandbox/itsi_sandbox_hanami/Procfile.dev +0 -2
  243. data/sandbox/itsi_sandbox_hanami/README.md +0 -1
  244. data/sandbox/itsi_sandbox_hanami/Rakefile +0 -3
  245. data/sandbox/itsi_sandbox_hanami/app/action.rb +0 -12
  246. data/sandbox/itsi_sandbox_hanami/app/actions/.keep +0 -0
  247. data/sandbox/itsi_sandbox_hanami/app/assets/css/app.css +0 -5
  248. data/sandbox/itsi_sandbox_hanami/app/assets/images/favicon.ico +0 -0
  249. data/sandbox/itsi_sandbox_hanami/app/assets/js/app.js +0 -1
  250. data/sandbox/itsi_sandbox_hanami/app/db/relation.rb +0 -10
  251. data/sandbox/itsi_sandbox_hanami/app/db/repo.rb +0 -10
  252. data/sandbox/itsi_sandbox_hanami/app/db/struct.rb +0 -10
  253. data/sandbox/itsi_sandbox_hanami/app/operation.rb +0 -9
  254. data/sandbox/itsi_sandbox_hanami/app/relations/.keep +0 -0
  255. data/sandbox/itsi_sandbox_hanami/app/repos/.keep +0 -0
  256. data/sandbox/itsi_sandbox_hanami/app/structs/.keep +0 -0
  257. data/sandbox/itsi_sandbox_hanami/app/templates/layouts/app.html.erb +0 -14
  258. data/sandbox/itsi_sandbox_hanami/app/view.rb +0 -9
  259. data/sandbox/itsi_sandbox_hanami/app/views/helpers.rb +0 -10
  260. data/sandbox/itsi_sandbox_hanami/bin/dev +0 -8
  261. data/sandbox/itsi_sandbox_hanami/config/app.rb +0 -8
  262. data/sandbox/itsi_sandbox_hanami/config/assets.js +0 -16
  263. data/sandbox/itsi_sandbox_hanami/config/db/migrate/.keep +0 -0
  264. data/sandbox/itsi_sandbox_hanami/config/db/seeds.rb +0 -15
  265. data/sandbox/itsi_sandbox_hanami/config/puma.rb +0 -47
  266. data/sandbox/itsi_sandbox_hanami/config/routes.rb +0 -7
  267. data/sandbox/itsi_sandbox_hanami/config/settings.rb +0 -9
  268. data/sandbox/itsi_sandbox_hanami/config.ru +0 -5
  269. data/sandbox/itsi_sandbox_hanami/db/.keep +0 -0
  270. data/sandbox/itsi_sandbox_hanami/lib/itsi_hanami/types.rb +0 -11
  271. data/sandbox/itsi_sandbox_hanami/lib/tasks/.keep +0 -0
  272. data/sandbox/itsi_sandbox_hanami/package-lock.json +0 -946
  273. data/sandbox/itsi_sandbox_hanami/package.json +0 -8
  274. data/sandbox/itsi_sandbox_hanami/spec/requests/root_spec.rb +0 -11
  275. data/sandbox/itsi_sandbox_hanami/spec/spec_helper.rb +0 -9
  276. data/sandbox/itsi_sandbox_hanami/spec/support/db/cleaning.rb +0 -42
  277. data/sandbox/itsi_sandbox_hanami/spec/support/db.rb +0 -10
  278. data/sandbox/itsi_sandbox_hanami/spec/support/features.rb +0 -5
  279. data/sandbox/itsi_sandbox_hanami/spec/support/operations.rb +0 -8
  280. data/sandbox/itsi_sandbox_hanami/spec/support/requests.rb +0 -13
  281. data/sandbox/itsi_sandbox_hanami/spec/support/rspec.rb +0 -61
  282. data/sandbox/itsi_sandbox_rack/Gemfile +0 -17
  283. data/sandbox/itsi_sandbox_rack/Gemfile.lock +0 -153
  284. data/sandbox/itsi_sandbox_rack/config.ru +0 -5
  285. data/sandbox/itsi_sandbox_rack_lint/Gemfile +0 -7
  286. data/sandbox/itsi_sandbox_rack_lint/Gemfile.lock +0 -27
  287. data/sandbox/itsi_sandbox_rack_lint/config.ru +0 -3
  288. data/sandbox/itsi_sandbox_rails/.dockerignore +0 -48
  289. data/sandbox/itsi_sandbox_rails/.gitattributes +0 -9
  290. data/sandbox/itsi_sandbox_rails/.github/dependabot.yml +0 -12
  291. data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +0 -90
  292. data/sandbox/itsi_sandbox_rails/.gitignore +0 -35
  293. data/sandbox/itsi_sandbox_rails/.rubocop.yml +0 -8
  294. data/sandbox/itsi_sandbox_rails/.ruby-version +0 -1
  295. data/sandbox/itsi_sandbox_rails/Dockerfile +0 -69
  296. data/sandbox/itsi_sandbox_rails/Gemfile +0 -66
  297. data/sandbox/itsi_sandbox_rails/Gemfile.lock +0 -429
  298. data/sandbox/itsi_sandbox_rails/README.md +0 -24
  299. data/sandbox/itsi_sandbox_rails/Rakefile +0 -6
  300. data/sandbox/itsi_sandbox_rails/app/assets/config/manifest.js +0 -4
  301. data/sandbox/itsi_sandbox_rails/app/assets/images/.keep +0 -0
  302. data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +0 -15
  303. data/sandbox/itsi_sandbox_rails/app/channels/application_cable/channel.rb +0 -4
  304. data/sandbox/itsi_sandbox_rails/app/channels/application_cable/connection.rb +0 -4
  305. data/sandbox/itsi_sandbox_rails/app/controllers/application_controller.rb +0 -4
  306. data/sandbox/itsi_sandbox_rails/app/controllers/concerns/.keep +0 -0
  307. data/sandbox/itsi_sandbox_rails/app/controllers/home_controller.rb +0 -66
  308. data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +0 -40
  309. data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +0 -29
  310. data/sandbox/itsi_sandbox_rails/app/helpers/application_helper.rb +0 -2
  311. data/sandbox/itsi_sandbox_rails/app/javascript/application.js +0 -3
  312. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/application.js +0 -9
  313. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/hello_controller.js +0 -7
  314. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/index.js +0 -4
  315. data/sandbox/itsi_sandbox_rails/app/jobs/application_job.rb +0 -7
  316. data/sandbox/itsi_sandbox_rails/app/mailers/application_mailer.rb +0 -4
  317. data/sandbox/itsi_sandbox_rails/app/models/application_record.rb +0 -3
  318. data/sandbox/itsi_sandbox_rails/app/models/concerns/.keep +0 -0
  319. data/sandbox/itsi_sandbox_rails/app/models/post.rb +0 -2
  320. data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +0 -23
  321. data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.html.erb +0 -13
  322. data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.text.erb +0 -1
  323. data/sandbox/itsi_sandbox_rails/app/views/pwa/manifest.json.erb +0 -22
  324. data/sandbox/itsi_sandbox_rails/app/views/pwa/service-worker.js +0 -26
  325. data/sandbox/itsi_sandbox_rails/bin/brakeman +0 -7
  326. data/sandbox/itsi_sandbox_rails/bin/bundle +0 -109
  327. data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +0 -13
  328. data/sandbox/itsi_sandbox_rails/bin/importmap +0 -4
  329. data/sandbox/itsi_sandbox_rails/bin/rails +0 -4
  330. data/sandbox/itsi_sandbox_rails/bin/rake +0 -4
  331. data/sandbox/itsi_sandbox_rails/bin/rubocop +0 -8
  332. data/sandbox/itsi_sandbox_rails/bin/setup +0 -37
  333. data/sandbox/itsi_sandbox_rails/config/application.rb +0 -27
  334. data/sandbox/itsi_sandbox_rails/config/boot.rb +0 -4
  335. data/sandbox/itsi_sandbox_rails/config/cable.yml +0 -10
  336. data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +0 -1
  337. data/sandbox/itsi_sandbox_rails/config/database.yml +0 -30
  338. data/sandbox/itsi_sandbox_rails/config/environment.rb +0 -5
  339. data/sandbox/itsi_sandbox_rails/config/environments/development.rb +0 -82
  340. data/sandbox/itsi_sandbox_rails/config/environments/production.rb +0 -106
  341. data/sandbox/itsi_sandbox_rails/config/environments/test.rb +0 -67
  342. data/sandbox/itsi_sandbox_rails/config/importmap.rb +0 -7
  343. data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +0 -12
  344. data/sandbox/itsi_sandbox_rails/config/initializers/content_security_policy.rb +0 -25
  345. data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +0 -8
  346. data/sandbox/itsi_sandbox_rails/config/initializers/inflections.rb +0 -16
  347. data/sandbox/itsi_sandbox_rails/config/initializers/permissions_policy.rb +0 -13
  348. data/sandbox/itsi_sandbox_rails/config/locales/en.yml +0 -31
  349. data/sandbox/itsi_sandbox_rails/config/puma.rb +0 -34
  350. data/sandbox/itsi_sandbox_rails/config/routes.rb +0 -23
  351. data/sandbox/itsi_sandbox_rails/config/storage.yml +0 -34
  352. data/sandbox/itsi_sandbox_rails/config.ru +0 -6
  353. data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +0 -10
  354. data/sandbox/itsi_sandbox_rails/db/schema.rb +0 -23
  355. data/sandbox/itsi_sandbox_rails/db/seeds.rb +0 -9
  356. data/sandbox/itsi_sandbox_rails/lib/assets/.keep +0 -0
  357. data/sandbox/itsi_sandbox_rails/lib/tasks/.keep +0 -0
  358. data/sandbox/itsi_sandbox_rails/log/.keep +0 -0
  359. data/sandbox/itsi_sandbox_rails/public/404.html +0 -67
  360. data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +0 -66
  361. data/sandbox/itsi_sandbox_rails/public/422.html +0 -67
  362. data/sandbox/itsi_sandbox_rails/public/500.html +0 -66
  363. data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
  364. data/sandbox/itsi_sandbox_rails/public/icon.svg +0 -3
  365. data/sandbox/itsi_sandbox_rails/public/robots.txt +0 -1
  366. data/sandbox/itsi_sandbox_rails/storage/.keep +0 -0
  367. data/sandbox/itsi_sandbox_rails/test/application_system_test_case.rb +0 -5
  368. data/sandbox/itsi_sandbox_rails/test/channels/application_cable/connection_test.rb +0 -13
  369. data/sandbox/itsi_sandbox_rails/test/controllers/.keep +0 -0
  370. data/sandbox/itsi_sandbox_rails/test/fixtures/files/.keep +0 -0
  371. data/sandbox/itsi_sandbox_rails/test/helpers/.keep +0 -0
  372. data/sandbox/itsi_sandbox_rails/test/integration/.keep +0 -0
  373. data/sandbox/itsi_sandbox_rails/test/mailers/.keep +0 -0
  374. data/sandbox/itsi_sandbox_rails/test/models/.keep +0 -0
  375. data/sandbox/itsi_sandbox_rails/test/system/.keep +0 -0
  376. data/sandbox/itsi_sandbox_rails/test/test_helper.rb +0 -15
  377. data/sandbox/itsi_sandbox_rails/tmp/.keep +0 -0
  378. data/sandbox/itsi_sandbox_rails/tmp/pids/.keep +0 -0
  379. data/sandbox/itsi_sandbox_rails/tmp/storage/.keep +0 -0
  380. data/sandbox/itsi_sandbox_rails/vendor/.keep +0 -0
  381. data/sandbox/itsi_sandbox_rails/vendor/javascript/.keep +0 -0
  382. data/sandbox/itsi_sandbox_roda/Gemfile +0 -5
  383. data/sandbox/itsi_sandbox_roda/Gemfile.lock +0 -37
  384. data/sandbox/itsi_sandbox_roda/config.ru +0 -39
  385. data/sandbox/itsi_sinatra/Gemfile +0 -9
  386. data/sandbox/itsi_sinatra/Gemfile.lock +0 -81
  387. data/sandbox/itsi_sinatra/app.rb +0 -8
  388. data/sandbox/pebble/docker-compose.yml +0 -11
  389. data/sandbox/static_files/.env +0 -1
  390. data/sandbox/static_files/404.html +0 -25
  391. data/sandbox/static_files/_DSC0102.NEF.jpg +0 -0
  392. data/sandbox/static_files/about.html +0 -68
  393. data/sandbox/static_files/tiny.html +0 -1
  394. data/sandbox/static_files/writebook.zip +0 -0
data/Cargo.lock CHANGED
@@ -56,6 +56,65 @@ dependencies = [
56
56
  "libc",
57
57
  ]
58
58
 
59
+ [[package]]
60
+ name = "ansi_term"
61
+ version = "0.12.1"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
64
+ dependencies = [
65
+ "winapi",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstream"
70
+ version = "0.6.18"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
73
+ dependencies = [
74
+ "anstyle",
75
+ "anstyle-parse",
76
+ "anstyle-query",
77
+ "anstyle-wincon",
78
+ "colorchoice",
79
+ "is_terminal_polyfill",
80
+ "utf8parse",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle"
85
+ version = "1.0.10"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
88
+
89
+ [[package]]
90
+ name = "anstyle-parse"
91
+ version = "0.2.6"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
94
+ dependencies = [
95
+ "utf8parse",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstyle-query"
100
+ version = "1.1.2"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
103
+ dependencies = [
104
+ "windows-sys 0.59.0",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anstyle-wincon"
109
+ version = "3.0.7"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
112
+ dependencies = [
113
+ "anstyle",
114
+ "once_cell",
115
+ "windows-sys 0.59.0",
116
+ ]
117
+
59
118
  [[package]]
60
119
  name = "anyhow"
61
120
  version = "1.0.97"
@@ -104,7 +163,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
104
163
  dependencies = [
105
164
  "proc-macro2",
106
165
  "quote",
107
- "syn 2.0.98",
166
+ "syn 2.0.100",
108
167
  "synstructure",
109
168
  ]
110
169
 
@@ -116,7 +175,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
116
175
  dependencies = [
117
176
  "proc-macro2",
118
177
  "quote",
119
- "syn 2.0.98",
178
+ "syn 2.0.100",
120
179
  ]
121
180
 
122
181
  [[package]]
@@ -133,9 +192,9 @@ dependencies = [
133
192
 
134
193
  [[package]]
135
194
  name = "async-compression"
136
- version = "0.4.21"
195
+ version = "0.4.22"
137
196
  source = "registry+https://github.com/rust-lang/crates.io-index"
138
- checksum = "c0cf008e5e1a9e9e22a7d3c9a4992e21a350290069e36d8fb72304ed17e8f2d2"
197
+ checksum = "59a194f9d963d8099596278594b3107448656ba73831c9d8c783e613ce86da64"
139
198
  dependencies = [
140
199
  "brotli",
141
200
  "flate2",
@@ -150,13 +209,13 @@ dependencies = [
150
209
 
151
210
  [[package]]
152
211
  name = "async-trait"
153
- version = "0.1.87"
212
+ version = "0.1.88"
154
213
  source = "registry+https://github.com/rust-lang/crates.io-index"
155
- checksum = "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97"
214
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
156
215
  dependencies = [
157
216
  "proc-macro2",
158
217
  "quote",
159
- "syn 2.0.98",
218
+ "syn 2.0.100",
160
219
  ]
161
220
 
162
221
  [[package]]
@@ -184,34 +243,104 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
184
243
 
185
244
  [[package]]
186
245
  name = "aws-lc-rs"
187
- version = "1.12.4"
246
+ version = "1.13.0"
188
247
  source = "registry+https://github.com/rust-lang/crates.io-index"
189
- checksum = "4cd755adf9707cf671e31d944a189be3deaaeee11c8bc1d669bb8022ac90fbd0"
248
+ checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
190
249
  dependencies = [
191
250
  "aws-lc-sys",
192
- "paste",
193
251
  "zeroize",
194
252
  ]
195
253
 
196
254
  [[package]]
197
255
  name = "aws-lc-sys"
198
- version = "0.26.0"
256
+ version = "0.28.0"
199
257
  source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "0f9dd2e03ee80ca2822dd6ea431163d2ef259f2066a4d6ccaca6d9dcb386aa43"
258
+ checksum = "b9f7720b74ed28ca77f90769a71fd8c637a0137f6fae4ae947e1050229cff57f"
201
259
  dependencies = [
202
260
  "bindgen",
203
261
  "cc",
204
262
  "cmake",
205
263
  "dunce",
206
264
  "fs_extra",
207
- "paste",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "axum"
269
+ version = "0.7.9"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
272
+ dependencies = [
273
+ "async-trait",
274
+ "axum-core",
275
+ "bytes",
276
+ "futures-util",
277
+ "http 1.3.1",
278
+ "http-body 1.0.1",
279
+ "http-body-util",
280
+ "hyper 1.6.0",
281
+ "hyper-util",
282
+ "itoa",
283
+ "matchit",
284
+ "memchr",
285
+ "mime",
286
+ "percent-encoding",
287
+ "pin-project-lite",
288
+ "rustversion",
289
+ "serde",
290
+ "serde_json",
291
+ "serde_path_to_error",
292
+ "serde_urlencoded",
293
+ "sync_wrapper",
294
+ "tokio",
295
+ "tower",
296
+ "tower-layer",
297
+ "tower-service",
298
+ "tracing",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "axum-core"
303
+ version = "0.4.5"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
306
+ dependencies = [
307
+ "async-trait",
308
+ "bytes",
309
+ "futures-util",
310
+ "http 1.3.1",
311
+ "http-body 1.0.1",
312
+ "http-body-util",
313
+ "mime",
314
+ "pin-project-lite",
315
+ "rustversion",
316
+ "sync_wrapper",
317
+ "tower-layer",
318
+ "tower-service",
319
+ "tracing",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "axum-server"
324
+ version = "0.7.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "495c05f60d6df0093e8fb6e74aa5846a0ad06abaf96d76166283720bf740f8ab"
327
+ dependencies = [
328
+ "bytes",
329
+ "fs-err",
330
+ "http 1.3.1",
331
+ "http-body 1.0.1",
332
+ "hyper 1.6.0",
333
+ "hyper-util",
334
+ "tokio",
335
+ "tokio-rustls",
336
+ "tower-service",
208
337
  ]
209
338
 
210
339
  [[package]]
211
340
  name = "backon"
212
- version = "1.4.1"
341
+ version = "1.5.0"
213
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
214
- checksum = "970d91570c01a8a5959b36ad7dd1c30642df24b6b3068710066f6809f7033bb7"
343
+ checksum = "fd0b50b1b78dbadd44ab18b3c794e496f3a139abb9fbc27d9c94c4eebbb96496"
215
344
  dependencies = [
216
345
  "fastrand",
217
346
  ]
@@ -231,6 +360,12 @@ dependencies = [
231
360
  "windows-targets 0.52.6",
232
361
  ]
233
362
 
363
+ [[package]]
364
+ name = "base64"
365
+ version = "0.21.7"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
368
+
234
369
  [[package]]
235
370
  name = "base64"
236
371
  version = "0.22.1"
@@ -249,9 +384,9 @@ version = "0.17.0"
249
384
  source = "registry+https://github.com/rust-lang/crates.io-index"
250
385
  checksum = "92758ad6077e4c76a6cadbce5005f666df70d4f13b19976b1a8062eef880040f"
251
386
  dependencies = [
252
- "base64",
387
+ "base64 0.22.1",
253
388
  "blowfish",
254
- "getrandom 0.3.1",
389
+ "getrandom 0.3.2",
255
390
  "subtle",
256
391
  "zeroize",
257
392
  ]
@@ -262,7 +397,7 @@ version = "0.69.5"
262
397
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
398
  checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
264
399
  dependencies = [
265
- "bitflags 2.8.0",
400
+ "bitflags 2.9.0",
266
401
  "cexpr",
267
402
  "clang-sys",
268
403
  "itertools",
@@ -275,7 +410,7 @@ dependencies = [
275
410
  "regex",
276
411
  "rustc-hash 1.1.0",
277
412
  "shlex",
278
- "syn 2.0.98",
413
+ "syn 2.0.100",
279
414
  "which",
280
415
  ]
281
416
 
@@ -287,9 +422,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
287
422
 
288
423
  [[package]]
289
424
  name = "bitflags"
290
- version = "2.8.0"
425
+ version = "2.9.0"
291
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
292
- checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
427
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
293
428
 
294
429
  [[package]]
295
430
  name = "blake2"
@@ -342,9 +477,9 @@ dependencies = [
342
477
 
343
478
  [[package]]
344
479
  name = "bstr"
345
- version = "1.11.3"
480
+ version = "1.12.0"
346
481
  source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
482
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
348
483
  dependencies = [
349
484
  "memchr",
350
485
  "serde",
@@ -370,9 +505,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
370
505
 
371
506
  [[package]]
372
507
  name = "cc"
373
- version = "1.2.15"
508
+ version = "1.2.19"
374
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af"
510
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
376
511
  dependencies = [
377
512
  "jobserver",
378
513
  "libc",
@@ -435,6 +570,61 @@ dependencies = [
435
570
  "libloading",
436
571
  ]
437
572
 
573
+ [[package]]
574
+ name = "clap"
575
+ version = "2.34.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
578
+ dependencies = [
579
+ "ansi_term",
580
+ "atty",
581
+ "bitflags 1.3.2",
582
+ "strsim 0.8.0",
583
+ "textwrap",
584
+ "unicode-width",
585
+ "vec_map",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "clap"
590
+ version = "4.5.36"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
593
+ dependencies = [
594
+ "clap_builder",
595
+ "clap_derive",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "clap_builder"
600
+ version = "4.5.36"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
603
+ dependencies = [
604
+ "anstream",
605
+ "anstyle",
606
+ "clap_lex",
607
+ "strsim 0.11.1",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "clap_derive"
612
+ version = "4.5.32"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
615
+ dependencies = [
616
+ "heck 0.5.0",
617
+ "proc-macro2",
618
+ "quote",
619
+ "syn 2.0.100",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "clap_lex"
624
+ version = "0.7.4"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
627
+
438
628
  [[package]]
439
629
  name = "cmake"
440
630
  version = "0.1.54"
@@ -444,6 +634,22 @@ dependencies = [
444
634
  "cc",
445
635
  ]
446
636
 
637
+ [[package]]
638
+ name = "colorchoice"
639
+ version = "1.0.3"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
642
+
643
+ [[package]]
644
+ name = "colored"
645
+ version = "2.2.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
648
+ dependencies = [
649
+ "lazy_static",
650
+ "windows-sys 0.59.0",
651
+ ]
652
+
447
653
  [[package]]
448
654
  name = "combine"
449
655
  version = "4.6.7"
@@ -467,16 +673,6 @@ dependencies = [
467
673
  "crossbeam-utils",
468
674
  ]
469
675
 
470
- [[package]]
471
- name = "core-foundation"
472
- version = "0.9.4"
473
- source = "registry+https://github.com/rust-lang/crates.io-index"
474
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
475
- dependencies = [
476
- "core-foundation-sys",
477
- "libc",
478
- ]
479
-
480
676
  [[package]]
481
677
  name = "core-foundation"
482
678
  version = "0.10.0"
@@ -524,9 +720,9 @@ dependencies = [
524
720
 
525
721
  [[package]]
526
722
  name = "crossbeam-channel"
527
- version = "0.5.14"
723
+ version = "0.5.15"
528
724
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
725
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
530
726
  dependencies = [
531
727
  "crossbeam-utils",
532
728
  ]
@@ -588,9 +784,9 @@ dependencies = [
588
784
 
589
785
  [[package]]
590
786
  name = "deranged"
591
- version = "0.3.11"
787
+ version = "0.4.0"
592
788
  source = "registry+https://github.com/rust-lang/crates.io-index"
593
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
789
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
594
790
  dependencies = [
595
791
  "powerfmt",
596
792
  ]
@@ -612,7 +808,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
612
808
  dependencies = [
613
809
  "proc-macro2",
614
810
  "quote",
615
- "syn 2.0.98",
811
+ "syn 2.0.100",
616
812
  "unicode-xid",
617
813
  ]
618
814
 
@@ -656,7 +852,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
656
852
  dependencies = [
657
853
  "proc-macro2",
658
854
  "quote",
659
- "syn 2.0.98",
855
+ "syn 2.0.100",
660
856
  ]
661
857
 
662
858
  [[package]]
@@ -688,9 +884,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
688
884
 
689
885
  [[package]]
690
886
  name = "errno"
691
- version = "0.3.10"
887
+ version = "0.3.11"
692
888
  source = "registry+https://github.com/rust-lang/crates.io-index"
693
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
889
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
694
890
  dependencies = [
695
891
  "libc",
696
892
  "windows-sys 0.59.0",
@@ -709,9 +905,9 @@ dependencies = [
709
905
 
710
906
  [[package]]
711
907
  name = "event-listener-strategy"
712
- version = "0.5.3"
908
+ version = "0.5.4"
713
909
  source = "registry+https://github.com/rust-lang/crates.io-index"
714
- checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
910
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
715
911
  dependencies = [
716
912
  "event-listener",
717
913
  "pin-project-lite",
@@ -737,9 +933,9 @@ dependencies = [
737
933
 
738
934
  [[package]]
739
935
  name = "flate2"
740
- version = "1.1.0"
936
+ version = "1.1.1"
741
937
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
- checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
938
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
743
939
  dependencies = [
744
940
  "crc32fast",
745
941
  "miniz_oxide",
@@ -752,27 +948,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
752
948
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
753
949
 
754
950
  [[package]]
755
- name = "foreign-types"
756
- version = "0.3.2"
951
+ name = "form_urlencoded"
952
+ version = "1.2.1"
757
953
  source = "registry+https://github.com/rust-lang/crates.io-index"
758
- checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
954
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
759
955
  dependencies = [
760
- "foreign-types-shared",
956
+ "percent-encoding",
761
957
  ]
762
958
 
763
959
  [[package]]
764
- name = "foreign-types-shared"
765
- version = "0.1.1"
766
- source = "registry+https://github.com/rust-lang/crates.io-index"
767
- checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
768
-
769
- [[package]]
770
- name = "form_urlencoded"
771
- version = "1.2.1"
960
+ name = "fs-err"
961
+ version = "3.1.0"
772
962
  source = "registry+https://github.com/rust-lang/crates.io-index"
773
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
963
+ checksum = "1f89bda4c2a21204059a977ed3bfe746677dfd137b83c339e702b0ac91d482aa"
774
964
  dependencies = [
775
- "percent-encoding",
965
+ "autocfg",
966
+ "tokio",
776
967
  ]
777
968
 
778
969
  [[package]]
@@ -856,7 +1047,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
856
1047
  dependencies = [
857
1048
  "proc-macro2",
858
1049
  "quote",
859
- "syn 2.0.98",
1050
+ "syn 2.0.100",
860
1051
  ]
861
1052
 
862
1053
  [[package]]
@@ -927,14 +1118,16 @@ dependencies = [
927
1118
 
928
1119
  [[package]]
929
1120
  name = "getrandom"
930
- version = "0.3.1"
1121
+ version = "0.3.2"
931
1122
  source = "registry+https://github.com/rust-lang/crates.io-index"
932
- checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
1123
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
933
1124
  dependencies = [
934
1125
  "cfg-if",
1126
+ "js-sys",
935
1127
  "libc",
936
- "wasi 0.13.3+wasi-0.2.2",
937
- "windows-targets 0.52.6",
1128
+ "r-efi",
1129
+ "wasi 0.14.2+wasi-0.2.4",
1130
+ "wasm-bindgen",
938
1131
  ]
939
1132
 
940
1133
  [[package]]
@@ -962,6 +1155,25 @@ dependencies = [
962
1155
  "regex-syntax 0.8.5",
963
1156
  ]
964
1157
 
1158
+ [[package]]
1159
+ name = "h2"
1160
+ version = "0.3.26"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1163
+ dependencies = [
1164
+ "bytes",
1165
+ "fnv",
1166
+ "futures-core",
1167
+ "futures-sink",
1168
+ "futures-util",
1169
+ "http 0.2.12",
1170
+ "indexmap",
1171
+ "slab",
1172
+ "tokio",
1173
+ "tokio-util",
1174
+ "tracing",
1175
+ ]
1176
+
965
1177
  [[package]]
966
1178
  name = "h2"
967
1179
  version = "0.4.8"
@@ -973,7 +1185,7 @@ dependencies = [
973
1185
  "fnv",
974
1186
  "futures-core",
975
1187
  "futures-sink",
976
- "http",
1188
+ "http 1.3.1",
977
1189
  "indexmap",
978
1190
  "slab",
979
1191
  "tokio",
@@ -987,6 +1199,45 @@ version = "0.15.2"
987
1199
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
1200
  checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
989
1201
 
1202
+ [[package]]
1203
+ name = "headers"
1204
+ version = "0.3.9"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
1207
+ dependencies = [
1208
+ "base64 0.21.7",
1209
+ "bytes",
1210
+ "headers-core",
1211
+ "http 0.2.12",
1212
+ "httpdate",
1213
+ "mime",
1214
+ "sha1",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "headers-core"
1219
+ version = "0.2.0"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
1222
+ dependencies = [
1223
+ "http 0.2.12",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "heck"
1228
+ version = "0.3.3"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1231
+ dependencies = [
1232
+ "unicode-segmentation",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "heck"
1237
+ version = "0.5.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1240
+
990
1241
  [[package]]
991
1242
  name = "hermit-abi"
992
1243
  version = "0.1.19"
@@ -1011,6 +1262,17 @@ dependencies = [
1011
1262
  "windows-sys 0.59.0",
1012
1263
  ]
1013
1264
 
1265
+ [[package]]
1266
+ name = "http"
1267
+ version = "0.2.12"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1270
+ dependencies = [
1271
+ "bytes",
1272
+ "fnv",
1273
+ "itoa",
1274
+ ]
1275
+
1014
1276
  [[package]]
1015
1277
  name = "http"
1016
1278
  version = "1.3.1"
@@ -1022,6 +1284,17 @@ dependencies = [
1022
1284
  "itoa",
1023
1285
  ]
1024
1286
 
1287
+ [[package]]
1288
+ name = "http-body"
1289
+ version = "0.4.6"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1292
+ dependencies = [
1293
+ "bytes",
1294
+ "http 0.2.12",
1295
+ "pin-project-lite",
1296
+ ]
1297
+
1025
1298
  [[package]]
1026
1299
  name = "http-body"
1027
1300
  version = "1.0.1"
@@ -1029,19 +1302,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
1302
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1030
1303
  dependencies = [
1031
1304
  "bytes",
1032
- "http",
1305
+ "http 1.3.1",
1033
1306
  ]
1034
1307
 
1035
1308
  [[package]]
1036
1309
  name = "http-body-util"
1037
- version = "0.1.2"
1310
+ version = "0.1.3"
1038
1311
  source = "registry+https://github.com/rust-lang/crates.io-index"
1039
- checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1312
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1040
1313
  dependencies = [
1041
1314
  "bytes",
1042
- "futures-util",
1043
- "http",
1044
- "http-body",
1315
+ "futures-core",
1316
+ "http 1.3.1",
1317
+ "http-body 1.0.1",
1045
1318
  "pin-project-lite",
1046
1319
  ]
1047
1320
 
@@ -1057,6 +1330,30 @@ version = "1.0.3"
1057
1330
  source = "registry+https://github.com/rust-lang/crates.io-index"
1058
1331
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1059
1332
 
1333
+ [[package]]
1334
+ name = "hyper"
1335
+ version = "0.14.32"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1338
+ dependencies = [
1339
+ "bytes",
1340
+ "futures-channel",
1341
+ "futures-core",
1342
+ "futures-util",
1343
+ "h2 0.3.26",
1344
+ "http 0.2.12",
1345
+ "http-body 0.4.6",
1346
+ "httparse",
1347
+ "httpdate",
1348
+ "itoa",
1349
+ "pin-project-lite",
1350
+ "socket2",
1351
+ "tokio",
1352
+ "tower-service",
1353
+ "tracing",
1354
+ "want",
1355
+ ]
1356
+
1060
1357
  [[package]]
1061
1358
  name = "hyper"
1062
1359
  version = "1.6.0"
@@ -1066,9 +1363,9 @@ dependencies = [
1066
1363
  "bytes",
1067
1364
  "futures-channel",
1068
1365
  "futures-util",
1069
- "h2",
1070
- "http",
1071
- "http-body",
1366
+ "h2 0.4.8",
1367
+ "http 1.3.1",
1368
+ "http-body 1.0.1",
1072
1369
  "httparse",
1073
1370
  "httpdate",
1074
1371
  "itoa",
@@ -1085,8 +1382,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
1382
  checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1086
1383
  dependencies = [
1087
1384
  "futures-util",
1088
- "http",
1089
- "hyper",
1385
+ "http 1.3.1",
1386
+ "hyper 1.6.0",
1090
1387
  "hyper-util",
1091
1388
  "rustls",
1092
1389
  "rustls-pki-types",
@@ -1096,34 +1393,19 @@ dependencies = [
1096
1393
  "webpki-roots",
1097
1394
  ]
1098
1395
 
1099
- [[package]]
1100
- name = "hyper-tls"
1101
- version = "0.6.0"
1102
- source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1104
- dependencies = [
1105
- "bytes",
1106
- "http-body-util",
1107
- "hyper",
1108
- "hyper-util",
1109
- "native-tls",
1110
- "tokio",
1111
- "tokio-native-tls",
1112
- "tower-service",
1113
- ]
1114
-
1115
1396
  [[package]]
1116
1397
  name = "hyper-util"
1117
- version = "0.1.10"
1398
+ version = "0.1.11"
1118
1399
  source = "registry+https://github.com/rust-lang/crates.io-index"
1119
- checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
1400
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1120
1401
  dependencies = [
1121
1402
  "bytes",
1122
1403
  "futures-channel",
1123
1404
  "futures-util",
1124
- "http",
1125
- "http-body",
1126
- "hyper",
1405
+ "http 1.3.1",
1406
+ "http-body 1.0.1",
1407
+ "hyper 1.6.0",
1408
+ "libc",
1127
1409
  "pin-project-lite",
1128
1410
  "socket2",
1129
1411
  "tokio",
@@ -1133,16 +1415,17 @@ dependencies = [
1133
1415
 
1134
1416
  [[package]]
1135
1417
  name = "iana-time-zone"
1136
- version = "0.1.61"
1418
+ version = "0.1.63"
1137
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
1420
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1139
1421
  dependencies = [
1140
1422
  "android_system_properties",
1141
1423
  "core-foundation-sys",
1142
1424
  "iana-time-zone-haiku",
1143
1425
  "js-sys",
1426
+ "log",
1144
1427
  "wasm-bindgen",
1145
- "windows-core 0.52.0",
1428
+ "windows-core 0.61.0",
1146
1429
  ]
1147
1430
 
1148
1431
  [[package]]
@@ -1195,9 +1478,9 @@ dependencies = [
1195
1478
 
1196
1479
  [[package]]
1197
1480
  name = "icu_locid_transform_data"
1198
- version = "1.5.0"
1481
+ version = "1.5.1"
1199
1482
  source = "registry+https://github.com/rust-lang/crates.io-index"
1200
- checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1483
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1201
1484
 
1202
1485
  [[package]]
1203
1486
  name = "icu_normalizer"
@@ -1219,9 +1502,9 @@ dependencies = [
1219
1502
 
1220
1503
  [[package]]
1221
1504
  name = "icu_normalizer_data"
1222
- version = "1.5.0"
1505
+ version = "1.5.1"
1223
1506
  source = "registry+https://github.com/rust-lang/crates.io-index"
1224
- checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1507
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1225
1508
 
1226
1509
  [[package]]
1227
1510
  name = "icu_properties"
@@ -1240,9 +1523,9 @@ dependencies = [
1240
1523
 
1241
1524
  [[package]]
1242
1525
  name = "icu_properties_data"
1243
- version = "1.5.0"
1526
+ version = "1.5.1"
1244
1527
  source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1528
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1246
1529
 
1247
1530
  [[package]]
1248
1531
  name = "icu_provider"
@@ -1269,7 +1552,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1269
1552
  dependencies = [
1270
1553
  "proc-macro2",
1271
1554
  "quote",
1272
- "syn 2.0.98",
1555
+ "syn 2.0.100",
1273
1556
  ]
1274
1557
 
1275
1558
  [[package]]
@@ -1295,9 +1578,9 @@ dependencies = [
1295
1578
 
1296
1579
  [[package]]
1297
1580
  name = "indexmap"
1298
- version = "2.7.1"
1581
+ version = "2.9.0"
1299
1582
  source = "registry+https://github.com/rust-lang/crates.io-index"
1300
- checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1583
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1301
1584
  dependencies = [
1302
1585
  "equivalent",
1303
1586
  "hashbrown",
@@ -1309,7 +1592,7 @@ version = "0.11.0"
1309
1592
  source = "registry+https://github.com/rust-lang/crates.io-index"
1310
1593
  checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1311
1594
  dependencies = [
1312
- "bitflags 2.8.0",
1595
+ "bitflags 2.9.0",
1313
1596
  "inotify-sys",
1314
1597
  "libc",
1315
1598
  ]
@@ -1338,6 +1621,12 @@ version = "2.11.0"
1338
1621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1339
1622
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1340
1623
 
1624
+ [[package]]
1625
+ name = "is_terminal_polyfill"
1626
+ version = "1.70.1"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1629
+
1341
1630
  [[package]]
1342
1631
  name = "itertools"
1343
1632
  version = "0.12.1"
@@ -1349,9 +1638,9 @@ dependencies = [
1349
1638
 
1350
1639
  [[package]]
1351
1640
  name = "itoa"
1352
- version = "1.0.14"
1641
+ version = "1.0.15"
1353
1642
  source = "registry+https://github.com/rust-lang/crates.io-index"
1354
- checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1643
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1355
1644
 
1356
1645
  [[package]]
1357
1646
  name = "itsi-scheduler"
@@ -1373,13 +1662,13 @@ dependencies = [
1373
1662
 
1374
1663
  [[package]]
1375
1664
  name = "itsi-server"
1376
- version = "0.1.18"
1665
+ version = "0.1.20"
1377
1666
  dependencies = [
1378
1667
  "argon2",
1379
1668
  "async-channel",
1380
1669
  "async-compression",
1381
1670
  "async-trait",
1382
- "base64",
1671
+ "base64 0.22.1",
1383
1672
  "bcrypt",
1384
1673
  "bytes",
1385
1674
  "chrono",
@@ -1390,12 +1679,13 @@ dependencies = [
1390
1679
  "fs2",
1391
1680
  "futures",
1392
1681
  "globset",
1393
- "http",
1682
+ "http 1.3.1",
1394
1683
  "http-body-util",
1395
1684
  "httparse",
1396
1685
  "httpdate",
1397
- "hyper",
1686
+ "hyper 1.6.0",
1398
1687
  "hyper-util",
1688
+ "itsi_acme",
1399
1689
  "itsi_error",
1400
1690
  "itsi_rb_helpers",
1401
1691
  "itsi_tracing",
@@ -1426,13 +1716,46 @@ dependencies = [
1426
1716
  "tempfile",
1427
1717
  "tokio",
1428
1718
  "tokio-rustls",
1429
- "tokio-rustls-acme",
1430
1719
  "tokio-stream",
1431
1720
  "tokio-util",
1432
1721
  "tracing",
1433
1722
  "url",
1434
1723
  ]
1435
1724
 
1725
+ [[package]]
1726
+ name = "itsi_acme"
1727
+ version = "0.1.0"
1728
+ dependencies = [
1729
+ "async-trait",
1730
+ "axum",
1731
+ "axum-server",
1732
+ "base64 0.22.1",
1733
+ "chrono",
1734
+ "clap 4.5.36",
1735
+ "futures",
1736
+ "log",
1737
+ "num-bigint",
1738
+ "pem",
1739
+ "proc-macro2",
1740
+ "rcgen",
1741
+ "reqwest",
1742
+ "ring",
1743
+ "rustls",
1744
+ "serde",
1745
+ "serde_json",
1746
+ "simple_logger",
1747
+ "structopt",
1748
+ "thiserror 2.0.12",
1749
+ "time",
1750
+ "tokio",
1751
+ "tokio-rustls",
1752
+ "tokio-stream",
1753
+ "tokio-util",
1754
+ "warp",
1755
+ "webpki-roots",
1756
+ "x509-parser",
1757
+ ]
1758
+
1436
1759
  [[package]]
1437
1760
  name = "itsi_error"
1438
1761
  version = "0.1.0"
@@ -1478,10 +1801,11 @@ dependencies = [
1478
1801
 
1479
1802
  [[package]]
1480
1803
  name = "jobserver"
1481
- version = "0.1.32"
1804
+ version = "0.1.33"
1482
1805
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1806
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1484
1807
  dependencies = [
1808
+ "getrandom 0.3.2",
1485
1809
  "libc",
1486
1810
  ]
1487
1811
 
@@ -1501,7 +1825,7 @@ version = "9.3.1"
1501
1825
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
1826
  checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1503
1827
  dependencies = [
1504
- "base64",
1828
+ "base64 0.22.1",
1505
1829
  "js-sys",
1506
1830
  "pem",
1507
1831
  "ring",
@@ -1544,9 +1868,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1544
1868
 
1545
1869
  [[package]]
1546
1870
  name = "libc"
1547
- version = "0.2.170"
1871
+ version = "0.2.171"
1548
1872
  source = "registry+https://github.com/rust-lang/crates.io-index"
1549
- checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
1873
+ checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1550
1874
 
1551
1875
  [[package]]
1552
1876
  name = "libloading"
@@ -1564,7 +1888,7 @@ version = "0.1.3"
1564
1888
  source = "registry+https://github.com/rust-lang/crates.io-index"
1565
1889
  checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1566
1890
  dependencies = [
1567
- "bitflags 2.8.0",
1891
+ "bitflags 2.9.0",
1568
1892
  "libc",
1569
1893
  "redox_syscall",
1570
1894
  ]
@@ -1577,9 +1901,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1577
1901
 
1578
1902
  [[package]]
1579
1903
  name = "linux-raw-sys"
1580
- version = "0.9.2"
1904
+ version = "0.9.4"
1581
1905
  source = "registry+https://github.com/rust-lang/crates.io-index"
1582
- checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
1906
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1583
1907
 
1584
1908
  [[package]]
1585
1909
  name = "litemap"
@@ -1599,9 +1923,9 @@ dependencies = [
1599
1923
 
1600
1924
  [[package]]
1601
1925
  name = "log"
1602
- version = "0.4.26"
1926
+ version = "0.4.27"
1603
1927
  source = "registry+https://github.com/rust-lang/crates.io-index"
1604
- checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
1928
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1605
1929
 
1606
1930
  [[package]]
1607
1931
  name = "loom"
@@ -1637,7 +1961,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
1637
1961
  dependencies = [
1638
1962
  "proc-macro2",
1639
1963
  "quote",
1640
- "syn 2.0.98",
1964
+ "syn 2.0.100",
1641
1965
  ]
1642
1966
 
1643
1967
  [[package]]
@@ -1649,6 +1973,12 @@ dependencies = [
1649
1973
  "regex-automata 0.1.10",
1650
1974
  ]
1651
1975
 
1976
+ [[package]]
1977
+ name = "matchit"
1978
+ version = "0.7.3"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1981
+
1652
1982
  [[package]]
1653
1983
  name = "md5"
1654
1984
  version = "0.7.0"
@@ -1676,6 +2006,16 @@ version = "0.3.17"
1676
2006
  source = "registry+https://github.com/rust-lang/crates.io-index"
1677
2007
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1678
2008
 
2009
+ [[package]]
2010
+ name = "mime_guess"
2011
+ version = "2.0.5"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2014
+ dependencies = [
2015
+ "mime",
2016
+ "unicase",
2017
+ ]
2018
+
1679
2019
  [[package]]
1680
2020
  name = "minimal-lexical"
1681
2021
  version = "0.2.1"
@@ -1684,9 +2024,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1684
2024
 
1685
2025
  [[package]]
1686
2026
  name = "miniz_oxide"
1687
- version = "0.8.5"
2027
+ version = "0.8.8"
1688
2028
  source = "registry+https://github.com/rust-lang/crates.io-index"
1689
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2029
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1690
2030
  dependencies = [
1691
2031
  "adler2",
1692
2032
  ]
@@ -1723,20 +2063,21 @@ dependencies = [
1723
2063
  ]
1724
2064
 
1725
2065
  [[package]]
1726
- name = "native-tls"
1727
- version = "0.2.14"
2066
+ name = "multer"
2067
+ version = "2.1.0"
1728
2068
  source = "registry+https://github.com/rust-lang/crates.io-index"
1729
- checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
2069
+ checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
1730
2070
  dependencies = [
1731
- "libc",
2071
+ "bytes",
2072
+ "encoding_rs",
2073
+ "futures-util",
2074
+ "http 0.2.12",
2075
+ "httparse",
1732
2076
  "log",
1733
- "openssl",
1734
- "openssl-probe",
1735
- "openssl-sys",
1736
- "schannel",
1737
- "security-framework 2.11.1",
1738
- "security-framework-sys",
1739
- "tempfile",
2077
+ "memchr",
2078
+ "mime",
2079
+ "spin",
2080
+ "version_check",
1740
2081
  ]
1741
2082
 
1742
2083
  [[package]]
@@ -1745,7 +2086,7 @@ version = "0.29.0"
1745
2086
  source = "registry+https://github.com/rust-lang/crates.io-index"
1746
2087
  checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1747
2088
  dependencies = [
1748
- "bitflags 2.8.0",
2089
+ "bitflags 2.9.0",
1749
2090
  "cfg-if",
1750
2091
  "cfg_aliases",
1751
2092
  "libc",
@@ -1768,7 +2109,7 @@ version = "8.0.0"
1768
2109
  source = "registry+https://github.com/rust-lang/crates.io-index"
1769
2110
  checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
1770
2111
  dependencies = [
1771
- "bitflags 2.8.0",
2112
+ "bitflags 2.9.0",
1772
2113
  "filetime",
1773
2114
  "fsevent-sys",
1774
2115
  "inotify",
@@ -1850,6 +2191,15 @@ dependencies = [
1850
2191
  "libc",
1851
2192
  ]
1852
2193
 
2194
+ [[package]]
2195
+ name = "num_threads"
2196
+ version = "0.1.7"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2199
+ dependencies = [
2200
+ "libc",
2201
+ ]
2202
+
1853
2203
  [[package]]
1854
2204
  name = "object"
1855
2205
  version = "0.36.7"
@@ -1870,35 +2220,9 @@ dependencies = [
1870
2220
 
1871
2221
  [[package]]
1872
2222
  name = "once_cell"
1873
- version = "1.20.3"
2223
+ version = "1.21.3"
1874
2224
  source = "registry+https://github.com/rust-lang/crates.io-index"
1875
- checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
1876
-
1877
- [[package]]
1878
- name = "openssl"
1879
- version = "0.10.71"
1880
- source = "registry+https://github.com/rust-lang/crates.io-index"
1881
- checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd"
1882
- dependencies = [
1883
- "bitflags 2.8.0",
1884
- "cfg-if",
1885
- "foreign-types",
1886
- "libc",
1887
- "once_cell",
1888
- "openssl-macros",
1889
- "openssl-sys",
1890
- ]
1891
-
1892
- [[package]]
1893
- name = "openssl-macros"
1894
- version = "0.1.1"
1895
- source = "registry+https://github.com/rust-lang/crates.io-index"
1896
- checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1897
- dependencies = [
1898
- "proc-macro2",
1899
- "quote",
1900
- "syn 2.0.98",
1901
- ]
2225
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1902
2226
 
1903
2227
  [[package]]
1904
2228
  name = "openssl-probe"
@@ -1906,18 +2230,6 @@ version = "0.1.6"
1906
2230
  source = "registry+https://github.com/rust-lang/crates.io-index"
1907
2231
  checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1908
2232
 
1909
- [[package]]
1910
- name = "openssl-sys"
1911
- version = "0.9.106"
1912
- source = "registry+https://github.com/rust-lang/crates.io-index"
1913
- checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd"
1914
- dependencies = [
1915
- "cc",
1916
- "libc",
1917
- "pkg-config",
1918
- "vcpkg",
1919
- ]
1920
-
1921
2233
  [[package]]
1922
2234
  name = "option-ext"
1923
2235
  version = "0.2.0"
@@ -1970,19 +2282,13 @@ dependencies = [
1970
2282
  "subtle",
1971
2283
  ]
1972
2284
 
1973
- [[package]]
1974
- name = "paste"
1975
- version = "1.0.15"
1976
- source = "registry+https://github.com/rust-lang/crates.io-index"
1977
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1978
-
1979
2285
  [[package]]
1980
2286
  name = "pem"
1981
2287
  version = "3.0.5"
1982
2288
  source = "registry+https://github.com/rust-lang/crates.io-index"
1983
2289
  checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1984
2290
  dependencies = [
1985
- "base64",
2291
+ "base64 0.22.1",
1986
2292
  "serde",
1987
2293
  ]
1988
2294
 
@@ -1994,22 +2300,22 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1994
2300
 
1995
2301
  [[package]]
1996
2302
  name = "pin-project"
1997
- version = "1.1.9"
2303
+ version = "1.1.10"
1998
2304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1999
- checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
2305
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
2000
2306
  dependencies = [
2001
2307
  "pin-project-internal",
2002
2308
  ]
2003
2309
 
2004
2310
  [[package]]
2005
2311
  name = "pin-project-internal"
2006
- version = "1.1.9"
2312
+ version = "1.1.10"
2007
2313
  source = "registry+https://github.com/rust-lang/crates.io-index"
2008
- checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
2314
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2009
2315
  dependencies = [
2010
2316
  "proc-macro2",
2011
2317
  "quote",
2012
- "syn 2.0.98",
2318
+ "syn 2.0.100",
2013
2319
  ]
2014
2320
 
2015
2321
  [[package]]
@@ -2053,30 +2359,55 @@ dependencies = [
2053
2359
 
2054
2360
  [[package]]
2055
2361
  name = "prettyplease"
2056
- version = "0.2.29"
2362
+ version = "0.2.32"
2057
2363
  source = "registry+https://github.com/rust-lang/crates.io-index"
2058
- checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2364
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2059
2365
  dependencies = [
2060
2366
  "proc-macro2",
2061
- "syn 2.0.98",
2367
+ "syn 2.0.100",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "proc-macro-error"
2372
+ version = "1.0.4"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2375
+ dependencies = [
2376
+ "proc-macro-error-attr",
2377
+ "proc-macro2",
2378
+ "quote",
2379
+ "syn 1.0.109",
2380
+ "version_check",
2381
+ ]
2382
+
2383
+ [[package]]
2384
+ name = "proc-macro-error-attr"
2385
+ version = "1.0.4"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2388
+ dependencies = [
2389
+ "proc-macro2",
2390
+ "quote",
2391
+ "version_check",
2062
2392
  ]
2063
2393
 
2064
2394
  [[package]]
2065
2395
  name = "proc-macro2"
2066
- version = "1.0.93"
2396
+ version = "1.0.94"
2067
2397
  source = "registry+https://github.com/rust-lang/crates.io-index"
2068
- checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2398
+ checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2069
2399
  dependencies = [
2070
2400
  "unicode-ident",
2071
2401
  ]
2072
2402
 
2073
2403
  [[package]]
2074
2404
  name = "quinn"
2075
- version = "0.11.6"
2405
+ version = "0.11.7"
2076
2406
  source = "registry+https://github.com/rust-lang/crates.io-index"
2077
- checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2407
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2078
2408
  dependencies = [
2079
2409
  "bytes",
2410
+ "cfg_aliases",
2080
2411
  "pin-project-lite",
2081
2412
  "quinn-proto",
2082
2413
  "quinn-udp",
@@ -2086,17 +2417,18 @@ dependencies = [
2086
2417
  "thiserror 2.0.12",
2087
2418
  "tokio",
2088
2419
  "tracing",
2420
+ "web-time",
2089
2421
  ]
2090
2422
 
2091
2423
  [[package]]
2092
2424
  name = "quinn-proto"
2093
- version = "0.11.9"
2425
+ version = "0.11.10"
2094
2426
  source = "registry+https://github.com/rust-lang/crates.io-index"
2095
- checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2427
+ checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2096
2428
  dependencies = [
2097
2429
  "bytes",
2098
- "getrandom 0.2.15",
2099
- "rand 0.8.5",
2430
+ "getrandom 0.3.2",
2431
+ "rand 0.9.0",
2100
2432
  "ring",
2101
2433
  "rustc-hash 2.1.1",
2102
2434
  "rustls",
@@ -2110,9 +2442,9 @@ dependencies = [
2110
2442
 
2111
2443
  [[package]]
2112
2444
  name = "quinn-udp"
2113
- version = "0.5.10"
2445
+ version = "0.5.11"
2114
2446
  source = "registry+https://github.com/rust-lang/crates.io-index"
2115
- checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
2447
+ checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
2116
2448
  dependencies = [
2117
2449
  "cfg_aliases",
2118
2450
  "libc",
@@ -2124,13 +2456,19 @@ dependencies = [
2124
2456
 
2125
2457
  [[package]]
2126
2458
  name = "quote"
2127
- version = "1.0.38"
2459
+ version = "1.0.40"
2128
2460
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
- checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2461
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2130
2462
  dependencies = [
2131
2463
  "proc-macro2",
2132
2464
  ]
2133
2465
 
2466
+ [[package]]
2467
+ name = "r-efi"
2468
+ version = "5.2.0"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2471
+
2134
2472
  [[package]]
2135
2473
  name = "r2d2"
2136
2474
  version = "0.8.10"
@@ -2199,7 +2537,7 @@ version = "0.9.3"
2199
2537
  source = "registry+https://github.com/rust-lang/crates.io-index"
2200
2538
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2201
2539
  dependencies = [
2202
- "getrandom 0.3.1",
2540
+ "getrandom 0.3.2",
2203
2541
  ]
2204
2542
 
2205
2543
  [[package]]
@@ -2243,7 +2581,7 @@ dependencies = [
2243
2581
  "quote",
2244
2582
  "regex",
2245
2583
  "shell-words",
2246
- "syn 2.0.98",
2584
+ "syn 2.0.100",
2247
2585
  ]
2248
2586
 
2249
2587
  [[package]]
@@ -2268,9 +2606,9 @@ dependencies = [
2268
2606
 
2269
2607
  [[package]]
2270
2608
  name = "redis"
2271
- version = "0.29.2"
2609
+ version = "0.29.5"
2272
2610
  source = "registry+https://github.com/rust-lang/crates.io-index"
2273
- checksum = "b110459d6e323b7cda23980c46c77157601199c9da6241552b284cd565a7a133"
2611
+ checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f"
2274
2612
  dependencies = [
2275
2613
  "arc-swap",
2276
2614
  "backon",
@@ -2296,11 +2634,11 @@ dependencies = [
2296
2634
 
2297
2635
  [[package]]
2298
2636
  name = "redox_syscall"
2299
- version = "0.5.9"
2637
+ version = "0.5.11"
2300
2638
  source = "registry+https://github.com/rust-lang/crates.io-index"
2301
- checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
2639
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2302
2640
  dependencies = [
2303
- "bitflags 2.8.0",
2641
+ "bitflags 2.9.0",
2304
2642
  ]
2305
2643
 
2306
2644
  [[package]]
@@ -2364,24 +2702,20 @@ version = "0.12.15"
2364
2702
  source = "registry+https://github.com/rust-lang/crates.io-index"
2365
2703
  checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2366
2704
  dependencies = [
2367
- "base64",
2705
+ "base64 0.22.1",
2368
2706
  "bytes",
2369
- "encoding_rs",
2370
2707
  "futures-core",
2371
2708
  "futures-util",
2372
- "h2",
2373
- "http",
2374
- "http-body",
2709
+ "http 1.3.1",
2710
+ "http-body 1.0.1",
2375
2711
  "http-body-util",
2376
- "hyper",
2712
+ "hyper 1.6.0",
2377
2713
  "hyper-rustls",
2378
- "hyper-tls",
2379
2714
  "hyper-util",
2380
2715
  "ipnet",
2381
2716
  "js-sys",
2382
2717
  "log",
2383
2718
  "mime",
2384
- "native-tls",
2385
2719
  "once_cell",
2386
2720
  "percent-encoding",
2387
2721
  "pin-project-lite",
@@ -2393,9 +2727,7 @@ dependencies = [
2393
2727
  "serde_json",
2394
2728
  "serde_urlencoded",
2395
2729
  "sync_wrapper",
2396
- "system-configuration",
2397
2730
  "tokio",
2398
- "tokio-native-tls",
2399
2731
  "tokio-rustls",
2400
2732
  "tokio-util",
2401
2733
  "tower",
@@ -2465,7 +2797,7 @@ version = "0.38.44"
2465
2797
  source = "registry+https://github.com/rust-lang/crates.io-index"
2466
2798
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2467
2799
  dependencies = [
2468
- "bitflags 2.8.0",
2800
+ "bitflags 2.9.0",
2469
2801
  "errno",
2470
2802
  "libc",
2471
2803
  "linux-raw-sys 0.4.15",
@@ -2474,22 +2806,22 @@ dependencies = [
2474
2806
 
2475
2807
  [[package]]
2476
2808
  name = "rustix"
2477
- version = "1.0.1"
2809
+ version = "1.0.5"
2478
2810
  source = "registry+https://github.com/rust-lang/crates.io-index"
2479
- checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657"
2811
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2480
2812
  dependencies = [
2481
- "bitflags 2.8.0",
2813
+ "bitflags 2.9.0",
2482
2814
  "errno",
2483
2815
  "libc",
2484
- "linux-raw-sys 0.9.2",
2816
+ "linux-raw-sys 0.9.4",
2485
2817
  "windows-sys 0.59.0",
2486
2818
  ]
2487
2819
 
2488
2820
  [[package]]
2489
2821
  name = "rustls"
2490
- version = "0.23.23"
2822
+ version = "0.23.26"
2491
2823
  source = "registry+https://github.com/rust-lang/crates.io-index"
2492
- checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
2824
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2493
2825
  dependencies = [
2494
2826
  "aws-lc-rs",
2495
2827
  "log",
@@ -2510,7 +2842,7 @@ dependencies = [
2510
2842
  "openssl-probe",
2511
2843
  "rustls-pki-types",
2512
2844
  "schannel",
2513
- "security-framework 3.2.0",
2845
+ "security-framework",
2514
2846
  ]
2515
2847
 
2516
2848
  [[package]]
@@ -2533,9 +2865,9 @@ dependencies = [
2533
2865
 
2534
2866
  [[package]]
2535
2867
  name = "rustls-webpki"
2536
- version = "0.102.8"
2868
+ version = "0.103.1"
2537
2869
  source = "registry+https://github.com/rust-lang/crates.io-index"
2538
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2870
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2539
2871
  dependencies = [
2540
2872
  "aws-lc-rs",
2541
2873
  "ring",
@@ -2551,9 +2883,9 @@ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2551
2883
 
2552
2884
  [[package]]
2553
2885
  name = "ryu"
2554
- version = "1.0.19"
2886
+ version = "1.0.20"
2555
2887
  source = "registry+https://github.com/rust-lang/crates.io-index"
2556
- checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
2888
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2557
2889
 
2558
2890
  [[package]]
2559
2891
  name = "same-file"
@@ -2589,23 +2921,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
2921
  checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2590
2922
 
2591
2923
  [[package]]
2592
- name = "scopeguard"
2593
- version = "1.2.0"
2594
- source = "registry+https://github.com/rust-lang/crates.io-index"
2595
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2596
-
2597
- [[package]]
2598
- name = "security-framework"
2599
- version = "2.11.1"
2924
+ name = "scopeguard"
2925
+ version = "1.2.0"
2600
2926
  source = "registry+https://github.com/rust-lang/crates.io-index"
2601
- checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2602
- dependencies = [
2603
- "bitflags 2.8.0",
2604
- "core-foundation 0.9.4",
2605
- "core-foundation-sys",
2606
- "libc",
2607
- "security-framework-sys",
2608
- ]
2927
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2609
2928
 
2610
2929
  [[package]]
2611
2930
  name = "security-framework"
@@ -2613,8 +2932,8 @@ version = "3.2.0"
2613
2932
  source = "registry+https://github.com/rust-lang/crates.io-index"
2614
2933
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2615
2934
  dependencies = [
2616
- "bitflags 2.8.0",
2617
- "core-foundation 0.10.0",
2935
+ "bitflags 2.9.0",
2936
+ "core-foundation",
2618
2937
  "core-foundation-sys",
2619
2938
  "libc",
2620
2939
  "security-framework-sys",
@@ -2638,9 +2957,9 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2638
2957
 
2639
2958
  [[package]]
2640
2959
  name = "seq-macro"
2641
- version = "0.3.5"
2960
+ version = "0.3.6"
2642
2961
  source = "registry+https://github.com/rust-lang/crates.io-index"
2643
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
2962
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2644
2963
 
2645
2964
  [[package]]
2646
2965
  name = "serde"
@@ -2659,7 +2978,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2659
2978
  dependencies = [
2660
2979
  "proc-macro2",
2661
2980
  "quote",
2662
- "syn 2.0.98",
2981
+ "syn 2.0.100",
2663
2982
  ]
2664
2983
 
2665
2984
  [[package]]
@@ -2685,6 +3004,16 @@ dependencies = [
2685
3004
  "tap",
2686
3005
  ]
2687
3006
 
3007
+ [[package]]
3008
+ name = "serde_path_to_error"
3009
+ version = "0.1.17"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
3012
+ dependencies = [
3013
+ "itoa",
3014
+ "serde",
3015
+ ]
3016
+
2688
3017
  [[package]]
2689
3018
  name = "serde_urlencoded"
2690
3019
  version = "0.7.1"
@@ -2709,6 +3038,17 @@ dependencies = [
2709
3038
  "subtle",
2710
3039
  ]
2711
3040
 
3041
+ [[package]]
3042
+ name = "sha1"
3043
+ version = "0.10.6"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3046
+ dependencies = [
3047
+ "cfg-if",
3048
+ "cpufeatures",
3049
+ "digest",
3050
+ ]
3051
+
2712
3052
  [[package]]
2713
3053
  name = "sha1_smol"
2714
3054
  version = "1.0.1"
@@ -2768,6 +3108,18 @@ dependencies = [
2768
3108
  "time",
2769
3109
  ]
2770
3110
 
3111
+ [[package]]
3112
+ name = "simple_logger"
3113
+ version = "5.0.0"
3114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3115
+ checksum = "e8c5dfa5e08767553704aa0ffd9d9794d527103c736aba9854773851fd7497eb"
3116
+ dependencies = [
3117
+ "colored",
3118
+ "log",
3119
+ "time",
3120
+ "windows-sys 0.48.0",
3121
+ ]
3122
+
2771
3123
  [[package]]
2772
3124
  name = "slab"
2773
3125
  version = "0.4.9"
@@ -2779,26 +3131,68 @@ dependencies = [
2779
3131
 
2780
3132
  [[package]]
2781
3133
  name = "smallvec"
2782
- version = "1.14.0"
3134
+ version = "1.15.0"
2783
3135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2784
- checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3136
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2785
3137
 
2786
3138
  [[package]]
2787
3139
  name = "socket2"
2788
- version = "0.5.8"
3140
+ version = "0.5.9"
2789
3141
  source = "registry+https://github.com/rust-lang/crates.io-index"
2790
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3142
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2791
3143
  dependencies = [
2792
3144
  "libc",
2793
3145
  "windows-sys 0.52.0",
2794
3146
  ]
2795
3147
 
3148
+ [[package]]
3149
+ name = "spin"
3150
+ version = "0.9.8"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3153
+
2796
3154
  [[package]]
2797
3155
  name = "stable_deref_trait"
2798
3156
  version = "1.2.0"
2799
3157
  source = "registry+https://github.com/rust-lang/crates.io-index"
2800
3158
  checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2801
3159
 
3160
+ [[package]]
3161
+ name = "strsim"
3162
+ version = "0.8.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
3165
+
3166
+ [[package]]
3167
+ name = "strsim"
3168
+ version = "0.11.1"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3171
+
3172
+ [[package]]
3173
+ name = "structopt"
3174
+ version = "0.3.26"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
3177
+ dependencies = [
3178
+ "clap 2.34.0",
3179
+ "lazy_static",
3180
+ "structopt-derive",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "structopt-derive"
3185
+ version = "0.4.18"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
3188
+ dependencies = [
3189
+ "heck 0.3.3",
3190
+ "proc-macro-error",
3191
+ "proc-macro2",
3192
+ "quote",
3193
+ "syn 1.0.109",
3194
+ ]
3195
+
2802
3196
  [[package]]
2803
3197
  name = "subtle"
2804
3198
  version = "2.6.1"
@@ -2818,9 +3212,9 @@ dependencies = [
2818
3212
 
2819
3213
  [[package]]
2820
3214
  name = "syn"
2821
- version = "2.0.98"
3215
+ version = "2.0.100"
2822
3216
  source = "registry+https://github.com/rust-lang/crates.io-index"
2823
- checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
3217
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2824
3218
  dependencies = [
2825
3219
  "proc-macro2",
2826
3220
  "quote",
@@ -2844,7 +3238,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2844
3238
  dependencies = [
2845
3239
  "proc-macro2",
2846
3240
  "quote",
2847
- "syn 2.0.98",
3241
+ "syn 2.0.100",
2848
3242
  ]
2849
3243
 
2850
3244
  [[package]]
@@ -2861,27 +3255,6 @@ dependencies = [
2861
3255
  "windows 0.57.0",
2862
3256
  ]
2863
3257
 
2864
- [[package]]
2865
- name = "system-configuration"
2866
- version = "0.6.1"
2867
- source = "registry+https://github.com/rust-lang/crates.io-index"
2868
- checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2869
- dependencies = [
2870
- "bitflags 2.8.0",
2871
- "core-foundation 0.9.4",
2872
- "system-configuration-sys",
2873
- ]
2874
-
2875
- [[package]]
2876
- name = "system-configuration-sys"
2877
- version = "0.6.0"
2878
- source = "registry+https://github.com/rust-lang/crates.io-index"
2879
- checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2880
- dependencies = [
2881
- "core-foundation-sys",
2882
- "libc",
2883
- ]
2884
-
2885
3258
  [[package]]
2886
3259
  name = "tagptr"
2887
3260
  version = "0.2.0"
@@ -2896,18 +3269,26 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2896
3269
 
2897
3270
  [[package]]
2898
3271
  name = "tempfile"
2899
- version = "3.18.0"
3272
+ version = "3.19.1"
2900
3273
  source = "registry+https://github.com/rust-lang/crates.io-index"
2901
- checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567"
3274
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2902
3275
  dependencies = [
2903
- "cfg-if",
2904
3276
  "fastrand",
2905
- "getrandom 0.3.1",
3277
+ "getrandom 0.3.2",
2906
3278
  "once_cell",
2907
- "rustix 1.0.1",
3279
+ "rustix 1.0.5",
2908
3280
  "windows-sys 0.59.0",
2909
3281
  ]
2910
3282
 
3283
+ [[package]]
3284
+ name = "textwrap"
3285
+ version = "0.11.0"
3286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3287
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
3288
+ dependencies = [
3289
+ "unicode-width",
3290
+ ]
3291
+
2911
3292
  [[package]]
2912
3293
  name = "thiserror"
2913
3294
  version = "1.0.69"
@@ -2934,7 +3315,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2934
3315
  dependencies = [
2935
3316
  "proc-macro2",
2936
3317
  "quote",
2937
- "syn 2.0.98",
3318
+ "syn 2.0.100",
2938
3319
  ]
2939
3320
 
2940
3321
  [[package]]
@@ -2945,7 +3326,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2945
3326
  dependencies = [
2946
3327
  "proc-macro2",
2947
3328
  "quote",
2948
- "syn 2.0.98",
3329
+ "syn 2.0.100",
2949
3330
  ]
2950
3331
 
2951
3332
  [[package]]
@@ -2960,13 +3341,15 @@ dependencies = [
2960
3341
 
2961
3342
  [[package]]
2962
3343
  name = "time"
2963
- version = "0.3.37"
3344
+ version = "0.3.41"
2964
3345
  source = "registry+https://github.com/rust-lang/crates.io-index"
2965
- checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3346
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2966
3347
  dependencies = [
2967
3348
  "deranged",
2968
3349
  "itoa",
3350
+ "libc",
2969
3351
  "num-conv",
3352
+ "num_threads",
2970
3353
  "powerfmt",
2971
3354
  "serde",
2972
3355
  "time-core",
@@ -2975,15 +3358,15 @@ dependencies = [
2975
3358
 
2976
3359
  [[package]]
2977
3360
  name = "time-core"
2978
- version = "0.1.2"
3361
+ version = "0.1.4"
2979
3362
  source = "registry+https://github.com/rust-lang/crates.io-index"
2980
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3363
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2981
3364
 
2982
3365
  [[package]]
2983
3366
  name = "time-macros"
2984
- version = "0.2.19"
3367
+ version = "0.2.22"
2985
3368
  source = "registry+https://github.com/rust-lang/crates.io-index"
2986
- checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
3369
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2987
3370
  dependencies = [
2988
3371
  "num-conv",
2989
3372
  "time-core",
@@ -3016,9 +3399,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3016
3399
 
3017
3400
  [[package]]
3018
3401
  name = "tokio"
3019
- version = "1.44.1"
3402
+ version = "1.44.2"
3020
3403
  source = "registry+https://github.com/rust-lang/crates.io-index"
3021
- checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
3404
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
3022
3405
  dependencies = [
3023
3406
  "backtrace",
3024
3407
  "bytes",
@@ -3040,17 +3423,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3040
3423
  dependencies = [
3041
3424
  "proc-macro2",
3042
3425
  "quote",
3043
- "syn 2.0.98",
3044
- ]
3045
-
3046
- [[package]]
3047
- name = "tokio-native-tls"
3048
- version = "0.3.1"
3049
- source = "registry+https://github.com/rust-lang/crates.io-index"
3050
- checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3051
- dependencies = [
3052
- "native-tls",
3053
- "tokio",
3426
+ "syn 2.0.100",
3054
3427
  ]
3055
3428
 
3056
3429
  [[package]]
@@ -3064,52 +3437,37 @@ dependencies = [
3064
3437
  ]
3065
3438
 
3066
3439
  [[package]]
3067
- name = "tokio-rustls-acme"
3068
- version = "0.6.0"
3440
+ name = "tokio-stream"
3441
+ version = "0.1.17"
3069
3442
  source = "registry+https://github.com/rust-lang/crates.io-index"
3070
- checksum = "3184e8e292a828dd4bca5b2a60aba830ec5ed873a66c9ebb6e65038fa649e827"
3443
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3071
3444
  dependencies = [
3072
- "async-trait",
3073
- "base64",
3074
- "chrono",
3075
- "futures",
3076
- "log",
3077
- "num-bigint",
3078
- "pem",
3079
- "proc-macro2",
3080
- "rcgen",
3081
- "reqwest",
3082
- "ring",
3083
- "rustls",
3084
- "serde",
3085
- "serde_json",
3086
- "thiserror 2.0.12",
3087
- "time",
3445
+ "futures-core",
3446
+ "pin-project-lite",
3088
3447
  "tokio",
3089
- "tokio-rustls",
3090
- "webpki-roots",
3091
- "x509-parser",
3092
3448
  ]
3093
3449
 
3094
3450
  [[package]]
3095
- name = "tokio-stream"
3096
- version = "0.1.17"
3451
+ name = "tokio-tungstenite"
3452
+ version = "0.21.0"
3097
3453
  source = "registry+https://github.com/rust-lang/crates.io-index"
3098
- checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3454
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
3099
3455
  dependencies = [
3100
- "futures-core",
3101
- "pin-project-lite",
3456
+ "futures-util",
3457
+ "log",
3102
3458
  "tokio",
3459
+ "tungstenite",
3103
3460
  ]
3104
3461
 
3105
3462
  [[package]]
3106
3463
  name = "tokio-util"
3107
- version = "0.7.13"
3464
+ version = "0.7.14"
3108
3465
  source = "registry+https://github.com/rust-lang/crates.io-index"
3109
- checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3466
+ checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
3110
3467
  dependencies = [
3111
3468
  "bytes",
3112
3469
  "futures-core",
3470
+ "futures-io",
3113
3471
  "futures-sink",
3114
3472
  "pin-project-lite",
3115
3473
  "tokio",
@@ -3128,6 +3486,7 @@ dependencies = [
3128
3486
  "tokio",
3129
3487
  "tower-layer",
3130
3488
  "tower-service",
3489
+ "tracing",
3131
3490
  ]
3132
3491
 
3133
3492
  [[package]]
@@ -3148,6 +3507,7 @@ version = "0.1.41"
3148
3507
  source = "registry+https://github.com/rust-lang/crates.io-index"
3149
3508
  checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3150
3509
  dependencies = [
3510
+ "log",
3151
3511
  "pin-project-lite",
3152
3512
  "tracing-attributes",
3153
3513
  "tracing-core",
@@ -3173,7 +3533,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3173
3533
  dependencies = [
3174
3534
  "proc-macro2",
3175
3535
  "quote",
3176
- "syn 2.0.98",
3536
+ "syn 2.0.100",
3177
3537
  ]
3178
3538
 
3179
3539
  [[package]]
@@ -3234,17 +3594,54 @@ version = "0.2.5"
3234
3594
  source = "registry+https://github.com/rust-lang/crates.io-index"
3235
3595
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3236
3596
 
3597
+ [[package]]
3598
+ name = "tungstenite"
3599
+ version = "0.21.0"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
3602
+ dependencies = [
3603
+ "byteorder",
3604
+ "bytes",
3605
+ "data-encoding",
3606
+ "http 1.3.1",
3607
+ "httparse",
3608
+ "log",
3609
+ "rand 0.8.5",
3610
+ "sha1",
3611
+ "thiserror 1.0.69",
3612
+ "url",
3613
+ "utf-8",
3614
+ ]
3615
+
3237
3616
  [[package]]
3238
3617
  name = "typenum"
3239
3618
  version = "1.18.0"
3240
3619
  source = "registry+https://github.com/rust-lang/crates.io-index"
3241
3620
  checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3242
3621
 
3622
+ [[package]]
3623
+ name = "unicase"
3624
+ version = "2.8.1"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3627
+
3243
3628
  [[package]]
3244
3629
  name = "unicode-ident"
3245
- version = "1.0.17"
3630
+ version = "1.0.18"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3633
+
3634
+ [[package]]
3635
+ name = "unicode-segmentation"
3636
+ version = "1.12.0"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3639
+
3640
+ [[package]]
3641
+ name = "unicode-width"
3642
+ version = "0.1.14"
3246
3643
  source = "registry+https://github.com/rust-lang/crates.io-index"
3247
- checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
3644
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3248
3645
 
3249
3646
  [[package]]
3250
3647
  name = "unicode-xid"
@@ -3269,6 +3666,12 @@ dependencies = [
3269
3666
  "percent-encoding",
3270
3667
  ]
3271
3668
 
3669
+ [[package]]
3670
+ name = "utf-8"
3671
+ version = "0.7.6"
3672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3673
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3674
+
3272
3675
  [[package]]
3273
3676
  name = "utf16_iter"
3274
3677
  version = "1.0.5"
@@ -3281,13 +3684,19 @@ version = "1.0.4"
3281
3684
  source = "registry+https://github.com/rust-lang/crates.io-index"
3282
3685
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3283
3686
 
3687
+ [[package]]
3688
+ name = "utf8parse"
3689
+ version = "0.2.2"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3692
+
3284
3693
  [[package]]
3285
3694
  name = "uuid"
3286
3695
  version = "1.16.0"
3287
3696
  source = "registry+https://github.com/rust-lang/crates.io-index"
3288
3697
  checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3289
3698
  dependencies = [
3290
- "getrandom 0.3.1",
3699
+ "getrandom 0.3.2",
3291
3700
  ]
3292
3701
 
3293
3702
  [[package]]
@@ -3297,10 +3706,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
3706
  checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3298
3707
 
3299
3708
  [[package]]
3300
- name = "vcpkg"
3301
- version = "0.2.15"
3709
+ name = "vec_map"
3710
+ version = "0.8.2"
3302
3711
  source = "registry+https://github.com/rust-lang/crates.io-index"
3303
- checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3712
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3304
3713
 
3305
3714
  [[package]]
3306
3715
  name = "version_check"
@@ -3327,6 +3736,35 @@ dependencies = [
3327
3736
  "try-lock",
3328
3737
  ]
3329
3738
 
3739
+ [[package]]
3740
+ name = "warp"
3741
+ version = "0.3.7"
3742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3743
+ checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c"
3744
+ dependencies = [
3745
+ "bytes",
3746
+ "futures-channel",
3747
+ "futures-util",
3748
+ "headers",
3749
+ "http 0.2.12",
3750
+ "hyper 0.14.32",
3751
+ "log",
3752
+ "mime",
3753
+ "mime_guess",
3754
+ "multer",
3755
+ "percent-encoding",
3756
+ "pin-project",
3757
+ "scoped-tls",
3758
+ "serde",
3759
+ "serde_json",
3760
+ "serde_urlencoded",
3761
+ "tokio",
3762
+ "tokio-tungstenite",
3763
+ "tokio-util",
3764
+ "tower-service",
3765
+ "tracing",
3766
+ ]
3767
+
3330
3768
  [[package]]
3331
3769
  name = "wasi"
3332
3770
  version = "0.11.0+wasi-snapshot-preview1"
@@ -3335,9 +3773,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3335
3773
 
3336
3774
  [[package]]
3337
3775
  name = "wasi"
3338
- version = "0.13.3+wasi-0.2.2"
3776
+ version = "0.14.2+wasi-0.2.4"
3339
3777
  source = "registry+https://github.com/rust-lang/crates.io-index"
3340
- checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
3778
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3341
3779
  dependencies = [
3342
3780
  "wit-bindgen-rt",
3343
3781
  ]
@@ -3364,7 +3802,7 @@ dependencies = [
3364
3802
  "log",
3365
3803
  "proc-macro2",
3366
3804
  "quote",
3367
- "syn 2.0.98",
3805
+ "syn 2.0.100",
3368
3806
  "wasm-bindgen-shared",
3369
3807
  ]
3370
3808
 
@@ -3399,7 +3837,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3399
3837
  dependencies = [
3400
3838
  "proc-macro2",
3401
3839
  "quote",
3402
- "syn 2.0.98",
3840
+ "syn 2.0.100",
3403
3841
  "wasm-bindgen-backend",
3404
3842
  "wasm-bindgen-shared",
3405
3843
  ]
@@ -3518,15 +3956,6 @@ dependencies = [
3518
3956
  "windows-targets 0.52.6",
3519
3957
  ]
3520
3958
 
3521
- [[package]]
3522
- name = "windows-core"
3523
- version = "0.52.0"
3524
- source = "registry+https://github.com/rust-lang/crates.io-index"
3525
- checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3526
- dependencies = [
3527
- "windows-targets 0.52.6",
3528
- ]
3529
-
3530
3959
  [[package]]
3531
3960
  name = "windows-core"
3532
3961
  version = "0.57.0"
@@ -3552,6 +3981,19 @@ dependencies = [
3552
3981
  "windows-targets 0.52.6",
3553
3982
  ]
3554
3983
 
3984
+ [[package]]
3985
+ name = "windows-core"
3986
+ version = "0.61.0"
3987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3988
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3989
+ dependencies = [
3990
+ "windows-implement 0.60.0",
3991
+ "windows-interface 0.59.1",
3992
+ "windows-link",
3993
+ "windows-result 0.3.2",
3994
+ "windows-strings 0.4.0",
3995
+ ]
3996
+
3555
3997
  [[package]]
3556
3998
  name = "windows-implement"
3557
3999
  version = "0.57.0"
@@ -3560,7 +4002,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3560
4002
  dependencies = [
3561
4003
  "proc-macro2",
3562
4004
  "quote",
3563
- "syn 2.0.98",
4005
+ "syn 2.0.100",
3564
4006
  ]
3565
4007
 
3566
4008
  [[package]]
@@ -3571,7 +4013,18 @@ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
3571
4013
  dependencies = [
3572
4014
  "proc-macro2",
3573
4015
  "quote",
3574
- "syn 2.0.98",
4016
+ "syn 2.0.100",
4017
+ ]
4018
+
4019
+ [[package]]
4020
+ name = "windows-implement"
4021
+ version = "0.60.0"
4022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4023
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4024
+ dependencies = [
4025
+ "proc-macro2",
4026
+ "quote",
4027
+ "syn 2.0.100",
3575
4028
  ]
3576
4029
 
3577
4030
  [[package]]
@@ -3582,7 +4035,7 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3582
4035
  dependencies = [
3583
4036
  "proc-macro2",
3584
4037
  "quote",
3585
- "syn 2.0.98",
4038
+ "syn 2.0.100",
3586
4039
  ]
3587
4040
 
3588
4041
  [[package]]
@@ -3593,14 +4046,25 @@ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
3593
4046
  dependencies = [
3594
4047
  "proc-macro2",
3595
4048
  "quote",
3596
- "syn 2.0.98",
4049
+ "syn 2.0.100",
4050
+ ]
4051
+
4052
+ [[package]]
4053
+ name = "windows-interface"
4054
+ version = "0.59.1"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4057
+ dependencies = [
4058
+ "proc-macro2",
4059
+ "quote",
4060
+ "syn 2.0.100",
3597
4061
  ]
3598
4062
 
3599
4063
  [[package]]
3600
4064
  name = "windows-link"
3601
- version = "0.1.0"
4065
+ version = "0.1.1"
3602
4066
  source = "registry+https://github.com/rust-lang/crates.io-index"
3603
- checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
4067
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3604
4068
 
3605
4069
  [[package]]
3606
4070
  name = "windows-registry"
@@ -3608,7 +4072,7 @@ version = "0.4.0"
3608
4072
  source = "registry+https://github.com/rust-lang/crates.io-index"
3609
4073
  checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3610
4074
  dependencies = [
3611
- "windows-result 0.3.1",
4075
+ "windows-result 0.3.2",
3612
4076
  "windows-strings 0.3.1",
3613
4077
  "windows-targets 0.53.0",
3614
4078
  ]
@@ -3633,9 +4097,9 @@ dependencies = [
3633
4097
 
3634
4098
  [[package]]
3635
4099
  name = "windows-result"
3636
- version = "0.3.1"
4100
+ version = "0.3.2"
3637
4101
  source = "registry+https://github.com/rust-lang/crates.io-index"
3638
- checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189"
4102
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3639
4103
  dependencies = [
3640
4104
  "windows-link",
3641
4105
  ]
@@ -3659,6 +4123,24 @@ dependencies = [
3659
4123
  "windows-link",
3660
4124
  ]
3661
4125
 
4126
+ [[package]]
4127
+ name = "windows-strings"
4128
+ version = "0.4.0"
4129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4130
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4131
+ dependencies = [
4132
+ "windows-link",
4133
+ ]
4134
+
4135
+ [[package]]
4136
+ name = "windows-sys"
4137
+ version = "0.48.0"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4140
+ dependencies = [
4141
+ "windows-targets 0.48.5",
4142
+ ]
4143
+
3662
4144
  [[package]]
3663
4145
  name = "windows-sys"
3664
4146
  version = "0.52.0"
@@ -3677,6 +4159,21 @@ dependencies = [
3677
4159
  "windows-targets 0.52.6",
3678
4160
  ]
3679
4161
 
4162
+ [[package]]
4163
+ name = "windows-targets"
4164
+ version = "0.48.5"
4165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4166
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4167
+ dependencies = [
4168
+ "windows_aarch64_gnullvm 0.48.5",
4169
+ "windows_aarch64_msvc 0.48.5",
4170
+ "windows_i686_gnu 0.48.5",
4171
+ "windows_i686_msvc 0.48.5",
4172
+ "windows_x86_64_gnu 0.48.5",
4173
+ "windows_x86_64_gnullvm 0.48.5",
4174
+ "windows_x86_64_msvc 0.48.5",
4175
+ ]
4176
+
3680
4177
  [[package]]
3681
4178
  name = "windows-targets"
3682
4179
  version = "0.52.6"
@@ -3709,6 +4206,12 @@ dependencies = [
3709
4206
  "windows_x86_64_msvc 0.53.0",
3710
4207
  ]
3711
4208
 
4209
+ [[package]]
4210
+ name = "windows_aarch64_gnullvm"
4211
+ version = "0.48.5"
4212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4213
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4214
+
3712
4215
  [[package]]
3713
4216
  name = "windows_aarch64_gnullvm"
3714
4217
  version = "0.52.6"
@@ -3721,6 +4224,12 @@ version = "0.53.0"
3721
4224
  source = "registry+https://github.com/rust-lang/crates.io-index"
3722
4225
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3723
4226
 
4227
+ [[package]]
4228
+ name = "windows_aarch64_msvc"
4229
+ version = "0.48.5"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4232
+
3724
4233
  [[package]]
3725
4234
  name = "windows_aarch64_msvc"
3726
4235
  version = "0.52.6"
@@ -3733,6 +4242,12 @@ version = "0.53.0"
3733
4242
  source = "registry+https://github.com/rust-lang/crates.io-index"
3734
4243
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3735
4244
 
4245
+ [[package]]
4246
+ name = "windows_i686_gnu"
4247
+ version = "0.48.5"
4248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4249
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4250
+
3736
4251
  [[package]]
3737
4252
  name = "windows_i686_gnu"
3738
4253
  version = "0.52.6"
@@ -3757,6 +4272,12 @@ version = "0.53.0"
3757
4272
  source = "registry+https://github.com/rust-lang/crates.io-index"
3758
4273
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3759
4274
 
4275
+ [[package]]
4276
+ name = "windows_i686_msvc"
4277
+ version = "0.48.5"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4280
+
3760
4281
  [[package]]
3761
4282
  name = "windows_i686_msvc"
3762
4283
  version = "0.52.6"
@@ -3769,6 +4290,12 @@ version = "0.53.0"
3769
4290
  source = "registry+https://github.com/rust-lang/crates.io-index"
3770
4291
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3771
4292
 
4293
+ [[package]]
4294
+ name = "windows_x86_64_gnu"
4295
+ version = "0.48.5"
4296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4297
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4298
+
3772
4299
  [[package]]
3773
4300
  name = "windows_x86_64_gnu"
3774
4301
  version = "0.52.6"
@@ -3781,6 +4308,12 @@ version = "0.53.0"
3781
4308
  source = "registry+https://github.com/rust-lang/crates.io-index"
3782
4309
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3783
4310
 
4311
+ [[package]]
4312
+ name = "windows_x86_64_gnullvm"
4313
+ version = "0.48.5"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4316
+
3784
4317
  [[package]]
3785
4318
  name = "windows_x86_64_gnullvm"
3786
4319
  version = "0.52.6"
@@ -3793,6 +4326,12 @@ version = "0.53.0"
3793
4326
  source = "registry+https://github.com/rust-lang/crates.io-index"
3794
4327
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3795
4328
 
4329
+ [[package]]
4330
+ name = "windows_x86_64_msvc"
4331
+ version = "0.48.5"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4334
+
3796
4335
  [[package]]
3797
4336
  name = "windows_x86_64_msvc"
3798
4337
  version = "0.52.6"
@@ -3807,11 +4346,11 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3807
4346
 
3808
4347
  [[package]]
3809
4348
  name = "wit-bindgen-rt"
3810
- version = "0.33.0"
4349
+ version = "0.39.0"
3811
4350
  source = "registry+https://github.com/rust-lang/crates.io-index"
3812
- checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
4351
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3813
4352
  dependencies = [
3814
- "bitflags 2.8.0",
4353
+ "bitflags 2.9.0",
3815
4354
  ]
3816
4355
 
3817
4356
  [[package]]
@@ -3873,28 +4412,28 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
3873
4412
  dependencies = [
3874
4413
  "proc-macro2",
3875
4414
  "quote",
3876
- "syn 2.0.98",
4415
+ "syn 2.0.100",
3877
4416
  "synstructure",
3878
4417
  ]
3879
4418
 
3880
4419
  [[package]]
3881
4420
  name = "zerocopy"
3882
- version = "0.8.23"
4421
+ version = "0.8.24"
3883
4422
  source = "registry+https://github.com/rust-lang/crates.io-index"
3884
- checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6"
4423
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3885
4424
  dependencies = [
3886
4425
  "zerocopy-derive",
3887
4426
  ]
3888
4427
 
3889
4428
  [[package]]
3890
4429
  name = "zerocopy-derive"
3891
- version = "0.8.23"
4430
+ version = "0.8.24"
3892
4431
  source = "registry+https://github.com/rust-lang/crates.io-index"
3893
- checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154"
4432
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3894
4433
  dependencies = [
3895
4434
  "proc-macro2",
3896
4435
  "quote",
3897
- "syn 2.0.98",
4436
+ "syn 2.0.100",
3898
4437
  ]
3899
4438
 
3900
4439
  [[package]]
@@ -3914,7 +4453,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3914
4453
  dependencies = [
3915
4454
  "proc-macro2",
3916
4455
  "quote",
3917
- "syn 2.0.98",
4456
+ "syn 2.0.100",
3918
4457
  "synstructure",
3919
4458
  ]
3920
4459
 
@@ -3943,7 +4482,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3943
4482
  dependencies = [
3944
4483
  "proc-macro2",
3945
4484
  "quote",
3946
- "syn 2.0.98",
4485
+ "syn 2.0.100",
3947
4486
  ]
3948
4487
 
3949
4488
  [[package]]