itsi 0.1.19 → 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 (393) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +15 -0
  3. data/Cargo.lock +941 -241
  4. data/README.md +67 -55
  5. data/crates/itsi_server/Cargo.toml +3 -3
  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 +950 -239
  48. data/gems/server/README.md +2 -0
  49. data/gems/server/exe/itsi +5 -5
  50. data/gems/server/lib/itsi/server/config/config_helpers.rb +93 -0
  51. data/gems/server/lib/itsi/server/config/dsl.rb +81 -33
  52. data/gems/server/lib/itsi/server/config/known_paths/KitchensinkDirectories.txt +2346 -0
  53. data/gems/server/lib/itsi/server/config/known_paths/Randomfiles.txt +24 -0
  54. data/gems/server/lib/itsi/server/config/known_paths/UnixDotfiles.txt +52 -0
  55. data/gems/server/lib/itsi/server/config/known_paths/backdoors/ASP_CommonBackdoors.txt +29 -0
  56. data/gems/server/lib/itsi/server/config/known_paths/backdoors/bot_control_panels.txt +1668 -0
  57. data/gems/server/lib/itsi/server/config/known_paths/backdoors/shells.txt +1167 -0
  58. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST.txt +7 -0
  59. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST_Windows.txt +6 -0
  60. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_Microsoft.txt +79 -0
  61. data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_XPlatform.txt +3948 -0
  62. data/gems/server/lib/itsi/server/config/known_paths/cms/README.md +5 -0
  63. data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_plugins.txt +6320 -0
  64. data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_themes.txt +828 -0
  65. data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_plugins.txt +224 -0
  66. data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_themes.txt +30 -0
  67. data/gems/server/lib/itsi/server/config/known_paths/cms/php-nuke.txt +2142 -0
  68. data/gems/server/lib/itsi/server/config/known_paths/cms/wordpress.txt +1566 -0
  69. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_common_theme_files.txt +46 -0
  70. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins.txt +13366 -0
  71. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_full.txt +68662 -0
  72. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_top225.txt +225 -0
  73. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.readme +12 -0
  74. data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.txt +7336 -0
  75. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/3CharExtBrute.txt +17576 -0
  76. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/CommonWebExtensions.txt +80 -0
  77. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Backup.txt +14 -0
  78. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Common.txt +865 -0
  79. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Compressed.txt +186 -0
  80. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Mostcommon.txt +30 -0
  81. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Skipfish.txt +93 -0
  82. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/WordlistSkipfish.txt +1918 -0
  83. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/copy_of.txt +8 -0
  84. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt +56180 -0
  85. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories.txt +62290 -0
  86. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt +2367 -0
  87. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions.txt +2450 -0
  88. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files-lowercase.txt +35323 -0
  89. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files.txt +37037 -0
  90. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words-lowercase.txt +107982 -0
  91. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words.txt +119600 -0
  92. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt +26593 -0
  93. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories.txt +30009 -0
  94. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt +1233 -0
  95. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions.txt +1289 -0
  96. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt +16243 -0
  97. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files.txt +17128 -0
  98. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt +56293 -0
  99. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words.txt +63087 -0
  100. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt +17776 -0
  101. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories.txt +20122 -0
  102. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt +914 -0
  103. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions.txt +963 -0
  104. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files-lowercase.txt +10848 -0
  105. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files.txt +11424 -0
  106. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words-lowercase.txt +38267 -0
  107. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words.txt +43003 -0
  108. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/spanish.txt +445 -0
  109. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/test_demo.txt +36 -0
  110. data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/upload_variants.txt +44 -0
  111. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/Logins.txt +71 -0
  112. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/cfm.txt +294 -0
  113. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/html.txt +295 -0
  114. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/jsp.txt +294 -0
  115. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/php.txt +294 -0
  116. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-asp.txt +294 -0
  117. data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-aspx.txt +294 -0
  118. data/gems/server/lib/itsi/server/config/known_paths/password-file-locations/Passwords.txt +47 -0
  119. data/gems/server/lib/itsi/server/config/known_paths/php/PHP.txt +30 -0
  120. data/gems/server/lib/itsi/server/config/known_paths/php/PHP_CommonBackdoors.txt +5 -0
  121. data/gems/server/lib/itsi/server/config/known_paths/proxy-conf.txt +31 -0
  122. data/gems/server/lib/itsi/server/config/known_paths/tftp.txt +79 -0
  123. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ADFS.txt +86 -0
  124. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/AdobeXML.txt +16 -0
  125. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache.txt +101 -0
  126. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ApacheTomcat.txt +47 -0
  127. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache_Axis.txt +16 -0
  128. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ColdFusion.txt +111 -0
  129. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/FatwireCMS.txt +390 -0
  130. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Frontpage.txt +38 -0
  131. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HP_System_Mgmt_Homepage.txt +239 -0
  132. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HTTP_POST_Microsoft.txt +2 -0
  133. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Hyperion.txt +578 -0
  134. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/IIS.txt +187 -0
  135. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JBoss.txt +5 -0
  136. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JRun.txt +13 -0
  137. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JavaServlets_Common.txt +3 -0
  138. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Joomla_exploitable.txt +1937 -0
  139. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/LotusNotes.txt +206 -0
  140. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Netware.txt +18 -0
  141. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Oracle9i.txt +60 -0
  142. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/OracleAppServer.txt +192 -0
  143. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/README.md +6 -0
  144. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Ruby_Rails.txt +121 -0
  145. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SAP.txt +463 -0
  146. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Sharepoint.txt +1707 -0
  147. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SiteMinder.txt +19 -0
  148. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SunAppServerGlassfish.txt +51 -0
  149. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SuniPlanet.txt +35 -0
  150. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Vignette.txt +73 -0
  151. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Weblogic.txt +160 -0
  152. data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Websphere.txt +366 -0
  153. data/gems/server/lib/itsi/server/config/known_paths/wellknown-rfc5785.txt +30 -0
  154. data/gems/server/lib/itsi/server/config/known_paths.rb +17 -0
  155. data/gems/server/lib/itsi/server/config/middleware/_index.md +54 -0
  156. data/gems/server/lib/itsi/server/config/middleware/log_requests.md +63 -0
  157. data/gems/server/lib/itsi/server/config/middleware/log_requests.rb +33 -0
  158. data/gems/server/lib/itsi/server/config/middleware.rb +9 -0
  159. data/gems/server/lib/itsi/server/config/option.rb +9 -0
  160. data/gems/server/lib/itsi/server/config/options/_index.md +36 -0
  161. data/gems/server/lib/itsi/server/config/options/fiber_scheduler.md +35 -0
  162. data/gems/server/lib/itsi/server/config/options/fiber_scheduler.rb +18 -0
  163. data/gems/server/lib/itsi/server/config/options/threads.md +39 -0
  164. data/gems/server/lib/itsi/server/config/options/threads.rb +17 -0
  165. data/gems/server/lib/itsi/server/config/options/workers.md +43 -0
  166. data/gems/server/lib/itsi/server/config/options/workers.rb +17 -0
  167. data/gems/server/lib/itsi/server/config/typed_struct.rb +203 -0
  168. data/gems/server/lib/itsi/server/config.rb +124 -30
  169. data/gems/server/lib/itsi/server/signal_trap.rb +5 -1
  170. data/gems/server/lib/itsi/server/typed_handlers/source_parser.rb +1 -1
  171. data/gems/server/lib/itsi/server/version.rb +1 -1
  172. data/gems/server/lib/itsi/server.rb +27 -6
  173. data/gems/server/lib/ruby_lsp/itsi/addon.rb +64 -48
  174. data/gems/server/test/helpers/test_helper.rb +64 -5
  175. data/gems/server/test/middleware/test_log_requests.rb +17 -0
  176. data/gems/server/test/options/test_threads.rb +15 -0
  177. data/gems/server/test/options/test_workers.rb +18 -0
  178. data/gems/server/test/test_itsi_server.rb +81 -94
  179. data/itsi-scheduler-100.png +0 -0
  180. data/itsi-server-100.png +0 -0
  181. data/lib/itsi/version.rb +1 -1
  182. data/tasks.txt +36 -28
  183. metadata +147 -215
  184. data/crates/_index.md +0 -0
  185. data/crates/itsi_server/src/ruby_types/README.md +0 -21
  186. data/crates/itsi_server/test.md +0 -14
  187. data/docs/Itsi.rb +0 -17
  188. data/docs/content/about.md +0 -6
  189. data/docs/content/docs/_index.md +0 -18
  190. data/docs/content/docs/first-page.md +0 -9
  191. data/docs/content/docs/folder/_index.md +0 -10
  192. data/docs/content/docs/folder/leaf.md +0 -7
  193. data/foo/Itsi.rb +0 -122
  194. data/gems/_index.md +0 -18
  195. data/gems/scheduler/CHANGELOG.md +0 -5
  196. data/gems/scheduler/CODE_OF_CONDUCT.md +0 -139
  197. data/gems/scheduler/LICENSE.txt +0 -21
  198. data/gems/scheduler/_index.md +0 -7
  199. data/gems/server/CHANGELOG.md +0 -10
  200. data/gems/server/CODE_OF_CONDUCT.md +0 -139
  201. data/gems/server/LICENSE.txt +0 -21
  202. data/gems/server/_index.md +0 -6
  203. data/sandbox/README.md +0 -5
  204. data/sandbox/deploy/main.tf +0 -238
  205. data/sandbox/deploy/outputs.tf +0 -4
  206. data/sandbox/deploy/vars.tf +0 -11
  207. data/sandbox/falcon_benchmark/Gemfile +0 -10
  208. data/sandbox/falcon_benchmark/Gemfile.lock +0 -140
  209. data/sandbox/falcon_benchmark/config.ru +0 -54
  210. data/sandbox/itsi_file/Gemfile +0 -13
  211. data/sandbox/itsi_file/Gemfile.lock +0 -111
  212. data/sandbox/itsi_file/Itsi.rb +0 -474
  213. data/sandbox/itsi_file/call.json +0 -1
  214. data/sandbox/itsi_file/echo_client/Gemfile +0 -10
  215. data/sandbox/itsi_file/echo_client/Gemfile.lock +0 -27
  216. data/sandbox/itsi_file/echo_client/README.md +0 -95
  217. data/sandbox/itsi_file/echo_client/echo_client.rb +0 -164
  218. data/sandbox/itsi_file/echo_client/gen_proto.sh +0 -17
  219. data/sandbox/itsi_file/echo_client/lib/echo_pb.rb +0 -16
  220. data/sandbox/itsi_file/echo_client/lib/echo_services_pb.rb +0 -29
  221. data/sandbox/itsi_file/echo_client/run_client.rb +0 -64
  222. data/sandbox/itsi_file/echo_client/test_compressions.sh +0 -20
  223. data/sandbox/itsi_file/echo_service_nonitsi/Gemfile +0 -10
  224. data/sandbox/itsi_file/echo_service_nonitsi/Gemfile.lock +0 -79
  225. data/sandbox/itsi_file/echo_service_nonitsi/echo.proto +0 -26
  226. data/sandbox/itsi_file/echo_service_nonitsi/echo_pb.rb +0 -16
  227. data/sandbox/itsi_file/echo_service_nonitsi/echo_services_pb.rb +0 -29
  228. data/sandbox/itsi_file/echo_service_nonitsi/server.rb +0 -52
  229. data/sandbox/itsi_file/error.html +0 -2
  230. data/sandbox/itsi_file/organisations_controller.rb +0 -20
  231. data/sandbox/itsi_file/public/assets/image.png +0 -0
  232. data/sandbox/itsi_sandbox_async/Gemfile +0 -10
  233. data/sandbox/itsi_sandbox_async/Gemfile.lock +0 -69
  234. data/sandbox/itsi_sandbox_async/config.ru +0 -9
  235. data/sandbox/itsi_sandbox_hanami/.env +0 -2
  236. data/sandbox/itsi_sandbox_hanami/.gitignore +0 -6
  237. data/sandbox/itsi_sandbox_hanami/.rspec +0 -1
  238. data/sandbox/itsi_sandbox_hanami/Gemfile +0 -49
  239. data/sandbox/itsi_sandbox_hanami/Gemfile.lock +0 -440
  240. data/sandbox/itsi_sandbox_hanami/Guardfile +0 -9
  241. data/sandbox/itsi_sandbox_hanami/Procfile.dev +0 -2
  242. data/sandbox/itsi_sandbox_hanami/README.md +0 -1
  243. data/sandbox/itsi_sandbox_hanami/Rakefile +0 -3
  244. data/sandbox/itsi_sandbox_hanami/app/action.rb +0 -12
  245. data/sandbox/itsi_sandbox_hanami/app/actions/.keep +0 -0
  246. data/sandbox/itsi_sandbox_hanami/app/assets/css/app.css +0 -5
  247. data/sandbox/itsi_sandbox_hanami/app/assets/images/favicon.ico +0 -0
  248. data/sandbox/itsi_sandbox_hanami/app/assets/js/app.js +0 -1
  249. data/sandbox/itsi_sandbox_hanami/app/db/relation.rb +0 -10
  250. data/sandbox/itsi_sandbox_hanami/app/db/repo.rb +0 -10
  251. data/sandbox/itsi_sandbox_hanami/app/db/struct.rb +0 -10
  252. data/sandbox/itsi_sandbox_hanami/app/operation.rb +0 -9
  253. data/sandbox/itsi_sandbox_hanami/app/relations/.keep +0 -0
  254. data/sandbox/itsi_sandbox_hanami/app/repos/.keep +0 -0
  255. data/sandbox/itsi_sandbox_hanami/app/structs/.keep +0 -0
  256. data/sandbox/itsi_sandbox_hanami/app/templates/layouts/app.html.erb +0 -14
  257. data/sandbox/itsi_sandbox_hanami/app/view.rb +0 -9
  258. data/sandbox/itsi_sandbox_hanami/app/views/helpers.rb +0 -10
  259. data/sandbox/itsi_sandbox_hanami/bin/dev +0 -8
  260. data/sandbox/itsi_sandbox_hanami/config/app.rb +0 -8
  261. data/sandbox/itsi_sandbox_hanami/config/assets.js +0 -16
  262. data/sandbox/itsi_sandbox_hanami/config/db/migrate/.keep +0 -0
  263. data/sandbox/itsi_sandbox_hanami/config/db/seeds.rb +0 -15
  264. data/sandbox/itsi_sandbox_hanami/config/puma.rb +0 -47
  265. data/sandbox/itsi_sandbox_hanami/config/routes.rb +0 -7
  266. data/sandbox/itsi_sandbox_hanami/config/settings.rb +0 -9
  267. data/sandbox/itsi_sandbox_hanami/config.ru +0 -5
  268. data/sandbox/itsi_sandbox_hanami/db/.keep +0 -0
  269. data/sandbox/itsi_sandbox_hanami/lib/itsi_hanami/types.rb +0 -11
  270. data/sandbox/itsi_sandbox_hanami/lib/tasks/.keep +0 -0
  271. data/sandbox/itsi_sandbox_hanami/package-lock.json +0 -946
  272. data/sandbox/itsi_sandbox_hanami/package.json +0 -8
  273. data/sandbox/itsi_sandbox_hanami/spec/requests/root_spec.rb +0 -11
  274. data/sandbox/itsi_sandbox_hanami/spec/spec_helper.rb +0 -9
  275. data/sandbox/itsi_sandbox_hanami/spec/support/db/cleaning.rb +0 -42
  276. data/sandbox/itsi_sandbox_hanami/spec/support/db.rb +0 -10
  277. data/sandbox/itsi_sandbox_hanami/spec/support/features.rb +0 -5
  278. data/sandbox/itsi_sandbox_hanami/spec/support/operations.rb +0 -8
  279. data/sandbox/itsi_sandbox_hanami/spec/support/requests.rb +0 -13
  280. data/sandbox/itsi_sandbox_hanami/spec/support/rspec.rb +0 -61
  281. data/sandbox/itsi_sandbox_rack/Gemfile +0 -17
  282. data/sandbox/itsi_sandbox_rack/Gemfile.lock +0 -153
  283. data/sandbox/itsi_sandbox_rack/config.ru +0 -5
  284. data/sandbox/itsi_sandbox_rack_lint/Gemfile +0 -7
  285. data/sandbox/itsi_sandbox_rack_lint/Gemfile.lock +0 -27
  286. data/sandbox/itsi_sandbox_rack_lint/config.ru +0 -3
  287. data/sandbox/itsi_sandbox_rails/.dockerignore +0 -48
  288. data/sandbox/itsi_sandbox_rails/.gitattributes +0 -9
  289. data/sandbox/itsi_sandbox_rails/.github/dependabot.yml +0 -12
  290. data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +0 -90
  291. data/sandbox/itsi_sandbox_rails/.gitignore +0 -35
  292. data/sandbox/itsi_sandbox_rails/.rubocop.yml +0 -8
  293. data/sandbox/itsi_sandbox_rails/.ruby-version +0 -1
  294. data/sandbox/itsi_sandbox_rails/Dockerfile +0 -69
  295. data/sandbox/itsi_sandbox_rails/Gemfile +0 -66
  296. data/sandbox/itsi_sandbox_rails/Gemfile.lock +0 -429
  297. data/sandbox/itsi_sandbox_rails/README.md +0 -24
  298. data/sandbox/itsi_sandbox_rails/Rakefile +0 -6
  299. data/sandbox/itsi_sandbox_rails/app/assets/config/manifest.js +0 -4
  300. data/sandbox/itsi_sandbox_rails/app/assets/images/.keep +0 -0
  301. data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +0 -15
  302. data/sandbox/itsi_sandbox_rails/app/channels/application_cable/channel.rb +0 -4
  303. data/sandbox/itsi_sandbox_rails/app/channels/application_cable/connection.rb +0 -4
  304. data/sandbox/itsi_sandbox_rails/app/controllers/application_controller.rb +0 -4
  305. data/sandbox/itsi_sandbox_rails/app/controllers/concerns/.keep +0 -0
  306. data/sandbox/itsi_sandbox_rails/app/controllers/home_controller.rb +0 -66
  307. data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +0 -40
  308. data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +0 -29
  309. data/sandbox/itsi_sandbox_rails/app/helpers/application_helper.rb +0 -2
  310. data/sandbox/itsi_sandbox_rails/app/javascript/application.js +0 -3
  311. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/application.js +0 -9
  312. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/hello_controller.js +0 -7
  313. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/index.js +0 -4
  314. data/sandbox/itsi_sandbox_rails/app/jobs/application_job.rb +0 -7
  315. data/sandbox/itsi_sandbox_rails/app/mailers/application_mailer.rb +0 -4
  316. data/sandbox/itsi_sandbox_rails/app/models/application_record.rb +0 -3
  317. data/sandbox/itsi_sandbox_rails/app/models/concerns/.keep +0 -0
  318. data/sandbox/itsi_sandbox_rails/app/models/post.rb +0 -2
  319. data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +0 -23
  320. data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.html.erb +0 -13
  321. data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.text.erb +0 -1
  322. data/sandbox/itsi_sandbox_rails/app/views/pwa/manifest.json.erb +0 -22
  323. data/sandbox/itsi_sandbox_rails/app/views/pwa/service-worker.js +0 -26
  324. data/sandbox/itsi_sandbox_rails/bin/brakeman +0 -7
  325. data/sandbox/itsi_sandbox_rails/bin/bundle +0 -109
  326. data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +0 -13
  327. data/sandbox/itsi_sandbox_rails/bin/importmap +0 -4
  328. data/sandbox/itsi_sandbox_rails/bin/rails +0 -4
  329. data/sandbox/itsi_sandbox_rails/bin/rake +0 -4
  330. data/sandbox/itsi_sandbox_rails/bin/rubocop +0 -8
  331. data/sandbox/itsi_sandbox_rails/bin/setup +0 -37
  332. data/sandbox/itsi_sandbox_rails/config/application.rb +0 -27
  333. data/sandbox/itsi_sandbox_rails/config/boot.rb +0 -4
  334. data/sandbox/itsi_sandbox_rails/config/cable.yml +0 -10
  335. data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +0 -1
  336. data/sandbox/itsi_sandbox_rails/config/database.yml +0 -30
  337. data/sandbox/itsi_sandbox_rails/config/environment.rb +0 -5
  338. data/sandbox/itsi_sandbox_rails/config/environments/development.rb +0 -82
  339. data/sandbox/itsi_sandbox_rails/config/environments/production.rb +0 -106
  340. data/sandbox/itsi_sandbox_rails/config/environments/test.rb +0 -67
  341. data/sandbox/itsi_sandbox_rails/config/importmap.rb +0 -7
  342. data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +0 -12
  343. data/sandbox/itsi_sandbox_rails/config/initializers/content_security_policy.rb +0 -25
  344. data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +0 -8
  345. data/sandbox/itsi_sandbox_rails/config/initializers/inflections.rb +0 -16
  346. data/sandbox/itsi_sandbox_rails/config/initializers/permissions_policy.rb +0 -13
  347. data/sandbox/itsi_sandbox_rails/config/locales/en.yml +0 -31
  348. data/sandbox/itsi_sandbox_rails/config/puma.rb +0 -34
  349. data/sandbox/itsi_sandbox_rails/config/routes.rb +0 -23
  350. data/sandbox/itsi_sandbox_rails/config/storage.yml +0 -34
  351. data/sandbox/itsi_sandbox_rails/config.ru +0 -6
  352. data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +0 -10
  353. data/sandbox/itsi_sandbox_rails/db/schema.rb +0 -23
  354. data/sandbox/itsi_sandbox_rails/db/seeds.rb +0 -9
  355. data/sandbox/itsi_sandbox_rails/lib/assets/.keep +0 -0
  356. data/sandbox/itsi_sandbox_rails/lib/tasks/.keep +0 -0
  357. data/sandbox/itsi_sandbox_rails/log/.keep +0 -0
  358. data/sandbox/itsi_sandbox_rails/public/404.html +0 -67
  359. data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +0 -66
  360. data/sandbox/itsi_sandbox_rails/public/422.html +0 -67
  361. data/sandbox/itsi_sandbox_rails/public/500.html +0 -66
  362. data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
  363. data/sandbox/itsi_sandbox_rails/public/icon.svg +0 -3
  364. data/sandbox/itsi_sandbox_rails/public/robots.txt +0 -1
  365. data/sandbox/itsi_sandbox_rails/storage/.keep +0 -0
  366. data/sandbox/itsi_sandbox_rails/test/application_system_test_case.rb +0 -5
  367. data/sandbox/itsi_sandbox_rails/test/channels/application_cable/connection_test.rb +0 -13
  368. data/sandbox/itsi_sandbox_rails/test/controllers/.keep +0 -0
  369. data/sandbox/itsi_sandbox_rails/test/fixtures/files/.keep +0 -0
  370. data/sandbox/itsi_sandbox_rails/test/helpers/.keep +0 -0
  371. data/sandbox/itsi_sandbox_rails/test/integration/.keep +0 -0
  372. data/sandbox/itsi_sandbox_rails/test/mailers/.keep +0 -0
  373. data/sandbox/itsi_sandbox_rails/test/models/.keep +0 -0
  374. data/sandbox/itsi_sandbox_rails/test/system/.keep +0 -0
  375. data/sandbox/itsi_sandbox_rails/test/test_helper.rb +0 -15
  376. data/sandbox/itsi_sandbox_rails/tmp/.keep +0 -0
  377. data/sandbox/itsi_sandbox_rails/tmp/pids/.keep +0 -0
  378. data/sandbox/itsi_sandbox_rails/tmp/storage/.keep +0 -0
  379. data/sandbox/itsi_sandbox_rails/vendor/.keep +0 -0
  380. data/sandbox/itsi_sandbox_rails/vendor/javascript/.keep +0 -0
  381. data/sandbox/itsi_sandbox_roda/Gemfile +0 -5
  382. data/sandbox/itsi_sandbox_roda/Gemfile.lock +0 -37
  383. data/sandbox/itsi_sandbox_roda/config.ru +0 -39
  384. data/sandbox/itsi_sinatra/Gemfile +0 -9
  385. data/sandbox/itsi_sinatra/Gemfile.lock +0 -81
  386. data/sandbox/itsi_sinatra/app.rb +0 -8
  387. data/sandbox/pebble/docker-compose.yml +0 -11
  388. data/sandbox/static_files/.env +0 -1
  389. data/sandbox/static_files/404.html +0 -25
  390. data/sandbox/static_files/_DSC0102.NEF.jpg +0 -0
  391. data/sandbox/static_files/about.html +0 -68
  392. data/sandbox/static_files/tiny.html +0 -1
  393. data/sandbox/static_files/writebook.zip +0 -0
