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
@@ -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",
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",
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",
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",
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",
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",
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",
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",
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,19 +1638,19 @@ 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-server"
1358
- version = "0.1.18"
1647
+ version = "0.1.20"
1359
1648
  dependencies = [
1360
1649
  "argon2",
1361
1650
  "async-channel",
1362
1651
  "async-compression",
1363
1652
  "async-trait",
1364
- "base64",
1653
+ "base64 0.22.1",
1365
1654
  "bcrypt",
1366
1655
  "bytes",
1367
1656
  "chrono",
@@ -1372,12 +1661,13 @@ dependencies = [
1372
1661
  "fs2",
1373
1662
  "futures",
1374
1663
  "globset",
1375
- "http",
1664
+ "http 1.3.1",
1376
1665
  "http-body-util",
1377
1666
  "httparse",
1378
1667
  "httpdate",
1379
- "hyper",
1668
+ "hyper 1.6.0",
1380
1669
  "hyper-util",
1670
+ "itsi_acme",
1381
1671
  "itsi_error",
1382
1672
  "itsi_rb_helpers",
1383
1673
  "itsi_tracing",
@@ -1408,13 +1698,46 @@ dependencies = [
1408
1698
  "tempfile",
1409
1699
  "tokio",
1410
1700
  "tokio-rustls",
1411
- "tokio-rustls-acme",
1412
1701
  "tokio-stream",
1413
1702
  "tokio-util",
1414
1703
  "tracing",
1415
1704
  "url",
1416
1705
  ]
1417
1706
 
1707
+ [[package]]
1708
+ name = "itsi_acme"
1709
+ version = "0.1.0"
1710
+ dependencies = [
1711
+ "async-trait",
1712
+ "axum",
1713
+ "axum-server",
1714
+ "base64 0.22.1",
1715
+ "chrono",
1716
+ "clap 4.5.36",
1717
+ "futures",
1718
+ "log",
1719
+ "num-bigint",
1720
+ "pem",
1721
+ "proc-macro2",
1722
+ "rcgen",
1723
+ "reqwest",
1724
+ "ring",
1725
+ "rustls",
1726
+ "serde",
1727
+ "serde_json",
1728
+ "simple_logger",
1729
+ "structopt",
1730
+ "thiserror 2.0.12",
1731
+ "time",
1732
+ "tokio",
1733
+ "tokio-rustls",
1734
+ "tokio-stream",
1735
+ "tokio-util",
1736
+ "warp",
1737
+ "webpki-roots",
1738
+ "x509-parser",
1739
+ ]
1740
+
1418
1741
  [[package]]
1419
1742
  name = "itsi_error"
1420
1743
  version = "0.1.0"
@@ -1451,10 +1774,11 @@ dependencies = [
1451
1774
 
1452
1775
  [[package]]
1453
1776
  name = "jobserver"
1454
- version = "0.1.32"
1777
+ version = "0.1.33"
1455
1778
  source = "registry+https://github.com/rust-lang/crates.io-index"
1456
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1779
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1457
1780
  dependencies = [
1781
+ "getrandom 0.3.2",
1458
1782
  "libc",
1459
1783
  ]
1460
1784
 
@@ -1474,7 +1798,7 @@ version = "9.3.1"
1474
1798
  source = "registry+https://github.com/rust-lang/crates.io-index"
1475
1799
  checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1476
1800
  dependencies = [
1477
- "base64",
1801
+ "base64 0.22.1",
1478
1802
  "js-sys",
1479
1803
  "pem",
1480
1804
  "ring",
@@ -1517,9 +1841,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1517
1841
 
1518
1842
  [[package]]
1519
1843
  name = "libc"
1520
- version = "0.2.170"
1844
+ version = "0.2.171"
1521
1845
  source = "registry+https://github.com/rust-lang/crates.io-index"
1522
- checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
1846
+ checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1523
1847
 
1524
1848
  [[package]]
1525
1849
  name = "libloading"
@@ -1537,7 +1861,7 @@ version = "0.1.3"
1537
1861
  source = "registry+https://github.com/rust-lang/crates.io-index"
1538
1862
  checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1539
1863
  dependencies = [
1540
- "bitflags 2.8.0",
1864
+ "bitflags 2.9.0",
1541
1865
  "libc",
1542
1866
  "redox_syscall",
1543
1867
  ]
@@ -1550,9 +1874,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1550
1874
 
1551
1875
  [[package]]
1552
1876
  name = "linux-raw-sys"
1553
- version = "0.9.2"
1877
+ version = "0.9.4"
1554
1878
  source = "registry+https://github.com/rust-lang/crates.io-index"
1555
- checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
1879
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1556
1880
 
1557
1881
  [[package]]
1558
1882
  name = "litemap"
@@ -1572,9 +1896,9 @@ dependencies = [
1572
1896
 
1573
1897
  [[package]]
1574
1898
  name = "log"
1575
- version = "0.4.26"
1899
+ version = "0.4.27"
1576
1900
  source = "registry+https://github.com/rust-lang/crates.io-index"
1577
- checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
1901
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1578
1902
 
1579
1903
  [[package]]
1580
1904
  name = "loom"
@@ -1610,7 +1934,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
1610
1934
  dependencies = [
1611
1935
  "proc-macro2",
1612
1936
  "quote",
1613
- "syn",
1937
+ "syn 2.0.100",
1614
1938
  ]
1615
1939
 
1616
1940
  [[package]]
@@ -1622,6 +1946,12 @@ dependencies = [
1622
1946
  "regex-automata 0.1.10",
1623
1947
  ]
1624
1948
 
1949
+ [[package]]
1950
+ name = "matchit"
1951
+ version = "0.7.3"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1954
+
1625
1955
  [[package]]
1626
1956
  name = "md5"
1627
1957
  version = "0.7.0"
@@ -1649,6 +1979,16 @@ version = "0.3.17"
1649
1979
  source = "registry+https://github.com/rust-lang/crates.io-index"
1650
1980
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1651
1981
 
1982
+ [[package]]
1983
+ name = "mime_guess"
1984
+ version = "2.0.5"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1987
+ dependencies = [
1988
+ "mime",
1989
+ "unicase",
1990
+ ]
1991
+
1652
1992
  [[package]]
1653
1993
  name = "minimal-lexical"
1654
1994
  version = "0.2.1"
@@ -1657,9 +1997,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1657
1997
 
1658
1998
  [[package]]
1659
1999
  name = "miniz_oxide"
1660
- version = "0.8.5"
2000
+ version = "0.8.8"
1661
2001
  source = "registry+https://github.com/rust-lang/crates.io-index"
1662
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2002
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1663
2003
  dependencies = [
1664
2004
  "adler2",
1665
2005
  ]
@@ -1696,20 +2036,21 @@ dependencies = [
1696
2036
  ]
1697
2037
 
1698
2038
  [[package]]
1699
- name = "native-tls"
1700
- version = "0.2.14"
2039
+ name = "multer"
2040
+ version = "2.1.0"
1701
2041
  source = "registry+https://github.com/rust-lang/crates.io-index"
1702
- checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
2042
+ checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
1703
2043
  dependencies = [
1704
- "libc",
2044
+ "bytes",
2045
+ "encoding_rs",
2046
+ "futures-util",
2047
+ "http 0.2.12",
2048
+ "httparse",
1705
2049
  "log",
1706
- "openssl",
1707
- "openssl-probe",
1708
- "openssl-sys",
1709
- "schannel",
1710
- "security-framework 2.11.1",
1711
- "security-framework-sys",
1712
- "tempfile",
2050
+ "memchr",
2051
+ "mime",
2052
+ "spin",
2053
+ "version_check",
1713
2054
  ]
1714
2055
 
1715
2056
  [[package]]
@@ -1718,7 +2059,7 @@ version = "0.29.0"
1718
2059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1719
2060
  checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1720
2061
  dependencies = [
1721
- "bitflags 2.8.0",
2062
+ "bitflags 2.9.0",
1722
2063
  "cfg-if",
1723
2064
  "cfg_aliases",
1724
2065
  "libc",
@@ -1741,7 +2082,7 @@ version = "8.0.0"
1741
2082
  source = "registry+https://github.com/rust-lang/crates.io-index"
1742
2083
  checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
1743
2084
  dependencies = [
1744
- "bitflags 2.8.0",
2085
+ "bitflags 2.9.0",
1745
2086
  "filetime",
1746
2087
  "fsevent-sys",
1747
2088
  "inotify",
@@ -1823,6 +2164,15 @@ dependencies = [
1823
2164
  "libc",
1824
2165
  ]
1825
2166
 
2167
+ [[package]]
2168
+ name = "num_threads"
2169
+ version = "0.1.7"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2172
+ dependencies = [
2173
+ "libc",
2174
+ ]
2175
+
1826
2176
  [[package]]
1827
2177
  name = "object"
1828
2178
  version = "0.36.7"
@@ -1843,35 +2193,9 @@ dependencies = [
1843
2193
 
1844
2194
  [[package]]
1845
2195
  name = "once_cell"
1846
- version = "1.20.3"
2196
+ version = "1.21.3"
1847
2197
  source = "registry+https://github.com/rust-lang/crates.io-index"
1848
- checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
1849
-
1850
- [[package]]
1851
- name = "openssl"
1852
- version = "0.10.71"
1853
- source = "registry+https://github.com/rust-lang/crates.io-index"
1854
- checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd"
1855
- dependencies = [
1856
- "bitflags 2.8.0",
1857
- "cfg-if",
1858
- "foreign-types",
1859
- "libc",
1860
- "once_cell",
1861
- "openssl-macros",
1862
- "openssl-sys",
1863
- ]
1864
-
1865
- [[package]]
1866
- name = "openssl-macros"
1867
- version = "0.1.1"
1868
- source = "registry+https://github.com/rust-lang/crates.io-index"
1869
- checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1870
- dependencies = [
1871
- "proc-macro2",
1872
- "quote",
1873
- "syn",
1874
- ]
2198
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1875
2199
 
1876
2200
  [[package]]
1877
2201
  name = "openssl-probe"
@@ -1879,18 +2203,6 @@ version = "0.1.6"
1879
2203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1880
2204
  checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1881
2205
 
1882
- [[package]]
1883
- name = "openssl-sys"
1884
- version = "0.9.106"
1885
- source = "registry+https://github.com/rust-lang/crates.io-index"
1886
- checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd"
1887
- dependencies = [
1888
- "cc",
1889
- "libc",
1890
- "pkg-config",
1891
- "vcpkg",
1892
- ]
1893
-
1894
2206
  [[package]]
1895
2207
  name = "option-ext"
1896
2208
  version = "0.2.0"
@@ -1943,19 +2255,13 @@ dependencies = [
1943
2255
  "subtle",
1944
2256
  ]
1945
2257
 
1946
- [[package]]
1947
- name = "paste"
1948
- version = "1.0.15"
1949
- source = "registry+https://github.com/rust-lang/crates.io-index"
1950
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1951
-
1952
2258
  [[package]]
1953
2259
  name = "pem"
1954
2260
  version = "3.0.5"
1955
2261
  source = "registry+https://github.com/rust-lang/crates.io-index"
1956
2262
  checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1957
2263
  dependencies = [
1958
- "base64",
2264
+ "base64 0.22.1",
1959
2265
  "serde",
1960
2266
  ]
1961
2267
 
@@ -1967,22 +2273,22 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1967
2273
 
1968
2274
  [[package]]
1969
2275
  name = "pin-project"
1970
- version = "1.1.9"
2276
+ version = "1.1.10"
1971
2277
  source = "registry+https://github.com/rust-lang/crates.io-index"
1972
- checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
2278
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1973
2279
  dependencies = [
1974
2280
  "pin-project-internal",
1975
2281
  ]
1976
2282
 
1977
2283
  [[package]]
1978
2284
  name = "pin-project-internal"
1979
- version = "1.1.9"
2285
+ version = "1.1.10"
1980
2286
  source = "registry+https://github.com/rust-lang/crates.io-index"
1981
- checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
2287
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1982
2288
  dependencies = [
1983
2289
  "proc-macro2",
1984
2290
  "quote",
1985
- "syn",
2291
+ "syn 2.0.100",
1986
2292
  ]
1987
2293
 
1988
2294
  [[package]]
@@ -2026,30 +2332,55 @@ dependencies = [
2026
2332
 
2027
2333
  [[package]]
2028
2334
  name = "prettyplease"
2029
- version = "0.2.29"
2335
+ version = "0.2.32"
2030
2336
  source = "registry+https://github.com/rust-lang/crates.io-index"
2031
- checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2337
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2032
2338
  dependencies = [
2033
2339
  "proc-macro2",
2034
- "syn",
2340
+ "syn 2.0.100",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "proc-macro-error"
2345
+ version = "1.0.4"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2348
+ dependencies = [
2349
+ "proc-macro-error-attr",
2350
+ "proc-macro2",
2351
+ "quote",
2352
+ "syn 1.0.109",
2353
+ "version_check",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "proc-macro-error-attr"
2358
+ version = "1.0.4"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2361
+ dependencies = [
2362
+ "proc-macro2",
2363
+ "quote",
2364
+ "version_check",
2035
2365
  ]
2036
2366
 
2037
2367
  [[package]]
2038
2368
  name = "proc-macro2"
2039
- version = "1.0.93"
2369
+ version = "1.0.94"
2040
2370
  source = "registry+https://github.com/rust-lang/crates.io-index"
2041
- checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2371
+ checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2042
2372
  dependencies = [
2043
2373
  "unicode-ident",
2044
2374
  ]
2045
2375
 
2046
2376
  [[package]]
2047
2377
  name = "quinn"
2048
- version = "0.11.6"
2378
+ version = "0.11.7"
2049
2379
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2380
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2051
2381
  dependencies = [
2052
2382
  "bytes",
2383
+ "cfg_aliases",
2053
2384
  "pin-project-lite",
2054
2385
  "quinn-proto",
2055
2386
  "quinn-udp",
@@ -2059,17 +2390,18 @@ dependencies = [
2059
2390
  "thiserror 2.0.12",
2060
2391
  "tokio",
2061
2392
  "tracing",
2393
+ "web-time",
2062
2394
  ]
2063
2395
 
2064
2396
  [[package]]
2065
2397
  name = "quinn-proto"
2066
- version = "0.11.9"
2398
+ version = "0.11.10"
2067
2399
  source = "registry+https://github.com/rust-lang/crates.io-index"
2068
- checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2400
+ checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2069
2401
  dependencies = [
2070
2402
  "bytes",
2071
- "getrandom 0.2.15",
2072
- "rand 0.8.5",
2403
+ "getrandom 0.3.2",
2404
+ "rand 0.9.0",
2073
2405
  "ring",
2074
2406
  "rustc-hash 2.1.1",
2075
2407
  "rustls",
@@ -2083,9 +2415,9 @@ dependencies = [
2083
2415
 
2084
2416
  [[package]]
2085
2417
  name = "quinn-udp"
2086
- version = "0.5.10"
2418
+ version = "0.5.11"
2087
2419
  source = "registry+https://github.com/rust-lang/crates.io-index"
2088
- checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
2420
+ checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
2089
2421
  dependencies = [
2090
2422
  "cfg_aliases",
2091
2423
  "libc",
@@ -2097,13 +2429,19 @@ dependencies = [
2097
2429
 
2098
2430
  [[package]]
2099
2431
  name = "quote"
2100
- version = "1.0.38"
2432
+ version = "1.0.40"
2101
2433
  source = "registry+https://github.com/rust-lang/crates.io-index"
2102
- checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2434
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2103
2435
  dependencies = [
2104
2436
  "proc-macro2",
2105
2437
  ]
2106
2438
 
2439
+ [[package]]
2440
+ name = "r-efi"
2441
+ version = "5.2.0"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2444
+
2107
2445
  [[package]]
2108
2446
  name = "r2d2"
2109
2447
  version = "0.8.10"
@@ -2172,7 +2510,7 @@ version = "0.9.3"
2172
2510
  source = "registry+https://github.com/rust-lang/crates.io-index"
2173
2511
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2174
2512
  dependencies = [
2175
- "getrandom 0.3.1",
2513
+ "getrandom 0.3.2",
2176
2514
  ]
2177
2515
 
2178
2516
  [[package]]
@@ -2216,7 +2554,7 @@ dependencies = [
2216
2554
  "quote",
2217
2555
  "regex",
2218
2556
  "shell-words",
2219
- "syn",
2557
+ "syn 2.0.100",
2220
2558
  ]
2221
2559
 
2222
2560
  [[package]]
@@ -2241,9 +2579,9 @@ dependencies = [
2241
2579
 
2242
2580
  [[package]]
2243
2581
  name = "redis"
2244
- version = "0.29.2"
2582
+ version = "0.29.5"
2245
2583
  source = "registry+https://github.com/rust-lang/crates.io-index"
2246
- checksum = "b110459d6e323b7cda23980c46c77157601199c9da6241552b284cd565a7a133"
2584
+ checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f"
2247
2585
  dependencies = [
2248
2586
  "arc-swap",
2249
2587
  "backon",
@@ -2269,11 +2607,11 @@ dependencies = [
2269
2607
 
2270
2608
  [[package]]
2271
2609
  name = "redox_syscall"
2272
- version = "0.5.9"
2610
+ version = "0.5.11"
2273
2611
  source = "registry+https://github.com/rust-lang/crates.io-index"
2274
- checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
2612
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2275
2613
  dependencies = [
2276
- "bitflags 2.8.0",
2614
+ "bitflags 2.9.0",
2277
2615
  ]
2278
2616
 
2279
2617
  [[package]]
@@ -2337,24 +2675,20 @@ version = "0.12.15"
2337
2675
  source = "registry+https://github.com/rust-lang/crates.io-index"
2338
2676
  checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2339
2677
  dependencies = [
2340
- "base64",
2678
+ "base64 0.22.1",
2341
2679
  "bytes",
2342
- "encoding_rs",
2343
2680
  "futures-core",
2344
2681
  "futures-util",
2345
- "h2",
2346
- "http",
2347
- "http-body",
2682
+ "http 1.3.1",
2683
+ "http-body 1.0.1",
2348
2684
  "http-body-util",
2349
- "hyper",
2685
+ "hyper 1.6.0",
2350
2686
  "hyper-rustls",
2351
- "hyper-tls",
2352
2687
  "hyper-util",
2353
2688
  "ipnet",
2354
2689
  "js-sys",
2355
2690
  "log",
2356
2691
  "mime",
2357
- "native-tls",
2358
2692
  "once_cell",
2359
2693
  "percent-encoding",
2360
2694
  "pin-project-lite",
@@ -2366,9 +2700,7 @@ dependencies = [
2366
2700
  "serde_json",
2367
2701
  "serde_urlencoded",
2368
2702
  "sync_wrapper",
2369
- "system-configuration",
2370
2703
  "tokio",
2371
- "tokio-native-tls",
2372
2704
  "tokio-rustls",
2373
2705
  "tokio-util",
2374
2706
  "tower",
@@ -2438,7 +2770,7 @@ version = "0.38.44"
2438
2770
  source = "registry+https://github.com/rust-lang/crates.io-index"
2439
2771
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2440
2772
  dependencies = [
2441
- "bitflags 2.8.0",
2773
+ "bitflags 2.9.0",
2442
2774
  "errno",
2443
2775
  "libc",
2444
2776
  "linux-raw-sys 0.4.15",
@@ -2447,22 +2779,22 @@ dependencies = [
2447
2779
 
2448
2780
  [[package]]
2449
2781
  name = "rustix"
2450
- version = "1.0.1"
2782
+ version = "1.0.5"
2451
2783
  source = "registry+https://github.com/rust-lang/crates.io-index"
2452
- checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657"
2784
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2453
2785
  dependencies = [
2454
- "bitflags 2.8.0",
2786
+ "bitflags 2.9.0",
2455
2787
  "errno",
2456
2788
  "libc",
2457
- "linux-raw-sys 0.9.2",
2789
+ "linux-raw-sys 0.9.4",
2458
2790
  "windows-sys 0.59.0",
2459
2791
  ]
2460
2792
 
2461
2793
  [[package]]
2462
2794
  name = "rustls"
2463
- version = "0.23.23"
2795
+ version = "0.23.26"
2464
2796
  source = "registry+https://github.com/rust-lang/crates.io-index"
2465
- checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
2797
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2466
2798
  dependencies = [
2467
2799
  "aws-lc-rs",
2468
2800
  "log",
@@ -2483,7 +2815,7 @@ dependencies = [
2483
2815
  "openssl-probe",
2484
2816
  "rustls-pki-types",
2485
2817
  "schannel",
2486
- "security-framework 3.2.0",
2818
+ "security-framework",
2487
2819
  ]
2488
2820
 
2489
2821
  [[package]]
@@ -2506,9 +2838,9 @@ dependencies = [
2506
2838
 
2507
2839
  [[package]]
2508
2840
  name = "rustls-webpki"
2509
- version = "0.102.8"
2841
+ version = "0.103.1"
2510
2842
  source = "registry+https://github.com/rust-lang/crates.io-index"
2511
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2843
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2512
2844
  dependencies = [
2513
2845
  "aws-lc-rs",
2514
2846
  "ring",
@@ -2524,9 +2856,9 @@ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2524
2856
 
2525
2857
  [[package]]
2526
2858
  name = "ryu"
2527
- version = "1.0.19"
2859
+ version = "1.0.20"
2528
2860
  source = "registry+https://github.com/rust-lang/crates.io-index"
2529
- checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
2861
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2530
2862
 
2531
2863
  [[package]]
2532
2864
  name = "same-file"
@@ -2567,27 +2899,14 @@ version = "1.2.0"
2567
2899
  source = "registry+https://github.com/rust-lang/crates.io-index"
2568
2900
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2569
2901
 
2570
- [[package]]
2571
- name = "security-framework"
2572
- version = "2.11.1"
2573
- source = "registry+https://github.com/rust-lang/crates.io-index"
2574
- checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2575
- dependencies = [
2576
- "bitflags 2.8.0",
2577
- "core-foundation 0.9.4",
2578
- "core-foundation-sys",
2579
- "libc",
2580
- "security-framework-sys",
2581
- ]
2582
-
2583
2902
  [[package]]
2584
2903
  name = "security-framework"
2585
2904
  version = "3.2.0"
2586
2905
  source = "registry+https://github.com/rust-lang/crates.io-index"
2587
2906
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2588
2907
  dependencies = [
2589
- "bitflags 2.8.0",
2590
- "core-foundation 0.10.0",
2908
+ "bitflags 2.9.0",
2909
+ "core-foundation",
2591
2910
  "core-foundation-sys",
2592
2911
  "libc",
2593
2912
  "security-framework-sys",
@@ -2611,9 +2930,9 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2611
2930
 
2612
2931
  [[package]]
2613
2932
  name = "seq-macro"
2614
- version = "0.3.5"
2933
+ version = "0.3.6"
2615
2934
  source = "registry+https://github.com/rust-lang/crates.io-index"
2616
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
2935
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2617
2936
 
2618
2937
  [[package]]
2619
2938
  name = "serde"
@@ -2632,7 +2951,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2632
2951
  dependencies = [
2633
2952
  "proc-macro2",
2634
2953
  "quote",
2635
- "syn",
2954
+ "syn 2.0.100",
2636
2955
  ]
2637
2956
 
2638
2957
  [[package]]
@@ -2658,6 +2977,16 @@ dependencies = [
2658
2977
  "tap",
2659
2978
  ]
2660
2979
 
2980
+ [[package]]
2981
+ name = "serde_path_to_error"
2982
+ version = "0.1.17"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
2985
+ dependencies = [
2986
+ "itoa",
2987
+ "serde",
2988
+ ]
2989
+
2661
2990
  [[package]]
2662
2991
  name = "serde_urlencoded"
2663
2992
  version = "0.7.1"
@@ -2682,6 +3011,17 @@ dependencies = [
2682
3011
  "subtle",
2683
3012
  ]
2684
3013
 
3014
+ [[package]]
3015
+ name = "sha1"
3016
+ version = "0.10.6"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3019
+ dependencies = [
3020
+ "cfg-if",
3021
+ "cpufeatures",
3022
+ "digest",
3023
+ ]
3024
+
2685
3025
  [[package]]
2686
3026
  name = "sha1_smol"
2687
3027
  version = "1.0.1"
@@ -2741,6 +3081,18 @@ dependencies = [
2741
3081
  "time",
2742
3082
  ]
2743
3083
 
3084
+ [[package]]
3085
+ name = "simple_logger"
3086
+ version = "5.0.0"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "e8c5dfa5e08767553704aa0ffd9d9794d527103c736aba9854773851fd7497eb"
3089
+ dependencies = [
3090
+ "colored",
3091
+ "log",
3092
+ "time",
3093
+ "windows-sys 0.48.0",
3094
+ ]
3095
+
2744
3096
  [[package]]
2745
3097
  name = "slab"
2746
3098
  version = "0.4.9"
@@ -2752,26 +3104,68 @@ dependencies = [
2752
3104
 
2753
3105
  [[package]]
2754
3106
  name = "smallvec"
2755
- version = "1.14.0"
3107
+ version = "1.15.0"
2756
3108
  source = "registry+https://github.com/rust-lang/crates.io-index"
2757
- checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3109
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2758
3110
 
2759
3111
  [[package]]
2760
3112
  name = "socket2"
2761
- version = "0.5.8"
3113
+ version = "0.5.9"
2762
3114
  source = "registry+https://github.com/rust-lang/crates.io-index"
2763
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3115
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2764
3116
  dependencies = [
2765
3117
  "libc",
2766
3118
  "windows-sys 0.52.0",
2767
3119
  ]
2768
3120
 
3121
+ [[package]]
3122
+ name = "spin"
3123
+ version = "0.9.8"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3126
+
2769
3127
  [[package]]
2770
3128
  name = "stable_deref_trait"
2771
3129
  version = "1.2.0"
2772
3130
  source = "registry+https://github.com/rust-lang/crates.io-index"
2773
3131
  checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2774
3132
 
3133
+ [[package]]
3134
+ name = "strsim"
3135
+ version = "0.8.0"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
3138
+
3139
+ [[package]]
3140
+ name = "strsim"
3141
+ version = "0.11.1"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3144
+
3145
+ [[package]]
3146
+ name = "structopt"
3147
+ version = "0.3.26"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
3150
+ dependencies = [
3151
+ "clap 2.34.0",
3152
+ "lazy_static",
3153
+ "structopt-derive",
3154
+ ]
3155
+
3156
+ [[package]]
3157
+ name = "structopt-derive"
3158
+ version = "0.4.18"
3159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3160
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
3161
+ dependencies = [
3162
+ "heck 0.3.3",
3163
+ "proc-macro-error",
3164
+ "proc-macro2",
3165
+ "quote",
3166
+ "syn 1.0.109",
3167
+ ]
3168
+
2775
3169
  [[package]]
2776
3170
  name = "subtle"
2777
3171
  version = "2.6.1"
@@ -2780,9 +3174,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2780
3174
 
2781
3175
  [[package]]
2782
3176
  name = "syn"
2783
- version = "2.0.98"
3177
+ version = "1.0.109"
2784
3178
  source = "registry+https://github.com/rust-lang/crates.io-index"
2785
- checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
3179
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3180
+ dependencies = [
3181
+ "proc-macro2",
3182
+ "quote",
3183
+ "unicode-ident",
3184
+ ]
3185
+
3186
+ [[package]]
3187
+ name = "syn"
3188
+ version = "2.0.100"
3189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3190
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2786
3191
  dependencies = [
2787
3192
  "proc-macro2",
2788
3193
  "quote",
@@ -2806,7 +3211,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2806
3211
  dependencies = [
2807
3212
  "proc-macro2",
2808
3213
  "quote",
2809
- "syn",
3214
+ "syn 2.0.100",
2810
3215
  ]
2811
3216
 
2812
3217
  [[package]]
@@ -2823,27 +3228,6 @@ dependencies = [
2823
3228
  "windows 0.57.0",
2824
3229
  ]
2825
3230
 
2826
- [[package]]
2827
- name = "system-configuration"
2828
- version = "0.6.1"
2829
- source = "registry+https://github.com/rust-lang/crates.io-index"
2830
- checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2831
- dependencies = [
2832
- "bitflags 2.8.0",
2833
- "core-foundation 0.9.4",
2834
- "system-configuration-sys",
2835
- ]
2836
-
2837
- [[package]]
2838
- name = "system-configuration-sys"
2839
- version = "0.6.0"
2840
- source = "registry+https://github.com/rust-lang/crates.io-index"
2841
- checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2842
- dependencies = [
2843
- "core-foundation-sys",
2844
- "libc",
2845
- ]
2846
-
2847
3231
  [[package]]
2848
3232
  name = "tagptr"
2849
3233
  version = "0.2.0"
@@ -2858,18 +3242,26 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2858
3242
 
2859
3243
  [[package]]
2860
3244
  name = "tempfile"
2861
- version = "3.18.0"
3245
+ version = "3.19.1"
2862
3246
  source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567"
3247
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2864
3248
  dependencies = [
2865
- "cfg-if",
2866
3249
  "fastrand",
2867
- "getrandom 0.3.1",
3250
+ "getrandom 0.3.2",
2868
3251
  "once_cell",
2869
- "rustix 1.0.1",
3252
+ "rustix 1.0.5",
2870
3253
  "windows-sys 0.59.0",
2871
3254
  ]
2872
3255
 
3256
+ [[package]]
3257
+ name = "textwrap"
3258
+ version = "0.11.0"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
3261
+ dependencies = [
3262
+ "unicode-width",
3263
+ ]
3264
+
2873
3265
  [[package]]
2874
3266
  name = "thiserror"
2875
3267
  version = "1.0.69"
@@ -2896,7 +3288,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2896
3288
  dependencies = [
2897
3289
  "proc-macro2",
2898
3290
  "quote",
2899
- "syn",
3291
+ "syn 2.0.100",
2900
3292
  ]
2901
3293
 
2902
3294
  [[package]]
@@ -2907,7 +3299,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2907
3299
  dependencies = [
2908
3300
  "proc-macro2",
2909
3301
  "quote",
2910
- "syn",
3302
+ "syn 2.0.100",
2911
3303
  ]
2912
3304
 
2913
3305
  [[package]]
@@ -2922,13 +3314,15 @@ dependencies = [
2922
3314
 
2923
3315
  [[package]]
2924
3316
  name = "time"
2925
- version = "0.3.37"
3317
+ version = "0.3.41"
2926
3318
  source = "registry+https://github.com/rust-lang/crates.io-index"
2927
- checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3319
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2928
3320
  dependencies = [
2929
3321
  "deranged",
2930
3322
  "itoa",
3323
+ "libc",
2931
3324
  "num-conv",
3325
+ "num_threads",
2932
3326
  "powerfmt",
2933
3327
  "serde",
2934
3328
  "time-core",
@@ -2937,15 +3331,15 @@ dependencies = [
2937
3331
 
2938
3332
  [[package]]
2939
3333
  name = "time-core"
2940
- version = "0.1.2"
3334
+ version = "0.1.4"
2941
3335
  source = "registry+https://github.com/rust-lang/crates.io-index"
2942
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3336
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2943
3337
 
2944
3338
  [[package]]
2945
3339
  name = "time-macros"
2946
- version = "0.2.19"
3340
+ version = "0.2.22"
2947
3341
  source = "registry+https://github.com/rust-lang/crates.io-index"
2948
- checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
3342
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2949
3343
  dependencies = [
2950
3344
  "num-conv",
2951
3345
  "time-core",
@@ -2978,9 +3372,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2978
3372
 
2979
3373
  [[package]]
2980
3374
  name = "tokio"
2981
- version = "1.44.1"
3375
+ version = "1.44.2"
2982
3376
  source = "registry+https://github.com/rust-lang/crates.io-index"
2983
- checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
3377
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2984
3378
  dependencies = [
2985
3379
  "backtrace",
2986
3380
  "bytes",
@@ -3002,17 +3396,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3002
3396
  dependencies = [
3003
3397
  "proc-macro2",
3004
3398
  "quote",
3005
- "syn",
3006
- ]
3007
-
3008
- [[package]]
3009
- name = "tokio-native-tls"
3010
- version = "0.3.1"
3011
- source = "registry+https://github.com/rust-lang/crates.io-index"
3012
- checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3013
- dependencies = [
3014
- "native-tls",
3015
- "tokio",
3399
+ "syn 2.0.100",
3016
3400
  ]
3017
3401
 
3018
3402
  [[package]]
@@ -3026,52 +3410,37 @@ dependencies = [
3026
3410
  ]
3027
3411
 
3028
3412
  [[package]]
3029
- name = "tokio-rustls-acme"
3030
- version = "0.6.0"
3413
+ name = "tokio-stream"
3414
+ version = "0.1.17"
3031
3415
  source = "registry+https://github.com/rust-lang/crates.io-index"
3032
- checksum = "3184e8e292a828dd4bca5b2a60aba830ec5ed873a66c9ebb6e65038fa649e827"
3416
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3033
3417
  dependencies = [
3034
- "async-trait",
3035
- "base64",
3036
- "chrono",
3037
- "futures",
3038
- "log",
3039
- "num-bigint",
3040
- "pem",
3041
- "proc-macro2",
3042
- "rcgen",
3043
- "reqwest",
3044
- "ring",
3045
- "rustls",
3046
- "serde",
3047
- "serde_json",
3048
- "thiserror 2.0.12",
3049
- "time",
3418
+ "futures-core",
3419
+ "pin-project-lite",
3050
3420
  "tokio",
3051
- "tokio-rustls",
3052
- "webpki-roots",
3053
- "x509-parser",
3054
3421
  ]
3055
3422
 
3056
3423
  [[package]]
3057
- name = "tokio-stream"
3058
- version = "0.1.17"
3424
+ name = "tokio-tungstenite"
3425
+ version = "0.21.0"
3059
3426
  source = "registry+https://github.com/rust-lang/crates.io-index"
3060
- checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3427
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
3061
3428
  dependencies = [
3062
- "futures-core",
3063
- "pin-project-lite",
3429
+ "futures-util",
3430
+ "log",
3064
3431
  "tokio",
3432
+ "tungstenite",
3065
3433
  ]
3066
3434
 
3067
3435
  [[package]]
3068
3436
  name = "tokio-util"
3069
- version = "0.7.13"
3437
+ version = "0.7.14"
3070
3438
  source = "registry+https://github.com/rust-lang/crates.io-index"
3071
- checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3439
+ checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
3072
3440
  dependencies = [
3073
3441
  "bytes",
3074
3442
  "futures-core",
3443
+ "futures-io",
3075
3444
  "futures-sink",
3076
3445
  "pin-project-lite",
3077
3446
  "tokio",
@@ -3090,6 +3459,7 @@ dependencies = [
3090
3459
  "tokio",
3091
3460
  "tower-layer",
3092
3461
  "tower-service",
3462
+ "tracing",
3093
3463
  ]
3094
3464
 
3095
3465
  [[package]]
@@ -3110,6 +3480,7 @@ version = "0.1.41"
3110
3480
  source = "registry+https://github.com/rust-lang/crates.io-index"
3111
3481
  checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3112
3482
  dependencies = [
3483
+ "log",
3113
3484
  "pin-project-lite",
3114
3485
  "tracing-attributes",
3115
3486
  "tracing-core",
@@ -3135,7 +3506,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3135
3506
  dependencies = [
3136
3507
  "proc-macro2",
3137
3508
  "quote",
3138
- "syn",
3509
+ "syn 2.0.100",
3139
3510
  ]
3140
3511
 
3141
3512
  [[package]]
@@ -3196,17 +3567,54 @@ version = "0.2.5"
3196
3567
  source = "registry+https://github.com/rust-lang/crates.io-index"
3197
3568
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3198
3569
 
3570
+ [[package]]
3571
+ name = "tungstenite"
3572
+ version = "0.21.0"
3573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3574
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
3575
+ dependencies = [
3576
+ "byteorder",
3577
+ "bytes",
3578
+ "data-encoding",
3579
+ "http 1.3.1",
3580
+ "httparse",
3581
+ "log",
3582
+ "rand 0.8.5",
3583
+ "sha1",
3584
+ "thiserror 1.0.69",
3585
+ "url",
3586
+ "utf-8",
3587
+ ]
3588
+
3199
3589
  [[package]]
3200
3590
  name = "typenum"
3201
3591
  version = "1.18.0"
3202
3592
  source = "registry+https://github.com/rust-lang/crates.io-index"
3203
3593
  checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3204
3594
 
3595
+ [[package]]
3596
+ name = "unicase"
3597
+ version = "2.8.1"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3600
+
3205
3601
  [[package]]
3206
3602
  name = "unicode-ident"
3207
- version = "1.0.17"
3603
+ version = "1.0.18"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3606
+
3607
+ [[package]]
3608
+ name = "unicode-segmentation"
3609
+ version = "1.12.0"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3612
+
3613
+ [[package]]
3614
+ name = "unicode-width"
3615
+ version = "0.1.14"
3208
3616
  source = "registry+https://github.com/rust-lang/crates.io-index"
3209
- checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
3617
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3210
3618
 
3211
3619
  [[package]]
3212
3620
  name = "unicode-xid"
@@ -3231,6 +3639,12 @@ dependencies = [
3231
3639
  "percent-encoding",
3232
3640
  ]
3233
3641
 
3642
+ [[package]]
3643
+ name = "utf-8"
3644
+ version = "0.7.6"
3645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3646
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3647
+
3234
3648
  [[package]]
3235
3649
  name = "utf16_iter"
3236
3650
  version = "1.0.5"
@@ -3243,13 +3657,19 @@ version = "1.0.4"
3243
3657
  source = "registry+https://github.com/rust-lang/crates.io-index"
3244
3658
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3245
3659
 
3660
+ [[package]]
3661
+ name = "utf8parse"
3662
+ version = "0.2.2"
3663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3664
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3665
+
3246
3666
  [[package]]
3247
3667
  name = "uuid"
3248
3668
  version = "1.16.0"
3249
3669
  source = "registry+https://github.com/rust-lang/crates.io-index"
3250
3670
  checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3251
3671
  dependencies = [
3252
- "getrandom 0.3.1",
3672
+ "getrandom 0.3.2",
3253
3673
  ]
3254
3674
 
3255
3675
  [[package]]
@@ -3259,10 +3679,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
3679
  checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3260
3680
 
3261
3681
  [[package]]
3262
- name = "vcpkg"
3263
- version = "0.2.15"
3682
+ name = "vec_map"
3683
+ version = "0.8.2"
3264
3684
  source = "registry+https://github.com/rust-lang/crates.io-index"
3265
- checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3685
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3266
3686
 
3267
3687
  [[package]]
3268
3688
  name = "version_check"
@@ -3289,6 +3709,35 @@ dependencies = [
3289
3709
  "try-lock",
3290
3710
  ]
3291
3711
 
3712
+ [[package]]
3713
+ name = "warp"
3714
+ version = "0.3.7"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c"
3717
+ dependencies = [
3718
+ "bytes",
3719
+ "futures-channel",
3720
+ "futures-util",
3721
+ "headers",
3722
+ "http 0.2.12",
3723
+ "hyper 0.14.32",
3724
+ "log",
3725
+ "mime",
3726
+ "mime_guess",
3727
+ "multer",
3728
+ "percent-encoding",
3729
+ "pin-project",
3730
+ "scoped-tls",
3731
+ "serde",
3732
+ "serde_json",
3733
+ "serde_urlencoded",
3734
+ "tokio",
3735
+ "tokio-tungstenite",
3736
+ "tokio-util",
3737
+ "tower-service",
3738
+ "tracing",
3739
+ ]
3740
+
3292
3741
  [[package]]
3293
3742
  name = "wasi"
3294
3743
  version = "0.11.0+wasi-snapshot-preview1"
@@ -3297,9 +3746,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3297
3746
 
3298
3747
  [[package]]
3299
3748
  name = "wasi"
3300
- version = "0.13.3+wasi-0.2.2"
3749
+ version = "0.14.2+wasi-0.2.4"
3301
3750
  source = "registry+https://github.com/rust-lang/crates.io-index"
3302
- checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
3751
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3303
3752
  dependencies = [
3304
3753
  "wit-bindgen-rt",
3305
3754
  ]
@@ -3326,7 +3775,7 @@ dependencies = [
3326
3775
  "log",
3327
3776
  "proc-macro2",
3328
3777
  "quote",
3329
- "syn",
3778
+ "syn 2.0.100",
3330
3779
  "wasm-bindgen-shared",
3331
3780
  ]
3332
3781
 
@@ -3361,7 +3810,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3361
3810
  dependencies = [
3362
3811
  "proc-macro2",
3363
3812
  "quote",
3364
- "syn",
3813
+ "syn 2.0.100",
3365
3814
  "wasm-bindgen-backend",
3366
3815
  "wasm-bindgen-shared",
3367
3816
  ]
@@ -3480,15 +3929,6 @@ dependencies = [
3480
3929
  "windows-targets 0.52.6",
3481
3930
  ]
3482
3931
 
3483
- [[package]]
3484
- name = "windows-core"
3485
- version = "0.52.0"
3486
- source = "registry+https://github.com/rust-lang/crates.io-index"
3487
- checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3488
- dependencies = [
3489
- "windows-targets 0.52.6",
3490
- ]
3491
-
3492
3932
  [[package]]
3493
3933
  name = "windows-core"
3494
3934
  version = "0.57.0"
@@ -3514,6 +3954,19 @@ dependencies = [
3514
3954
  "windows-targets 0.52.6",
3515
3955
  ]
3516
3956
 
3957
+ [[package]]
3958
+ name = "windows-core"
3959
+ version = "0.61.0"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3962
+ dependencies = [
3963
+ "windows-implement 0.60.0",
3964
+ "windows-interface 0.59.1",
3965
+ "windows-link",
3966
+ "windows-result 0.3.2",
3967
+ "windows-strings 0.4.0",
3968
+ ]
3969
+
3517
3970
  [[package]]
3518
3971
  name = "windows-implement"
3519
3972
  version = "0.57.0"
@@ -3522,7 +3975,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3522
3975
  dependencies = [
3523
3976
  "proc-macro2",
3524
3977
  "quote",
3525
- "syn",
3978
+ "syn 2.0.100",
3526
3979
  ]
3527
3980
 
3528
3981
  [[package]]
@@ -3533,7 +3986,18 @@ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
3533
3986
  dependencies = [
3534
3987
  "proc-macro2",
3535
3988
  "quote",
3536
- "syn",
3989
+ "syn 2.0.100",
3990
+ ]
3991
+
3992
+ [[package]]
3993
+ name = "windows-implement"
3994
+ version = "0.60.0"
3995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3996
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3997
+ dependencies = [
3998
+ "proc-macro2",
3999
+ "quote",
4000
+ "syn 2.0.100",
3537
4001
  ]
3538
4002
 
3539
4003
  [[package]]
@@ -3544,7 +4008,7 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3544
4008
  dependencies = [
3545
4009
  "proc-macro2",
3546
4010
  "quote",
3547
- "syn",
4011
+ "syn 2.0.100",
3548
4012
  ]
3549
4013
 
3550
4014
  [[package]]
@@ -3555,14 +4019,25 @@ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
3555
4019
  dependencies = [
3556
4020
  "proc-macro2",
3557
4021
  "quote",
3558
- "syn",
4022
+ "syn 2.0.100",
4023
+ ]
4024
+
4025
+ [[package]]
4026
+ name = "windows-interface"
4027
+ version = "0.59.1"
4028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4029
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4030
+ dependencies = [
4031
+ "proc-macro2",
4032
+ "quote",
4033
+ "syn 2.0.100",
3559
4034
  ]
3560
4035
 
3561
4036
  [[package]]
3562
4037
  name = "windows-link"
3563
- version = "0.1.0"
4038
+ version = "0.1.1"
3564
4039
  source = "registry+https://github.com/rust-lang/crates.io-index"
3565
- checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
4040
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3566
4041
 
3567
4042
  [[package]]
3568
4043
  name = "windows-registry"
@@ -3570,7 +4045,7 @@ version = "0.4.0"
3570
4045
  source = "registry+https://github.com/rust-lang/crates.io-index"
3571
4046
  checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3572
4047
  dependencies = [
3573
- "windows-result 0.3.1",
4048
+ "windows-result 0.3.2",
3574
4049
  "windows-strings 0.3.1",
3575
4050
  "windows-targets 0.53.0",
3576
4051
  ]
@@ -3595,9 +4070,9 @@ dependencies = [
3595
4070
 
3596
4071
  [[package]]
3597
4072
  name = "windows-result"
3598
- version = "0.3.1"
4073
+ version = "0.3.2"
3599
4074
  source = "registry+https://github.com/rust-lang/crates.io-index"
3600
- checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189"
4075
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3601
4076
  dependencies = [
3602
4077
  "windows-link",
3603
4078
  ]
@@ -3621,6 +4096,24 @@ dependencies = [
3621
4096
  "windows-link",
3622
4097
  ]
3623
4098
 
4099
+ [[package]]
4100
+ name = "windows-strings"
4101
+ version = "0.4.0"
4102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4103
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4104
+ dependencies = [
4105
+ "windows-link",
4106
+ ]
4107
+
4108
+ [[package]]
4109
+ name = "windows-sys"
4110
+ version = "0.48.0"
4111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4112
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4113
+ dependencies = [
4114
+ "windows-targets 0.48.5",
4115
+ ]
4116
+
3624
4117
  [[package]]
3625
4118
  name = "windows-sys"
3626
4119
  version = "0.52.0"
@@ -3639,6 +4132,21 @@ dependencies = [
3639
4132
  "windows-targets 0.52.6",
3640
4133
  ]
3641
4134
 
4135
+ [[package]]
4136
+ name = "windows-targets"
4137
+ version = "0.48.5"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4140
+ dependencies = [
4141
+ "windows_aarch64_gnullvm 0.48.5",
4142
+ "windows_aarch64_msvc 0.48.5",
4143
+ "windows_i686_gnu 0.48.5",
4144
+ "windows_i686_msvc 0.48.5",
4145
+ "windows_x86_64_gnu 0.48.5",
4146
+ "windows_x86_64_gnullvm 0.48.5",
4147
+ "windows_x86_64_msvc 0.48.5",
4148
+ ]
4149
+
3642
4150
  [[package]]
3643
4151
  name = "windows-targets"
3644
4152
  version = "0.52.6"
@@ -3671,6 +4179,12 @@ dependencies = [
3671
4179
  "windows_x86_64_msvc 0.53.0",
3672
4180
  ]
3673
4181
 
4182
+ [[package]]
4183
+ name = "windows_aarch64_gnullvm"
4184
+ version = "0.48.5"
4185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4186
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4187
+
3674
4188
  [[package]]
3675
4189
  name = "windows_aarch64_gnullvm"
3676
4190
  version = "0.52.6"
@@ -3683,6 +4197,12 @@ version = "0.53.0"
3683
4197
  source = "registry+https://github.com/rust-lang/crates.io-index"
3684
4198
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3685
4199
 
4200
+ [[package]]
4201
+ name = "windows_aarch64_msvc"
4202
+ version = "0.48.5"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4205
+
3686
4206
  [[package]]
3687
4207
  name = "windows_aarch64_msvc"
3688
4208
  version = "0.52.6"
@@ -3695,6 +4215,12 @@ version = "0.53.0"
3695
4215
  source = "registry+https://github.com/rust-lang/crates.io-index"
3696
4216
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3697
4217
 
4218
+ [[package]]
4219
+ name = "windows_i686_gnu"
4220
+ version = "0.48.5"
4221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4222
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4223
+
3698
4224
  [[package]]
3699
4225
  name = "windows_i686_gnu"
3700
4226
  version = "0.52.6"
@@ -3719,6 +4245,12 @@ version = "0.53.0"
3719
4245
  source = "registry+https://github.com/rust-lang/crates.io-index"
3720
4246
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3721
4247
 
4248
+ [[package]]
4249
+ name = "windows_i686_msvc"
4250
+ version = "0.48.5"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4253
+
3722
4254
  [[package]]
3723
4255
  name = "windows_i686_msvc"
3724
4256
  version = "0.52.6"
@@ -3731,6 +4263,12 @@ version = "0.53.0"
3731
4263
  source = "registry+https://github.com/rust-lang/crates.io-index"
3732
4264
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3733
4265
 
4266
+ [[package]]
4267
+ name = "windows_x86_64_gnu"
4268
+ version = "0.48.5"
4269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4270
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4271
+
3734
4272
  [[package]]
3735
4273
  name = "windows_x86_64_gnu"
3736
4274
  version = "0.52.6"
@@ -3743,6 +4281,12 @@ version = "0.53.0"
3743
4281
  source = "registry+https://github.com/rust-lang/crates.io-index"
3744
4282
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3745
4283
 
4284
+ [[package]]
4285
+ name = "windows_x86_64_gnullvm"
4286
+ version = "0.48.5"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4289
+
3746
4290
  [[package]]
3747
4291
  name = "windows_x86_64_gnullvm"
3748
4292
  version = "0.52.6"
@@ -3755,6 +4299,12 @@ version = "0.53.0"
3755
4299
  source = "registry+https://github.com/rust-lang/crates.io-index"
3756
4300
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3757
4301
 
4302
+ [[package]]
4303
+ name = "windows_x86_64_msvc"
4304
+ version = "0.48.5"
4305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4306
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4307
+
3758
4308
  [[package]]
3759
4309
  name = "windows_x86_64_msvc"
3760
4310
  version = "0.52.6"
@@ -3769,11 +4319,11 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3769
4319
 
3770
4320
  [[package]]
3771
4321
  name = "wit-bindgen-rt"
3772
- version = "0.33.0"
4322
+ version = "0.39.0"
3773
4323
  source = "registry+https://github.com/rust-lang/crates.io-index"
3774
- checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
4324
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3775
4325
  dependencies = [
3776
- "bitflags 2.8.0",
4326
+ "bitflags 2.9.0",
3777
4327
  ]
3778
4328
 
3779
4329
  [[package]]
@@ -3835,28 +4385,28 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
3835
4385
  dependencies = [
3836
4386
  "proc-macro2",
3837
4387
  "quote",
3838
- "syn",
4388
+ "syn 2.0.100",
3839
4389
  "synstructure",
3840
4390
  ]
3841
4391
 
3842
4392
  [[package]]
3843
4393
  name = "zerocopy"
3844
- version = "0.8.23"
4394
+ version = "0.8.24"
3845
4395
  source = "registry+https://github.com/rust-lang/crates.io-index"
3846
- checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6"
4396
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3847
4397
  dependencies = [
3848
4398
  "zerocopy-derive",
3849
4399
  ]
3850
4400
 
3851
4401
  [[package]]
3852
4402
  name = "zerocopy-derive"
3853
- version = "0.8.23"
4403
+ version = "0.8.24"
3854
4404
  source = "registry+https://github.com/rust-lang/crates.io-index"
3855
- checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154"
4405
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3856
4406
  dependencies = [
3857
4407
  "proc-macro2",
3858
4408
  "quote",
3859
- "syn",
4409
+ "syn 2.0.100",
3860
4410
  ]
3861
4411
 
3862
4412
  [[package]]
@@ -3876,7 +4426,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3876
4426
  dependencies = [
3877
4427
  "proc-macro2",
3878
4428
  "quote",
3879
- "syn",
4429
+ "syn 2.0.100",
3880
4430
  "synstructure",
3881
4431
  ]
3882
4432
 
@@ -3905,7 +4455,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3905
4455
  dependencies = [
3906
4456
  "proc-macro2",
3907
4457
  "quote",
3908
- "syn",
4458
+ "syn 2.0.100",
3909
4459
  ]
3910
4460
 
3911
4461
  [[package]]