data/Cargo.lock CHANGED
@@ -56,6 +56,65 @@ dependencies = [
56
56
  "libc",
57
57
  ]
58
58
 
59
+ [[package]]
60
+ name = "ansi_term"
61
+ version = "0.12.1"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
64
+ dependencies = [
65
+ "winapi",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstream"
70
+ version = "0.6.18"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
73
+ dependencies = [
74
+ "anstyle",
75
+ "anstyle-parse",
76
+ "anstyle-query",
77
+ "anstyle-wincon",
78
+ "colorchoice",
79
+ "is_terminal_polyfill",
80
+ "utf8parse",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle"
85
+ version = "1.0.10"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
88
+
89
+ [[package]]
90
+ name = "anstyle-parse"
91
+ version = "0.2.6"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
94
+ dependencies = [
95
+ "utf8parse",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstyle-query"
100
+ version = "1.1.2"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
103
+ dependencies = [
104
+ "windows-sys 0.59.0",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anstyle-wincon"
109
+ version = "3.0.7"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
112
+ dependencies = [
113
+ "anstyle",
114
+ "once_cell",
115
+ "windows-sys 0.59.0",
116
+ ]
117
+
59
118
  [[package]]
60
119
  name = "anyhow"
61
120
  version = "1.0.97"
@@ -104,7 +163,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
104
163
  dependencies = [
105
164
  "proc-macro2",
106
165
  "quote",
107
- "syn 2.0.98",
166
+ "syn 2.0.100",
108
167
  "synstructure",
109
168
  ]
110
169
 
@@ -116,7 +175,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
116
175
  dependencies = [
117
176
  "proc-macro2",
118
177
  "quote",
119
- "syn 2.0.98",
178
+ "syn 2.0.100",
120
179
  ]
121
180
 
122
181
  [[package]]
@@ -133,9 +192,9 @@ dependencies = [
133
192
 
134
193
  [[package]]
135
194
  name = "async-compression"
136
- version = "0.4.21"
195
+ version = "0.4.22"
137
196
  source = "registry+https://github.com/rust-lang/crates.io-index"
138
- checksum = "c0cf008e5e1a9e9e22a7d3c9a4992e21a350290069e36d8fb72304ed17e8f2d2"
197
+ checksum = "59a194f9d963d8099596278594b3107448656ba73831c9d8c783e613ce86da64"
139
198
  dependencies = [
140
199
  "brotli",
141
200
  "flate2",
@@ -150,13 +209,13 @@ dependencies = [
150
209
 
151
210
  [[package]]
152
211
  name = "async-trait"
153
- version = "0.1.87"
212
+ version = "0.1.88"
154
213
  source = "registry+https://github.com/rust-lang/crates.io-index"
155
- checksum = "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97"
214
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
156
215
  dependencies = [
157
216
  "proc-macro2",
158
217
  "quote",
159
- "syn 2.0.98",
218
+ "syn 2.0.100",
160
219
  ]
161
220
 
162
221
  [[package]]
@@ -184,34 +243,104 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
184
243
 
185
244
  [[package]]
186
245
  name = "aws-lc-rs"
187
- version = "1.12.4"
246
+ version = "1.13.0"
188
247
  source = "registry+https://github.com/rust-lang/crates.io-index"
189
- checksum = "4cd755adf9707cf671e31d944a189be3deaaeee11c8bc1d669bb8022ac90fbd0"
248
+ checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
190
249
  dependencies = [
191
250
  "aws-lc-sys",
192
- "paste",
193
251
  "zeroize",
194
252
  ]
195
253
 
196
254
  [[package]]
197
255
  name = "aws-lc-sys"
198
- version = "0.26.0"
256
+ version = "0.28.0"
199
257
  source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "0f9dd2e03ee80ca2822dd6ea431163d2ef259f2066a4d6ccaca6d9dcb386aa43"
258
+ checksum = "b9f7720b74ed28ca77f90769a71fd8c637a0137f6fae4ae947e1050229cff57f"
201
259
  dependencies = [
202
260
  "bindgen",
203
261
  "cc",
204
262
  "cmake",
205
263
  "dunce",
206
264
  "fs_extra",
207
- "paste",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "axum"
269
+ version = "0.7.9"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
272
+ dependencies = [
273
+ "async-trait",
274
+ "axum-core",
275
+ "bytes",
276
+ "futures-util",
277
+ "http 1.3.1",
278
+ "http-body 1.0.1",
279
+ "http-body-util",
280
+ "hyper 1.6.0",
281
+ "hyper-util",
282
+ "itoa",
283
+ "matchit",
284
+ "memchr",
285
+ "mime",
286
+ "percent-encoding",
287
+ "pin-project-lite",
288
+ "rustversion",
289
+ "serde",
290
+ "serde_json",
291
+ "serde_path_to_error",
292
+ "serde_urlencoded",
293
+ "sync_wrapper",
294
+ "tokio",
295
+ "tower",
296
+ "tower-layer",
297
+ "tower-service",
298
+ "tracing",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "axum-core"
303
+ version = "0.4.5"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
306
+ dependencies = [
307
+ "async-trait",
308
+ "bytes",
309
+ "futures-util",
310
+ "http 1.3.1",
311
+ "http-body 1.0.1",
312
+ "http-body-util",
313
+ "mime",
314
+ "pin-project-lite",
315
+ "rustversion",
316
+ "sync_wrapper",
317
+ "tower-layer",
318
+ "tower-service",
319
+ "tracing",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "axum-server"
324
+ version = "0.7.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "495c05f60d6df0093e8fb6e74aa5846a0ad06abaf96d76166283720bf740f8ab"
327
+ dependencies = [
328
+ "bytes",
329
+ "fs-err",
330
+ "http 1.3.1",
331
+ "http-body 1.0.1",
332
+ "hyper 1.6.0",
333
+ "hyper-util",
334
+ "tokio",
335
+ "tokio-rustls",
336
+ "tower-service",
208
337
  ]
209
338
 
210
339
  [[package]]
211
340
  name = "backon"
212
- version = "1.4.1"
341
+ version = "1.5.0"
213
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
214
- checksum = "970d91570c01a8a5959b36ad7dd1c30642df24b6b3068710066f6809f7033bb7"
343
+ checksum = "fd0b50b1b78dbadd44ab18b3c794e496f3a139abb9fbc27d9c94c4eebbb96496"
215
344
  dependencies = [
216
345
  "fastrand",
217
346
  ]
@@ -231,6 +360,12 @@ dependencies = [
231
360
  "windows-targets 0.52.6",
232
361
  ]
233
362
 
363
+ [[package]]
364
+ name = "base64"
365
+ version = "0.21.7"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
368
+
234
369
  [[package]]
235
370
  name = "base64"
236
371
  version = "0.22.1"
@@ -249,9 +384,9 @@ version = "0.17.0"
249
384
  source = "registry+https://github.com/rust-lang/crates.io-index"
250
385
  checksum = "92758ad6077e4c76a6cadbce5005f666df70d4f13b19976b1a8062eef880040f"
251
386
  dependencies = [
252
- "base64",
387
+ "base64 0.22.1",
253
388
  "blowfish",
254
- "getrandom 0.3.1",
389
+ "getrandom 0.3.2",
255
390
  "subtle",
256
391
  "zeroize",
257
392
  ]
@@ -262,7 +397,7 @@ version = "0.69.5"
262
397
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
398
  checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
264
399
  dependencies = [
265
- "bitflags 2.8.0",
400
+ "bitflags 2.9.0",
266
401
  "cexpr",
267
402
  "clang-sys",
268
403
  "itertools",
@@ -275,7 +410,7 @@ dependencies = [
275
410
  "regex",
276
411
  "rustc-hash 1.1.0",
277
412
  "shlex",
278
- "syn 2.0.98",
413
+ "syn 2.0.100",
279
414
  "which",
280
415
  ]
281
416
 
@@ -287,9 +422,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
287
422
 
288
423
  [[package]]
289
424
  name = "bitflags"
290
- version = "2.8.0"
425
+ version = "2.9.0"
291
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
292
- checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
427
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
293
428
 
294
429
  [[package]]
295
430
  name = "blake2"
@@ -342,9 +477,9 @@ dependencies = [
342
477
 
343
478
  [[package]]
344
479
  name = "bstr"
345
- version = "1.11.3"
480
+ version = "1.12.0"
346
481
  source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
482
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
348
483
  dependencies = [
349
484
  "memchr",
350
485
  "serde",
@@ -370,9 +505,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
370
505
 
371
506
  [[package]]
372
507
  name = "cc"
373
- version = "1.2.15"
508
+ version = "1.2.19"
374
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af"
510
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
376
511
  dependencies = [
377
512
  "jobserver",
378
513
  "libc",
@@ -435,6 +570,61 @@ dependencies = [
435
570
  "libloading",
436
571
  ]
437
572
 
573
+ [[package]]
574
+ name = "clap"
575
+ version = "2.34.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
578
+ dependencies = [
579
+ "ansi_term",
580
+ "atty",
581
+ "bitflags 1.3.2",
582
+ "strsim 0.8.0",
583
+ "textwrap",
584
+ "unicode-width",
585
+ "vec_map",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "clap"
590
+ version = "4.5.36"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
593
+ dependencies = [
594
+ "clap_builder",
595
+ "clap_derive",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "clap_builder"
600
+ version = "4.5.36"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
603
+ dependencies = [
604
+ "anstream",
605
+ "anstyle",
606
+ "clap_lex",
607
+ "strsim 0.11.1",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "clap_derive"
612
+ version = "4.5.32"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
615
+ dependencies = [
616
+ "heck 0.5.0",
617
+ "proc-macro2",
618
+ "quote",
619
+ "syn 2.0.100",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "clap_lex"
624
+ version = "0.7.4"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
627
+
438
628
  [[package]]
439
629
  name = "cmake"
440
630
  version = "0.1.54"
@@ -444,6 +634,22 @@ dependencies = [
444
634
  "cc",
445
635
  ]
446
636
 
637
+ [[package]]
638
+ name = "colorchoice"
639
+ version = "1.0.3"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
642
+
643
+ [[package]]
644
+ name = "colored"
645
+ version = "2.2.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
648
+ dependencies = [
649
+ "lazy_static",
650
+ "windows-sys 0.59.0",
651
+ ]
652
+
447
653
  [[package]]
448
654
  name = "combine"
449
655
  version = "4.6.7"
@@ -514,9 +720,9 @@ dependencies = [
514
720
 
515
721
  [[package]]
516
722
  name = "crossbeam-channel"
517
- version = "0.5.14"
723
+ version = "0.5.15"
518
724
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
725
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
520
726
  dependencies = [
521
727
  "crossbeam-utils",
522
728
  ]
@@ -578,9 +784,9 @@ dependencies = [
578
784
 
579
785
  [[package]]
580
786
  name = "deranged"
581
- version = "0.3.11"
787
+ version = "0.4.0"
582
788
  source = "registry+https://github.com/rust-lang/crates.io-index"
583
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
789
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
584
790
  dependencies = [
585
791
  "powerfmt",
586
792
  ]
@@ -602,7 +808,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
602
808
  dependencies = [
603
809
  "proc-macro2",
604
810
  "quote",
605
- "syn 2.0.98",
811
+ "syn 2.0.100",
606
812
  "unicode-xid",
607
813
  ]
608
814
 
@@ -646,7 +852,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
646
852
  dependencies = [
647
853
  "proc-macro2",
648
854
  "quote",
649
- "syn 2.0.98",
855
+ "syn 2.0.100",
650
856
  ]
651
857
 
652
858
  [[package]]
@@ -661,6 +867,15 @@ version = "1.15.0"
661
867
  source = "registry+https://github.com/rust-lang/crates.io-index"
662
868
  checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
663
869
 
870
+ [[package]]
871
+ name = "encoding_rs"
872
+ version = "0.8.35"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
875
+ dependencies = [
876
+ "cfg-if",
877
+ ]
878
+
664
879
  [[package]]
665
880
  name = "equivalent"
666
881
  version = "1.0.2"
@@ -669,9 +884,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
669
884
 
670
885
  [[package]]
671
886
  name = "errno"
672
- version = "0.3.10"
887
+ version = "0.3.11"
673
888
  source = "registry+https://github.com/rust-lang/crates.io-index"
674
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
889
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
675
890
  dependencies = [
676
891
  "libc",
677
892
  "windows-sys 0.59.0",
@@ -690,9 +905,9 @@ dependencies = [
690
905
 
691
906
  [[package]]
692
907
  name = "event-listener-strategy"
693
- version = "0.5.3"
908
+ version = "0.5.4"
694
909
  source = "registry+https://github.com/rust-lang/crates.io-index"
695
- checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
910
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
696
911
  dependencies = [
697
912
  "event-listener",
698
913
  "pin-project-lite",
@@ -718,9 +933,9 @@ dependencies = [
718
933
 
719
934
  [[package]]
720
935
  name = "flate2"
721
- version = "1.1.0"
936
+ version = "1.1.1"
722
937
  source = "registry+https://github.com/rust-lang/crates.io-index"
723
- checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
938
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
724
939
  dependencies = [
725
940
  "crc32fast",
726
941
  "miniz_oxide",
@@ -741,6 +956,16 @@ dependencies = [
741
956
  "percent-encoding",
742
957
  ]
743
958
 
959
+ [[package]]
960
+ name = "fs-err"
961
+ version = "3.1.0"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "1f89bda4c2a21204059a977ed3bfe746677dfd137b83c339e702b0ac91d482aa"
964
+ dependencies = [
965
+ "autocfg",
966
+ "tokio",
967
+ ]
968
+
744
969
  [[package]]
745
970
  name = "fs2"
746
971
  version = "0.4.3"
@@ -822,7 +1047,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
822
1047
  dependencies = [
823
1048
  "proc-macro2",
824
1049
  "quote",
825
- "syn 2.0.98",
1050
+ "syn 2.0.100",
826
1051
  ]
827
1052
 
828
1053
  [[package]]
@@ -893,14 +1118,16 @@ dependencies = [
893
1118
 
894
1119
  [[package]]
895
1120
  name = "getrandom"
896
- version = "0.3.1"
1121
+ version = "0.3.2"
897
1122
  source = "registry+https://github.com/rust-lang/crates.io-index"
898
- checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
1123
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
899
1124
  dependencies = [
900
1125
  "cfg-if",
1126
+ "js-sys",
901
1127
  "libc",
902
- "wasi 0.13.3+wasi-0.2.2",
903
- "windows-targets 0.52.6",
1128
+ "r-efi",
1129
+ "wasi 0.14.2+wasi-0.2.4",
1130
+ "wasm-bindgen",
904
1131
  ]
905
1132
 
906
1133
  [[package]]
@@ -928,6 +1155,25 @@ dependencies = [
928
1155
  "regex-syntax 0.8.5",
929
1156
  ]
930
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
+
931
1177
  [[package]]
932
1178
  name = "h2"
933
1179
  version = "0.4.8"
@@ -939,7 +1185,7 @@ dependencies = [
939
1185
  "fnv",
940
1186
  "futures-core",
941
1187
  "futures-sink",
942
- "http",
1188
+ "http 1.3.1",
943
1189
  "indexmap",
944
1190
  "slab",
945
1191
  "tokio",
@@ -953,6 +1199,45 @@ version = "0.15.2"
953
1199
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
1200
  checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
955
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
+
956
1241
  [[package]]
957
1242
  name = "hermit-abi"
958
1243
  version = "0.1.19"
@@ -977,6 +1262,17 @@ dependencies = [
977
1262
  "windows-sys 0.59.0",
978
1263
  ]
979
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
+
980
1276
  [[package]]
981
1277
  name = "http"
982
1278
  version = "1.3.1"
@@ -988,6 +1284,17 @@ dependencies = [
988
1284
  "itoa",
989
1285
  ]
990
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
+
991
1298
  [[package]]
992
1299
  name = "http-body"
993
1300
  version = "1.0.1"
@@ -995,19 +1302,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
995
1302
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
996
1303
  dependencies = [
997
1304
  "bytes",
998
- "http",
1305
+ "http 1.3.1",
999
1306
  ]
1000
1307
 
1001
1308
  [[package]]
1002
1309
  name = "http-body-util"
1003
- version = "0.1.2"
1310
+ version = "0.1.3"
1004
1311
  source = "registry+https://github.com/rust-lang/crates.io-index"
1005
- checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1312
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1006
1313
  dependencies = [
1007
1314
  "bytes",
1008
- "futures-util",
1009
- "http",
1010
- "http-body",
1315
+ "futures-core",
1316
+ "http 1.3.1",
1317
+ "http-body 1.0.1",
1011
1318
  "pin-project-lite",
1012
1319
  ]
1013
1320
 
@@ -1023,6 +1330,30 @@ version = "1.0.3"
1023
1330
  source = "registry+https://github.com/rust-lang/crates.io-index"
1024
1331
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1025
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
+
1026
1357
  [[package]]
1027
1358
  name = "hyper"
1028
1359
  version = "1.6.0"
@@ -1032,9 +1363,9 @@ dependencies = [
1032
1363
  "bytes",
1033
1364
  "futures-channel",
1034
1365
  "futures-util",
1035
- "h2",
1036
- "http",
1037
- "http-body",
1366
+ "h2 0.4.8",
1367
+ "http 1.3.1",
1368
+ "http-body 1.0.1",
1038
1369
  "httparse",
1039
1370
  "httpdate",
1040
1371
  "itoa",
@@ -1051,8 +1382,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
1382
  checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1052
1383
  dependencies = [
1053
1384
  "futures-util",
1054
- "http",
1055
- "hyper",
1385
+ "http 1.3.1",
1386
+ "hyper 1.6.0",
1056
1387
  "hyper-util",
1057
1388
  "rustls",
1058
1389
  "rustls-pki-types",
@@ -1064,16 +1395,17 @@ dependencies = [
1064
1395
 
1065
1396
  [[package]]
1066
1397
  name = "hyper-util"
1067
- version = "0.1.10"
1398
+ version = "0.1.11"
1068
1399
  source = "registry+https://github.com/rust-lang/crates.io-index"
1069
- checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
1400
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1070
1401
  dependencies = [
1071
1402
  "bytes",
1072
1403
  "futures-channel",
1073
1404
  "futures-util",
1074
- "http",
1075
- "http-body",
1076
- "hyper",
1405
+ "http 1.3.1",
1406
+ "http-body 1.0.1",
1407
+ "hyper 1.6.0",
1408
+ "libc",
1077
1409
  "pin-project-lite",
1078
1410
  "socket2",
1079
1411
  "tokio",
@@ -1083,16 +1415,17 @@ dependencies = [
1083
1415
 
1084
1416
  [[package]]
1085
1417
  name = "iana-time-zone"
1086
- version = "0.1.61"
1418
+ version = "0.1.63"
1087
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1088
- checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
1420
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1089
1421
  dependencies = [
1090
1422
  "android_system_properties",
1091
1423
  "core-foundation-sys",
1092
1424
  "iana-time-zone-haiku",
1093
1425
  "js-sys",
1426
+ "log",
1094
1427
  "wasm-bindgen",
1095
- "windows-core 0.52.0",
1428
+ "windows-core 0.61.0",
1096
1429
  ]
1097
1430
 
1098
1431
  [[package]]
@@ -1145,9 +1478,9 @@ dependencies = [
1145
1478
 
1146
1479
  [[package]]
1147
1480
  name = "icu_locid_transform_data"
1148
- version = "1.5.0"
1481
+ version = "1.5.1"
1149
1482
  source = "registry+https://github.com/rust-lang/crates.io-index"
1150
- checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1483
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1151
1484
 
1152
1485
  [[package]]
1153
1486
  name = "icu_normalizer"
@@ -1169,9 +1502,9 @@ dependencies = [
1169
1502
 
1170
1503
  [[package]]
1171
1504
  name = "icu_normalizer_data"
1172
- version = "1.5.0"
1505
+ version = "1.5.1"
1173
1506
  source = "registry+https://github.com/rust-lang/crates.io-index"
1174
- checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1507
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1175
1508
 
1176
1509
  [[package]]
1177
1510
  name = "icu_properties"
@@ -1190,9 +1523,9 @@ dependencies = [
1190
1523
 
1191
1524
  [[package]]
1192
1525
  name = "icu_properties_data"
1193
- version = "1.5.0"
1526
+ version = "1.5.1"
1194
1527
  source = "registry+https://github.com/rust-lang/crates.io-index"
1195
- checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1528
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1196
1529
 
1197
1530
  [[package]]
1198
1531
  name = "icu_provider"
@@ -1219,7 +1552,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1219
1552
  dependencies = [
1220
1553
  "proc-macro2",
1221
1554
  "quote",
1222
- "syn 2.0.98",
1555
+ "syn 2.0.100",
1223
1556
  ]
1224
1557
 
1225
1558
  [[package]]
@@ -1245,9 +1578,9 @@ dependencies = [
1245
1578
 
1246
1579
  [[package]]
1247
1580
  name = "indexmap"
1248
- version = "2.7.1"
1581
+ version = "2.9.0"
1249
1582
  source = "registry+https://github.com/rust-lang/crates.io-index"
1250
- checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1583
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1251
1584
  dependencies = [
1252
1585
  "equivalent",
1253
1586
  "hashbrown",
@@ -1259,7 +1592,7 @@ version = "0.11.0"
1259
1592
  source = "registry+https://github.com/rust-lang/crates.io-index"
1260
1593
  checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1261
1594
  dependencies = [
1262
- "bitflags 2.8.0",
1595
+ "bitflags 2.9.0",
1263
1596
  "inotify-sys",
1264
1597
  "libc",
1265
1598
  ]
@@ -1288,6 +1621,12 @@ version = "2.11.0"
1288
1621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1289
1622
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1290
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
+
1291
1630
  [[package]]
1292
1631
  name = "itertools"
1293
1632
  version = "0.12.1"
@@ -1299,9 +1638,9 @@ dependencies = [
1299
1638
 
1300
1639
  [[package]]
1301
1640
  name = "itoa"
1302
- version = "1.0.14"
1641
+ version = "1.0.15"
1303
1642
  source = "registry+https://github.com/rust-lang/crates.io-index"
1304
- checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1643
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1305
1644
 
1306
1645
  [[package]]
1307
1646
  name = "itsi-scheduler"
@@ -1323,13 +1662,13 @@ dependencies = [
1323
1662
 
1324
1663
  [[package]]
1325
1664
  name = "itsi-server"
1326
- version = "0.1.19"
1665
+ version = "0.1.20"
1327
1666
  dependencies = [
1328
1667
  "argon2",
1329
1668
  "async-channel",
1330
1669
  "async-compression",
1331
1670
  "async-trait",
1332
- "base64",
1671
+ "base64 0.22.1",
1333
1672
  "bcrypt",
1334
1673
  "bytes",
1335
1674
  "chrono",
@@ -1340,12 +1679,13 @@ dependencies = [
1340
1679
  "fs2",
1341
1680
  "futures",
1342
1681
  "globset",
1343
- "http",
1682
+ "http 1.3.1",
1344
1683
  "http-body-util",
1345
1684
  "httparse",
1346
1685
  "httpdate",
1347
- "hyper",
1686
+ "hyper 1.6.0",
1348
1687
  "hyper-util",
1688
+ "itsi_acme",
1349
1689
  "itsi_error",
1350
1690
  "itsi_rb_helpers",
1351
1691
  "itsi_tracing",
@@ -1376,13 +1716,46 @@ dependencies = [
1376
1716
  "tempfile",
1377
1717
  "tokio",
1378
1718
  "tokio-rustls",
1379
- "tokio-rustls-acme",
1380
1719
  "tokio-stream",
1381
1720
  "tokio-util",
1382
1721
  "tracing",
1383
1722
  "url",
1384
1723
  ]
1385
1724
 
1725
+ [[package]]
1726
+ name = "itsi_acme"
1727
+ version = "0.1.0"
1728
+ dependencies = [
1729
+ "async-trait",
1730
+ "axum",
1731
+ "axum-server",
1732
+ "base64 0.22.1",
1733
+ "chrono",
1734
+ "clap 4.5.36",
1735
+ "futures",
1736
+ "log",
1737
+ "num-bigint",
1738
+ "pem",
1739
+ "proc-macro2",
1740
+ "rcgen",
1741
+ "reqwest",
1742
+ "ring",
1743
+ "rustls",
1744
+ "serde",
1745
+ "serde_json",
1746
+ "simple_logger",
1747
+ "structopt",
1748
+ "thiserror 2.0.12",
1749
+ "time",
1750
+ "tokio",
1751
+ "tokio-rustls",
1752
+ "tokio-stream",
1753
+ "tokio-util",
1754
+ "warp",
1755
+ "webpki-roots",
1756
+ "x509-parser",
1757
+ ]
1758
+
1386
1759
  [[package]]
1387
1760
  name = "itsi_error"
1388
1761
  version = "0.1.0"
@@ -1428,10 +1801,11 @@ dependencies = [
1428
1801
 
1429
1802
  [[package]]
1430
1803
  name = "jobserver"
1431
- version = "0.1.32"
1804
+ version = "0.1.33"
1432
1805
  source = "registry+https://github.com/rust-lang/crates.io-index"
1433
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1806
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1434
1807
  dependencies = [
1808
+ "getrandom 0.3.2",
1435
1809
  "libc",
1436
1810
  ]
1437
1811
 
@@ -1451,7 +1825,7 @@ version = "9.3.1"
1451
1825
  source = "registry+https://github.com/rust-lang/crates.io-index"
1452
1826
  checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1453
1827
  dependencies = [
1454
- "base64",
1828
+ "base64 0.22.1",
1455
1829
  "js-sys",
1456
1830
  "pem",
1457
1831
  "ring",
@@ -1494,9 +1868,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1494
1868
 
1495
1869
  [[package]]
1496
1870
  name = "libc"
1497
- version = "0.2.170"
1871
+ version = "0.2.171"
1498
1872
  source = "registry+https://github.com/rust-lang/crates.io-index"
1499
- checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
1873
+ checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1500
1874
 
1501
1875
  [[package]]
1502
1876
  name = "libloading"
@@ -1514,7 +1888,7 @@ version = "0.1.3"
1514
1888
  source = "registry+https://github.com/rust-lang/crates.io-index"
1515
1889
  checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1516
1890
  dependencies = [
1517
- "bitflags 2.8.0",
1891
+ "bitflags 2.9.0",
1518
1892
  "libc",
1519
1893
  "redox_syscall",
1520
1894
  ]
@@ -1527,9 +1901,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1527
1901
 
1528
1902
  [[package]]
1529
1903
  name = "linux-raw-sys"
1530
- version = "0.9.2"
1904
+ version = "0.9.4"
1531
1905
  source = "registry+https://github.com/rust-lang/crates.io-index"
1532
- checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
1906
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1533
1907
 
1534
1908
  [[package]]
1535
1909
  name = "litemap"
@@ -1549,9 +1923,9 @@ dependencies = [
1549
1923
 
1550
1924
  [[package]]
1551
1925
  name = "log"
1552
- version = "0.4.26"
1926
+ version = "0.4.27"
1553
1927
  source = "registry+https://github.com/rust-lang/crates.io-index"
1554
- checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
1928
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1555
1929
 
1556
1930
  [[package]]
1557
1931
  name = "loom"
@@ -1587,7 +1961,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
1587
1961
  dependencies = [
1588
1962
  "proc-macro2",
1589
1963
  "quote",
1590
- "syn 2.0.98",
1964
+ "syn 2.0.100",
1591
1965
  ]
1592
1966
 
1593
1967
  [[package]]
@@ -1599,6 +1973,12 @@ dependencies = [
1599
1973
  "regex-automata 0.1.10",
1600
1974
  ]
1601
1975
 
1976
+ [[package]]
1977
+ name = "matchit"
1978
+ version = "0.7.3"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1981
+
1602
1982
  [[package]]
1603
1983
  name = "md5"
1604
1984
  version = "0.7.0"
@@ -1626,6 +2006,16 @@ version = "0.3.17"
1626
2006
  source = "registry+https://github.com/rust-lang/crates.io-index"
1627
2007
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1628
2008
 
2009
+ [[package]]
2010
+ name = "mime_guess"
2011
+ version = "2.0.5"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2014
+ dependencies = [
2015
+ "mime",
2016
+ "unicase",
2017
+ ]
2018
+
1629
2019
  [[package]]
1630
2020
  name = "minimal-lexical"
1631
2021
  version = "0.2.1"
@@ -1634,9 +2024,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1634
2024
 
1635
2025
  [[package]]
1636
2026
  name = "miniz_oxide"
1637
- version = "0.8.5"
2027
+ version = "0.8.8"
1638
2028
  source = "registry+https://github.com/rust-lang/crates.io-index"
1639
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2029
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1640
2030
  dependencies = [
1641
2031
  "adler2",
1642
2032
  ]
@@ -1672,13 +2062,31 @@ dependencies = [
1672
2062
  "uuid",
1673
2063
  ]
1674
2064
 
2065
+ [[package]]
2066
+ name = "multer"
2067
+ version = "2.1.0"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
2070
+ dependencies = [
2071
+ "bytes",
2072
+ "encoding_rs",
2073
+ "futures-util",
2074
+ "http 0.2.12",
2075
+ "httparse",
2076
+ "log",
2077
+ "memchr",
2078
+ "mime",
2079
+ "spin",
2080
+ "version_check",
2081
+ ]
2082
+
1675
2083
  [[package]]
1676
2084
  name = "nix"
1677
2085
  version = "0.29.0"
1678
2086
  source = "registry+https://github.com/rust-lang/crates.io-index"
1679
2087
  checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1680
2088
  dependencies = [
1681
- "bitflags 2.8.0",
2089
+ "bitflags 2.9.0",
1682
2090
  "cfg-if",
1683
2091
  "cfg_aliases",
1684
2092
  "libc",
@@ -1701,7 +2109,7 @@ version = "8.0.0"
1701
2109
  source = "registry+https://github.com/rust-lang/crates.io-index"
1702
2110
  checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
1703
2111
  dependencies = [
1704
- "bitflags 2.8.0",
2112
+ "bitflags 2.9.0",
1705
2113
  "filetime",
1706
2114
  "fsevent-sys",
1707
2115
  "inotify",
@@ -1783,6 +2191,15 @@ dependencies = [
1783
2191
  "libc",
1784
2192
  ]
1785
2193
 
2194
+ [[package]]
2195
+ name = "num_threads"
2196
+ version = "0.1.7"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2199
+ dependencies = [
2200
+ "libc",
2201
+ ]
2202
+
1786
2203
  [[package]]
1787
2204
  name = "object"
1788
2205
  version = "0.36.7"
@@ -1803,9 +2220,9 @@ dependencies = [
1803
2220
 
1804
2221
  [[package]]
1805
2222
  name = "once_cell"
1806
- version = "1.20.3"
2223
+ version = "1.21.3"
1807
2224
  source = "registry+https://github.com/rust-lang/crates.io-index"
1808
- checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
2225
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1809
2226
 
1810
2227
  [[package]]
1811
2228
  name = "openssl-probe"
@@ -1865,19 +2282,13 @@ dependencies = [
1865
2282
  "subtle",
1866
2283
  ]
1867
2284
 
1868
- [[package]]
1869
- name = "paste"
1870
- version = "1.0.15"
1871
- source = "registry+https://github.com/rust-lang/crates.io-index"
1872
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1873
-
1874
2285
  [[package]]
1875
2286
  name = "pem"
1876
2287
  version = "3.0.5"
1877
2288
  source = "registry+https://github.com/rust-lang/crates.io-index"
1878
2289
  checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1879
2290
  dependencies = [
1880
- "base64",
2291
+ "base64 0.22.1",
1881
2292
  "serde",
1882
2293
  ]
1883
2294
 
@@ -1889,22 +2300,22 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1889
2300
 
1890
2301
  [[package]]
1891
2302
  name = "pin-project"
1892
- version = "1.1.9"
2303
+ version = "1.1.10"
1893
2304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1894
- checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
2305
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1895
2306
  dependencies = [
1896
2307
  "pin-project-internal",
1897
2308
  ]
1898
2309
 
1899
2310
  [[package]]
1900
2311
  name = "pin-project-internal"
1901
- version = "1.1.9"
2312
+ version = "1.1.10"
1902
2313
  source = "registry+https://github.com/rust-lang/crates.io-index"
1903
- checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
2314
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1904
2315
  dependencies = [
1905
2316
  "proc-macro2",
1906
2317
  "quote",
1907
- "syn 2.0.98",
2318
+ "syn 2.0.100",
1908
2319
  ]
1909
2320
 
1910
2321
  [[package]]
@@ -1941,37 +2352,62 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1941
2352
  name = "ppv-lite86"
1942
2353
  version = "0.2.21"
1943
2354
  source = "registry+https://github.com/rust-lang/crates.io-index"
1944
- checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2355
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2356
+ dependencies = [
2357
+ "zerocopy",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "prettyplease"
2362
+ version = "0.2.32"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2365
+ dependencies = [
2366
+ "proc-macro2",
2367
+ "syn 2.0.100",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "proc-macro-error"
2372
+ version = "1.0.4"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1945
2375
  dependencies = [
1946
- "zerocopy",
2376
+ "proc-macro-error-attr",
2377
+ "proc-macro2",
2378
+ "quote",
2379
+ "syn 1.0.109",
2380
+ "version_check",
1947
2381
  ]
1948
2382
 
1949
2383
  [[package]]
1950
- name = "prettyplease"
1951
- version = "0.2.29"
2384
+ name = "proc-macro-error-attr"
2385
+ version = "1.0.4"
1952
2386
  source = "registry+https://github.com/rust-lang/crates.io-index"
1953
- checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2387
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1954
2388
  dependencies = [
1955
2389
  "proc-macro2",
1956
- "syn 2.0.98",
2390
+ "quote",
2391
+ "version_check",
1957
2392
  ]
1958
2393
 
1959
2394
  [[package]]
1960
2395
  name = "proc-macro2"
1961
- version = "1.0.93"
2396
+ version = "1.0.94"
1962
2397
  source = "registry+https://github.com/rust-lang/crates.io-index"
1963
- checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2398
+ checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
1964
2399
  dependencies = [
1965
2400
  "unicode-ident",
1966
2401
  ]
1967
2402
 
1968
2403
  [[package]]
1969
2404
  name = "quinn"
1970
- version = "0.11.6"
2405
+ version = "0.11.7"
1971
2406
  source = "registry+https://github.com/rust-lang/crates.io-index"
1972
- checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2407
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
1973
2408
  dependencies = [
1974
2409
  "bytes",
2410
+ "cfg_aliases",
1975
2411
  "pin-project-lite",
1976
2412
  "quinn-proto",
1977
2413
  "quinn-udp",
@@ -1981,17 +2417,18 @@ dependencies = [
1981
2417
  "thiserror 2.0.12",
1982
2418
  "tokio",
1983
2419
  "tracing",
2420
+ "web-time",
1984
2421
  ]
1985
2422
 
1986
2423
  [[package]]
1987
2424
  name = "quinn-proto"
1988
- version = "0.11.9"
2425
+ version = "0.11.10"
1989
2426
  source = "registry+https://github.com/rust-lang/crates.io-index"
1990
- checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2427
+ checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
1991
2428
  dependencies = [
1992
2429
  "bytes",
1993
- "getrandom 0.2.15",
1994
- "rand 0.8.5",
2430
+ "getrandom 0.3.2",
2431
+ "rand 0.9.0",
1995
2432
  "ring",
1996
2433
  "rustc-hash 2.1.1",
1997
2434
  "rustls",
@@ -2005,9 +2442,9 @@ dependencies = [
2005
2442
 
2006
2443
  [[package]]
2007
2444
  name = "quinn-udp"
2008
- version = "0.5.10"
2445
+ version = "0.5.11"
2009
2446
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
2447
+ checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
2011
2448
  dependencies = [
2012
2449
  "cfg_aliases",
2013
2450
  "libc",
@@ -2019,13 +2456,19 @@ dependencies = [
2019
2456
 
2020
2457
  [[package]]
2021
2458
  name = "quote"
2022
- version = "1.0.38"
2459
+ version = "1.0.40"
2023
2460
  source = "registry+https://github.com/rust-lang/crates.io-index"
2024
- checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2461
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2025
2462
  dependencies = [
2026
2463
  "proc-macro2",
2027
2464
  ]
2028
2465
 
2466
+ [[package]]
2467
+ name = "r-efi"
2468
+ version = "5.2.0"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2471
+
2029
2472
  [[package]]
2030
2473
  name = "r2d2"
2031
2474
  version = "0.8.10"
@@ -2094,7 +2537,7 @@ version = "0.9.3"
2094
2537
  source = "registry+https://github.com/rust-lang/crates.io-index"
2095
2538
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2096
2539
  dependencies = [
2097
- "getrandom 0.3.1",
2540
+ "getrandom 0.3.2",
2098
2541
  ]
2099
2542
 
2100
2543
  [[package]]
@@ -2138,7 +2581,7 @@ dependencies = [
2138
2581
  "quote",
2139
2582
  "regex",
2140
2583
  "shell-words",
2141
- "syn 2.0.98",
2584
+ "syn 2.0.100",
2142
2585
  ]
2143
2586
 
2144
2587
  [[package]]
@@ -2163,9 +2606,9 @@ dependencies = [
2163
2606
 
2164
2607
  [[package]]
2165
2608
  name = "redis"
2166
- version = "0.29.2"
2609
+ version = "0.29.5"
2167
2610
  source = "registry+https://github.com/rust-lang/crates.io-index"
2168
- checksum = "b110459d6e323b7cda23980c46c77157601199c9da6241552b284cd565a7a133"
2611
+ checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f"
2169
2612
  dependencies = [
2170
2613
  "arc-swap",
2171
2614
  "backon",
@@ -2191,11 +2634,11 @@ dependencies = [
2191
2634
 
2192
2635
  [[package]]
2193
2636
  name = "redox_syscall"
2194
- version = "0.5.9"
2637
+ version = "0.5.11"
2195
2638
  source = "registry+https://github.com/rust-lang/crates.io-index"
2196
- checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
2639
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2197
2640
  dependencies = [
2198
- "bitflags 2.8.0",
2641
+ "bitflags 2.9.0",
2199
2642
  ]
2200
2643
 
2201
2644
  [[package]]
@@ -2259,14 +2702,14 @@ version = "0.12.15"
2259
2702
  source = "registry+https://github.com/rust-lang/crates.io-index"
2260
2703
  checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2261
2704
  dependencies = [
2262
- "base64",
2705
+ "base64 0.22.1",
2263
2706
  "bytes",
2264
2707
  "futures-core",
2265
2708
  "futures-util",
2266
- "http",
2267
- "http-body",
2709
+ "http 1.3.1",
2710
+ "http-body 1.0.1",
2268
2711
  "http-body-util",
2269
- "hyper",
2712
+ "hyper 1.6.0",
2270
2713
  "hyper-rustls",
2271
2714
  "hyper-util",
2272
2715
  "ipnet",
@@ -2354,7 +2797,7 @@ version = "0.38.44"
2354
2797
  source = "registry+https://github.com/rust-lang/crates.io-index"
2355
2798
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2356
2799
  dependencies = [
2357
- "bitflags 2.8.0",
2800
+ "bitflags 2.9.0",
2358
2801
  "errno",
2359
2802
  "libc",
2360
2803
  "linux-raw-sys 0.4.15",
@@ -2363,22 +2806,22 @@ dependencies = [
2363
2806
 
2364
2807
  [[package]]
2365
2808
  name = "rustix"
2366
- version = "1.0.1"
2809
+ version = "1.0.5"
2367
2810
  source = "registry+https://github.com/rust-lang/crates.io-index"
2368
- checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657"
2811
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2369
2812
  dependencies = [
2370
- "bitflags 2.8.0",
2813
+ "bitflags 2.9.0",
2371
2814
  "errno",
2372
2815
  "libc",
2373
- "linux-raw-sys 0.9.2",
2816
+ "linux-raw-sys 0.9.4",
2374
2817
  "windows-sys 0.59.0",
2375
2818
  ]
2376
2819
 
2377
2820
  [[package]]
2378
2821
  name = "rustls"
2379
- version = "0.23.23"
2822
+ version = "0.23.26"
2380
2823
  source = "registry+https://github.com/rust-lang/crates.io-index"
2381
- checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
2824
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2382
2825
  dependencies = [
2383
2826
  "aws-lc-rs",
2384
2827
  "log",
@@ -2422,9 +2865,9 @@ dependencies = [
2422
2865
 
2423
2866
  [[package]]
2424
2867
  name = "rustls-webpki"
2425
- version = "0.102.8"
2868
+ version = "0.103.1"
2426
2869
  source = "registry+https://github.com/rust-lang/crates.io-index"
2427
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2870
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2428
2871
  dependencies = [
2429
2872
  "aws-lc-rs",
2430
2873
  "ring",
@@ -2440,9 +2883,9 @@ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2440
2883
 
2441
2884
  [[package]]
2442
2885
  name = "ryu"
2443
- version = "1.0.19"
2886
+ version = "1.0.20"
2444
2887
  source = "registry+https://github.com/rust-lang/crates.io-index"
2445
- checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
2888
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2446
2889
 
2447
2890
  [[package]]
2448
2891
  name = "same-file"
@@ -2489,7 +2932,7 @@ version = "3.2.0"
2489
2932
  source = "registry+https://github.com/rust-lang/crates.io-index"
2490
2933
  checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2491
2934
  dependencies = [
2492
- "bitflags 2.8.0",
2935
+ "bitflags 2.9.0",
2493
2936
  "core-foundation",
2494
2937
  "core-foundation-sys",
2495
2938
  "libc",
@@ -2514,9 +2957,9 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2514
2957
 
2515
2958
  [[package]]
2516
2959
  name = "seq-macro"
2517
- version = "0.3.5"
2960
+ version = "0.3.6"
2518
2961
  source = "registry+https://github.com/rust-lang/crates.io-index"
2519
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
2962
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2520
2963
 
2521
2964
  [[package]]
2522
2965
  name = "serde"
@@ -2535,7 +2978,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2535
2978
  dependencies = [
2536
2979
  "proc-macro2",
2537
2980
  "quote",
2538
- "syn 2.0.98",
2981
+ "syn 2.0.100",
2539
2982
  ]
2540
2983
 
2541
2984
  [[package]]
@@ -2561,6 +3004,16 @@ dependencies = [
2561
3004
  "tap",
2562
3005
  ]
2563
3006
 
3007
+ [[package]]
3008
+ name = "serde_path_to_error"
3009
+ version = "0.1.17"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
3012
+ dependencies = [
3013
+ "itoa",
3014
+ "serde",
3015
+ ]
3016
+
2564
3017
  [[package]]
2565
3018
  name = "serde_urlencoded"
2566
3019
  version = "0.7.1"
@@ -2585,6 +3038,17 @@ dependencies = [
2585
3038
  "subtle",
2586
3039
  ]
2587
3040
 
3041
+ [[package]]
3042
+ name = "sha1"
3043
+ version = "0.10.6"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3046
+ dependencies = [
3047
+ "cfg-if",
3048
+ "cpufeatures",
3049
+ "digest",
3050
+ ]
3051
+
2588
3052
  [[package]]
2589
3053
  name = "sha1_smol"
2590
3054
  version = "1.0.1"
@@ -2644,6 +3108,18 @@ dependencies = [
2644
3108
  "time",
2645
3109
  ]
2646
3110
 
3111
+ [[package]]
3112
+ name = "simple_logger"
3113
+ version = "5.0.0"
3114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3115
+ checksum = "e8c5dfa5e08767553704aa0ffd9d9794d527103c736aba9854773851fd7497eb"
3116
+ dependencies = [
3117
+ "colored",
3118
+ "log",
3119
+ "time",
3120
+ "windows-sys 0.48.0",
3121
+ ]
3122
+
2647
3123
  [[package]]
2648
3124
  name = "slab"
2649
3125
  version = "0.4.9"
@@ -2655,26 +3131,68 @@ dependencies = [
2655
3131
 
2656
3132
  [[package]]
2657
3133
  name = "smallvec"
2658
- version = "1.14.0"
3134
+ version = "1.15.0"
2659
3135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2660
- checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3136
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2661
3137
 
2662
3138
  [[package]]
2663
3139
  name = "socket2"
2664
- version = "0.5.8"
3140
+ version = "0.5.9"
2665
3141
  source = "registry+https://github.com/rust-lang/crates.io-index"
2666
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3142
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2667
3143
  dependencies = [
2668
3144
  "libc",
2669
3145
  "windows-sys 0.52.0",
2670
3146
  ]
2671
3147
 
3148
+ [[package]]
3149
+ name = "spin"
3150
+ version = "0.9.8"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3153
+
2672
3154
  [[package]]
2673
3155
  name = "stable_deref_trait"
2674
3156
  version = "1.2.0"
2675
3157
  source = "registry+https://github.com/rust-lang/crates.io-index"
2676
3158
  checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2677
3159
 
3160
+ [[package]]
3161
+ name = "strsim"
3162
+ version = "0.8.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
3165
+
3166
+ [[package]]
3167
+ name = "strsim"
3168
+ version = "0.11.1"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3171
+
3172
+ [[package]]
3173
+ name = "structopt"
3174
+ version = "0.3.26"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
3177
+ dependencies = [
3178
+ "clap 2.34.0",
3179
+ "lazy_static",
3180
+ "structopt-derive",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "structopt-derive"
3185
+ version = "0.4.18"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
3188
+ dependencies = [
3189
+ "heck 0.3.3",
3190
+ "proc-macro-error",
3191
+ "proc-macro2",
3192
+ "quote",
3193
+ "syn 1.0.109",
3194
+ ]
3195
+
2678
3196
  [[package]]
2679
3197
  name = "subtle"
2680
3198
  version = "2.6.1"
@@ -2694,9 +3212,9 @@ dependencies = [
2694
3212
 
2695
3213
  [[package]]
2696
3214
  name = "syn"
2697
- version = "2.0.98"
3215
+ version = "2.0.100"
2698
3216
  source = "registry+https://github.com/rust-lang/crates.io-index"
2699
- checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
3217
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2700
3218
  dependencies = [
2701
3219
  "proc-macro2",
2702
3220
  "quote",
@@ -2720,7 +3238,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2720
3238
  dependencies = [
2721
3239
  "proc-macro2",
2722
3240
  "quote",
2723
- "syn 2.0.98",
3241
+ "syn 2.0.100",
2724
3242
  ]
2725
3243
 
2726
3244
  [[package]]
@@ -2751,18 +3269,26 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2751
3269
 
2752
3270
  [[package]]
2753
3271
  name = "tempfile"
2754
- version = "3.18.0"
3272
+ version = "3.19.1"
2755
3273
  source = "registry+https://github.com/rust-lang/crates.io-index"
2756
- checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567"
3274
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2757
3275
  dependencies = [
2758
- "cfg-if",
2759
3276
  "fastrand",
2760
- "getrandom 0.3.1",
3277
+ "getrandom 0.3.2",
2761
3278
  "once_cell",
2762
- "rustix 1.0.1",
3279
+ "rustix 1.0.5",
2763
3280
  "windows-sys 0.59.0",
2764
3281
  ]
2765
3282
 
3283
+ [[package]]
3284
+ name = "textwrap"
3285
+ version = "0.11.0"
3286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3287
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
3288
+ dependencies = [
3289
+ "unicode-width",
3290
+ ]
3291
+
2766
3292
  [[package]]
2767
3293
  name = "thiserror"
2768
3294
  version = "1.0.69"
@@ -2789,7 +3315,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2789
3315
  dependencies = [
2790
3316
  "proc-macro2",
2791
3317
  "quote",
2792
- "syn 2.0.98",
3318
+ "syn 2.0.100",
2793
3319
  ]
2794
3320
 
2795
3321
  [[package]]
@@ -2800,7 +3326,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2800
3326
  dependencies = [
2801
3327
  "proc-macro2",
2802
3328
  "quote",
2803
- "syn 2.0.98",
3329
+ "syn 2.0.100",
2804
3330
  ]
2805
3331
 
2806
3332
  [[package]]
@@ -2815,13 +3341,15 @@ dependencies = [
2815
3341
 
2816
3342
  [[package]]
2817
3343
  name = "time"
2818
- version = "0.3.37"
3344
+ version = "0.3.41"
2819
3345
  source = "registry+https://github.com/rust-lang/crates.io-index"
2820
- checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3346
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2821
3347
  dependencies = [
2822
3348
  "deranged",
2823
3349
  "itoa",
3350
+ "libc",
2824
3351
  "num-conv",
3352
+ "num_threads",
2825
3353
  "powerfmt",
2826
3354
  "serde",
2827
3355
  "time-core",
@@ -2830,15 +3358,15 @@ dependencies = [
2830
3358
 
2831
3359
  [[package]]
2832
3360
  name = "time-core"
2833
- version = "0.1.2"
3361
+ version = "0.1.4"
2834
3362
  source = "registry+https://github.com/rust-lang/crates.io-index"
2835
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3363
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2836
3364
 
2837
3365
  [[package]]
2838
3366
  name = "time-macros"
2839
- version = "0.2.19"
3367
+ version = "0.2.22"
2840
3368
  source = "registry+https://github.com/rust-lang/crates.io-index"
2841
- checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
3369
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2842
3370
  dependencies = [
2843
3371
  "num-conv",
2844
3372
  "time-core",
@@ -2871,9 +3399,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2871
3399
 
2872
3400
  [[package]]
2873
3401
  name = "tokio"
2874
- version = "1.44.1"
3402
+ version = "1.44.2"
2875
3403
  source = "registry+https://github.com/rust-lang/crates.io-index"
2876
- checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
3404
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2877
3405
  dependencies = [
2878
3406
  "backtrace",
2879
3407
  "bytes",
@@ -2895,7 +3423,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2895
3423
  dependencies = [
2896
3424
  "proc-macro2",
2897
3425
  "quote",
2898
- "syn 2.0.98",
3426
+ "syn 2.0.100",
2899
3427
  ]
2900
3428
 
2901
3429
  [[package]]
@@ -2909,52 +3437,37 @@ dependencies = [
2909
3437
  ]
2910
3438
 
2911
3439
  [[package]]
2912
- name = "tokio-rustls-acme"
2913
- version = "0.6.0"
3440
+ name = "tokio-stream"
3441
+ version = "0.1.17"
2914
3442
  source = "registry+https://github.com/rust-lang/crates.io-index"
2915
- checksum = "3184e8e292a828dd4bca5b2a60aba830ec5ed873a66c9ebb6e65038fa649e827"
3443
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2916
3444
  dependencies = [
2917
- "async-trait",
2918
- "base64",
2919
- "chrono",
2920
- "futures",
2921
- "log",
2922
- "num-bigint",
2923
- "pem",
2924
- "proc-macro2",
2925
- "rcgen",
2926
- "reqwest",
2927
- "ring",
2928
- "rustls",
2929
- "serde",
2930
- "serde_json",
2931
- "thiserror 2.0.12",
2932
- "time",
3445
+ "futures-core",
3446
+ "pin-project-lite",
2933
3447
  "tokio",
2934
- "tokio-rustls",
2935
- "webpki-roots",
2936
- "x509-parser",
2937
3448
  ]
2938
3449
 
2939
3450
  [[package]]
2940
- name = "tokio-stream"
2941
- version = "0.1.17"
3451
+ name = "tokio-tungstenite"
3452
+ version = "0.21.0"
2942
3453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2943
- checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3454
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
2944
3455
  dependencies = [
2945
- "futures-core",
2946
- "pin-project-lite",
3456
+ "futures-util",
3457
+ "log",
2947
3458
  "tokio",
3459
+ "tungstenite",
2948
3460
  ]
2949
3461
 
2950
3462
  [[package]]
2951
3463
  name = "tokio-util"
2952
- version = "0.7.13"
3464
+ version = "0.7.14"
2953
3465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2954
- checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3466
+ checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
2955
3467
  dependencies = [
2956
3468
  "bytes",
2957
3469
  "futures-core",
3470
+ "futures-io",
2958
3471
  "futures-sink",
2959
3472
  "pin-project-lite",
2960
3473
  "tokio",
@@ -2973,6 +3486,7 @@ dependencies = [
2973
3486
  "tokio",
2974
3487
  "tower-layer",
2975
3488
  "tower-service",
3489
+ "tracing",
2976
3490
  ]
2977
3491
 
2978
3492
  [[package]]
@@ -2993,6 +3507,7 @@ version = "0.1.41"
2993
3507
  source = "registry+https://github.com/rust-lang/crates.io-index"
2994
3508
  checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2995
3509
  dependencies = [
3510
+ "log",
2996
3511
  "pin-project-lite",
2997
3512
  "tracing-attributes",
2998
3513
  "tracing-core",
@@ -3018,7 +3533,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3018
3533
  dependencies = [
3019
3534
  "proc-macro2",
3020
3535
  "quote",
3021
- "syn 2.0.98",
3536
+ "syn 2.0.100",
3022
3537
  ]
3023
3538
 
3024
3539
  [[package]]
@@ -3079,17 +3594,54 @@ version = "0.2.5"
3079
3594
  source = "registry+https://github.com/rust-lang/crates.io-index"
3080
3595
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3081
3596
 
3597
+ [[package]]
3598
+ name = "tungstenite"
3599
+ version = "0.21.0"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
3602
+ dependencies = [
3603
+ "byteorder",
3604
+ "bytes",
3605
+ "data-encoding",
3606
+ "http 1.3.1",
3607
+ "httparse",
3608
+ "log",
3609
+ "rand 0.8.5",
3610
+ "sha1",
3611
+ "thiserror 1.0.69",
3612
+ "url",
3613
+ "utf-8",
3614
+ ]
3615
+
3082
3616
  [[package]]
3083
3617
  name = "typenum"
3084
3618
  version = "1.18.0"
3085
3619
  source = "registry+https://github.com/rust-lang/crates.io-index"
3086
3620
  checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3087
3621
 
3622
+ [[package]]
3623
+ name = "unicase"
3624
+ version = "2.8.1"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3627
+
3088
3628
  [[package]]
3089
3629
  name = "unicode-ident"
3090
- version = "1.0.17"
3630
+ version = "1.0.18"
3091
3631
  source = "registry+https://github.com/rust-lang/crates.io-index"
3092
- checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
3632
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3633
+
3634
+ [[package]]
3635
+ name = "unicode-segmentation"
3636
+ version = "1.12.0"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3639
+
3640
+ [[package]]
3641
+ name = "unicode-width"
3642
+ version = "0.1.14"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3093
3645
 
3094
3646
  [[package]]
3095
3647
  name = "unicode-xid"
@@ -3114,6 +3666,12 @@ dependencies = [
3114
3666
  "percent-encoding",
3115
3667
  ]
3116
3668
 
3669
+ [[package]]
3670
+ name = "utf-8"
3671
+ version = "0.7.6"
3672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3673
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3674
+
3117
3675
  [[package]]
3118
3676
  name = "utf16_iter"
3119
3677
  version = "1.0.5"
@@ -3126,13 +3684,19 @@ version = "1.0.4"
3126
3684
  source = "registry+https://github.com/rust-lang/crates.io-index"
3127
3685
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3128
3686
 
3687
+ [[package]]
3688
+ name = "utf8parse"
3689
+ version = "0.2.2"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3692
+
3129
3693
  [[package]]
3130
3694
  name = "uuid"
3131
3695
  version = "1.16.0"
3132
3696
  source = "registry+https://github.com/rust-lang/crates.io-index"
3133
3697
  checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3134
3698
  dependencies = [
3135
- "getrandom 0.3.1",
3699
+ "getrandom 0.3.2",
3136
3700
  ]
3137
3701
 
3138
3702
  [[package]]
@@ -3141,6 +3705,12 @@ version = "0.1.1"
3141
3705
  source = "registry+https://github.com/rust-lang/crates.io-index"
3142
3706
  checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3143
3707
 
3708
+ [[package]]
3709
+ name = "vec_map"
3710
+ version = "0.8.2"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3713
+
3144
3714
  [[package]]
3145
3715
  name = "version_check"
3146
3716
  version = "0.9.5"
@@ -3166,6 +3736,35 @@ dependencies = [
3166
3736
  "try-lock",
3167
3737
  ]
3168
3738
 
3739
+ [[package]]
3740
+ name = "warp"
3741
+ version = "0.3.7"
3742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3743
+ checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c"
3744
+ dependencies = [
3745
+ "bytes",
3746
+ "futures-channel",
3747
+ "futures-util",
3748
+ "headers",
3749
+ "http 0.2.12",
3750
+ "hyper 0.14.32",
3751
+ "log",
3752
+ "mime",
3753
+ "mime_guess",
3754
+ "multer",
3755
+ "percent-encoding",
3756
+ "pin-project",
3757
+ "scoped-tls",
3758
+ "serde",
3759
+ "serde_json",
3760
+ "serde_urlencoded",
3761
+ "tokio",
3762
+ "tokio-tungstenite",
3763
+ "tokio-util",
3764
+ "tower-service",
3765
+ "tracing",
3766
+ ]
3767
+
3169
3768
  [[package]]
3170
3769
  name = "wasi"
3171
3770
  version = "0.11.0+wasi-snapshot-preview1"
@@ -3174,9 +3773,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3174
3773
 
3175
3774
  [[package]]
3176
3775
  name = "wasi"
3177
- version = "0.13.3+wasi-0.2.2"
3776
+ version = "0.14.2+wasi-0.2.4"
3178
3777
  source = "registry+https://github.com/rust-lang/crates.io-index"
3179
- checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
3778
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3180
3779
  dependencies = [
3181
3780
  "wit-bindgen-rt",
3182
3781
  ]
@@ -3203,7 +3802,7 @@ dependencies = [
3203
3802
  "log",
3204
3803
  "proc-macro2",
3205
3804
  "quote",
3206
- "syn 2.0.98",
3805
+ "syn 2.0.100",
3207
3806
  "wasm-bindgen-shared",
3208
3807
  ]
3209
3808
 
@@ -3238,7 +3837,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3238
3837
  dependencies = [
3239
3838
  "proc-macro2",
3240
3839
  "quote",
3241
- "syn 2.0.98",
3840
+ "syn 2.0.100",
3242
3841
  "wasm-bindgen-backend",
3243
3842
  "wasm-bindgen-shared",
3244
3843
  ]
@@ -3357,15 +3956,6 @@ dependencies = [
3357
3956
  "windows-targets 0.52.6",
3358
3957
  ]
3359
3958
 
3360
- [[package]]
3361
- name = "windows-core"
3362
- version = "0.52.0"
3363
- source = "registry+https://github.com/rust-lang/crates.io-index"
3364
- checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3365
- dependencies = [
3366
- "windows-targets 0.52.6",
3367
- ]
3368
-
3369
3959
  [[package]]
3370
3960
  name = "windows-core"
3371
3961
  version = "0.57.0"
@@ -3391,6 +3981,19 @@ dependencies = [
3391
3981
  "windows-targets 0.52.6",
3392
3982
  ]
3393
3983
 
3984
+ [[package]]
3985
+ name = "windows-core"
3986
+ version = "0.61.0"
3987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3988
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3989
+ dependencies = [
3990
+ "windows-implement 0.60.0",
3991
+ "windows-interface 0.59.1",
3992
+ "windows-link",
3993
+ "windows-result 0.3.2",
3994
+ "windows-strings 0.4.0",
3995
+ ]
3996
+
3394
3997
  [[package]]
3395
3998
  name = "windows-implement"
3396
3999
  version = "0.57.0"
@@ -3399,7 +4002,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3399
4002
  dependencies = [
3400
4003
  "proc-macro2",
3401
4004
  "quote",
3402
- "syn 2.0.98",
4005
+ "syn 2.0.100",
3403
4006
  ]
3404
4007
 
3405
4008
  [[package]]
@@ -3410,7 +4013,18 @@ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
3410
4013
  dependencies = [
3411
4014
  "proc-macro2",
3412
4015
  "quote",
3413
- "syn 2.0.98",
4016
+ "syn 2.0.100",
4017
+ ]
4018
+
4019
+ [[package]]
4020
+ name = "windows-implement"
4021
+ version = "0.60.0"
4022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4023
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4024
+ dependencies = [
4025
+ "proc-macro2",
4026
+ "quote",
4027
+ "syn 2.0.100",
3414
4028
  ]
3415
4029
 
3416
4030
  [[package]]
@@ -3421,7 +4035,7 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3421
4035
  dependencies = [
3422
4036
  "proc-macro2",
3423
4037
  "quote",
3424
- "syn 2.0.98",
4038
+ "syn 2.0.100",
3425
4039
  ]
3426
4040
 
3427
4041
  [[package]]
@@ -3432,14 +4046,25 @@ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
3432
4046
  dependencies = [
3433
4047
  "proc-macro2",
3434
4048
  "quote",
3435
- "syn 2.0.98",
4049
+ "syn 2.0.100",
4050
+ ]
4051
+
4052
+ [[package]]
4053
+ name = "windows-interface"
4054
+ version = "0.59.1"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4057
+ dependencies = [
4058
+ "proc-macro2",
4059
+ "quote",
4060
+ "syn 2.0.100",
3436
4061
  ]
3437
4062
 
3438
4063
  [[package]]
3439
4064
  name = "windows-link"
3440
- version = "0.1.0"
4065
+ version = "0.1.1"
3441
4066
  source = "registry+https://github.com/rust-lang/crates.io-index"
3442
- checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
4067
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3443
4068
 
3444
4069
  [[package]]
3445
4070
  name = "windows-registry"
@@ -3447,7 +4072,7 @@ version = "0.4.0"
3447
4072
  source = "registry+https://github.com/rust-lang/crates.io-index"
3448
4073
  checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3449
4074
  dependencies = [
3450
- "windows-result 0.3.1",
4075
+ "windows-result 0.3.2",
3451
4076
  "windows-strings 0.3.1",
3452
4077
  "windows-targets 0.53.0",
3453
4078
  ]
@@ -3472,9 +4097,9 @@ dependencies = [
3472
4097
 
3473
4098
  [[package]]
3474
4099
  name = "windows-result"
3475
- version = "0.3.1"
4100
+ version = "0.3.2"
3476
4101
  source = "registry+https://github.com/rust-lang/crates.io-index"
3477
- checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189"
4102
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3478
4103
  dependencies = [
3479
4104
  "windows-link",
3480
4105
  ]
@@ -3498,6 +4123,24 @@ dependencies = [
3498
4123
  "windows-link",
3499
4124
  ]
3500
4125
 
4126
+ [[package]]
4127
+ name = "windows-strings"
4128
+ version = "0.4.0"
4129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4130
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4131
+ dependencies = [
4132
+ "windows-link",
4133
+ ]
4134
+
4135
+ [[package]]
4136
+ name = "windows-sys"
4137
+ version = "0.48.0"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4140
+ dependencies = [
4141
+ "windows-targets 0.48.5",
4142
+ ]
4143
+
3501
4144
  [[package]]
3502
4145
  name = "windows-sys"
3503
4146
  version = "0.52.0"
@@ -3516,6 +4159,21 @@ dependencies = [
3516
4159
  "windows-targets 0.52.6",
3517
4160
  ]
3518
4161
 
4162
+ [[package]]
4163
+ name = "windows-targets"
4164
+ version = "0.48.5"
4165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4166
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4167
+ dependencies = [
4168
+ "windows_aarch64_gnullvm 0.48.5",
4169
+ "windows_aarch64_msvc 0.48.5",
4170
+ "windows_i686_gnu 0.48.5",
4171
+ "windows_i686_msvc 0.48.5",
4172
+ "windows_x86_64_gnu 0.48.5",
4173
+ "windows_x86_64_gnullvm 0.48.5",
4174
+ "windows_x86_64_msvc 0.48.5",
4175
+ ]
4176
+
3519
4177
  [[package]]
3520
4178
  name = "windows-targets"
3521
4179
  version = "0.52.6"
@@ -3548,6 +4206,12 @@ dependencies = [
3548
4206
  "windows_x86_64_msvc 0.53.0",
3549
4207
  ]
3550
4208
 
4209
+ [[package]]
4210
+ name = "windows_aarch64_gnullvm"
4211
+ version = "0.48.5"
4212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4213
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4214
+
3551
4215
  [[package]]
3552
4216
  name = "windows_aarch64_gnullvm"
3553
4217
  version = "0.52.6"
@@ -3560,6 +4224,12 @@ version = "0.53.0"
3560
4224
  source = "registry+https://github.com/rust-lang/crates.io-index"
3561
4225
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3562
4226
 
4227
+ [[package]]
4228
+ name = "windows_aarch64_msvc"
4229
+ version = "0.48.5"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4232
+
3563
4233
  [[package]]
3564
4234
  name = "windows_aarch64_msvc"
3565
4235
  version = "0.52.6"
@@ -3572,6 +4242,12 @@ version = "0.53.0"
3572
4242
  source = "registry+https://github.com/rust-lang/crates.io-index"
3573
4243
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3574
4244
 
4245
+ [[package]]
4246
+ name = "windows_i686_gnu"
4247
+ version = "0.48.5"
4248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4249
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4250
+
3575
4251
  [[package]]
3576
4252
  name = "windows_i686_gnu"
3577
4253
  version = "0.52.6"
@@ -3596,6 +4272,12 @@ version = "0.53.0"
3596
4272
  source = "registry+https://github.com/rust-lang/crates.io-index"
3597
4273
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3598
4274
 
4275
+ [[package]]
4276
+ name = "windows_i686_msvc"
4277
+ version = "0.48.5"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4280
+
3599
4281
  [[package]]
3600
4282
  name = "windows_i686_msvc"
3601
4283
  version = "0.52.6"
@@ -3608,6 +4290,12 @@ version = "0.53.0"
3608
4290
  source = "registry+https://github.com/rust-lang/crates.io-index"
3609
4291
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3610
4292
 
4293
+ [[package]]
4294
+ name = "windows_x86_64_gnu"
4295
+ version = "0.48.5"
4296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4297
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4298
+
3611
4299
  [[package]]
3612
4300
  name = "windows_x86_64_gnu"
3613
4301
  version = "0.52.6"
@@ -3620,6 +4308,12 @@ version = "0.53.0"
3620
4308
  source = "registry+https://github.com/rust-lang/crates.io-index"
3621
4309
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3622
4310
 
4311
+ [[package]]
4312
+ name = "windows_x86_64_gnullvm"
4313
+ version = "0.48.5"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4316
+
3623
4317
  [[package]]
3624
4318
  name = "windows_x86_64_gnullvm"
3625
4319
  version = "0.52.6"
@@ -3632,6 +4326,12 @@ version = "0.53.0"
3632
4326
  source = "registry+https://github.com/rust-lang/crates.io-index"
3633
4327
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3634
4328
 
4329
+ [[package]]
4330
+ name = "windows_x86_64_msvc"
4331
+ version = "0.48.5"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4334
+
3635
4335
  [[package]]
3636
4336
  name = "windows_x86_64_msvc"
3637
4337
  version = "0.52.6"
@@ -3646,11 +4346,11 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3646
4346
 
3647
4347
  [[package]]
3648
4348
  name = "wit-bindgen-rt"
3649
- version = "0.33.0"
4349
+ version = "0.39.0"
3650
4350
  source = "registry+https://github.com/rust-lang/crates.io-index"
3651
- checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
4351
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3652
4352
  dependencies = [
3653
- "bitflags 2.8.0",
4353
+ "bitflags 2.9.0",
3654
4354
  ]
3655
4355
 
3656
4356
  [[package]]
@@ -3712,28 +4412,28 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
3712
4412
  dependencies = [
3713
4413
  "proc-macro2",
3714
4414
  "quote",
3715
- "syn 2.0.98",
4415
+ "syn 2.0.100",
3716
4416
  "synstructure",
3717
4417
  ]
3718
4418
 
3719
4419
  [[package]]
3720
4420
  name = "zerocopy"
3721
- version = "0.8.23"
4421
+ version = "0.8.24"
3722
4422
  source = "registry+https://github.com/rust-lang/crates.io-index"
3723
- checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6"
4423
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3724
4424
  dependencies = [
3725
4425
  "zerocopy-derive",
3726
4426
  ]
3727
4427
 
3728
4428
  [[package]]
3729
4429
  name = "zerocopy-derive"
3730
- version = "0.8.23"
4430
+ version = "0.8.24"
3731
4431
  source = "registry+https://github.com/rust-lang/crates.io-index"
3732
- checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154"
4432
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3733
4433
  dependencies = [
3734
4434
  "proc-macro2",
3735
4435
  "quote",
3736
- "syn 2.0.98",
4436
+ "syn 2.0.100",
3737
4437
  ]
3738
4438
 
3739
4439
  [[package]]
@@ -3753,7 +4453,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3753
4453
  dependencies = [
3754
4454
  "proc-macro2",
3755
4455
  "quote",
3756
- "syn 2.0.98",
4456
+ "syn 2.0.100",
3757
4457
  "synstructure",
3758
4458
  ]
3759
4459
 
@@ -3782,7 +4482,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3782
4482
  dependencies = [
3783
4483
  "proc-macro2",
3784
4484
  "quote",
3785
- "syn 2.0.98",
4485
+ "syn 2.0.100",
3786
4486
  ]
3787
4487
 
3788
4488
  [[package]]