bashkit 0.1.21__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. {bashkit-0.1.21 → bashkit-0.3.0}/Cargo.lock +795 -405
  2. {bashkit-0.1.21 → bashkit-0.3.0}/Cargo.toml +15 -6
  3. {bashkit-0.1.21 → bashkit-0.3.0}/PKG-INFO +92 -1
  4. {bashkit-0.1.21/crates/bashkit-python → bashkit-0.3.0}/README.md +91 -0
  5. {bashkit-0.1.21 → bashkit-0.3.0}/bashkit/_bashkit.pyi +127 -1
  6. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/Cargo.toml +29 -1
  7. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/README.md +35 -1
  8. bashkit-0.3.0/crates/bashkit/docs/jq.md +86 -0
  9. bashkit-0.3.0/crates/bashkit/docs/sqlite.md +169 -0
  10. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/agent_tool.rs +4 -0
  11. bashkit-0.3.0/crates/bashkit/examples/sqlite_basic.rs +37 -0
  12. bashkit-0.3.0/crates/bashkit/examples/sqlite_workflow.rs +122 -0
  13. bashkit-0.3.0/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +7 -0
  14. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/awk.rs +29 -1
  15. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/bc.rs +12 -0
  16. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/csv.rs +12 -0
  17. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/curl.rs +21 -1
  18. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/date.rs +12 -0
  19. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/expr.rs +11 -0
  20. bashkit-0.1.21/crates/bashkit/src/builtins/git.rs → bashkit-0.3.0/crates/bashkit/src/builtins/git/cmd.rs +24 -24
  21. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/git/mod.rs +6 -0
  22. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/grep.rs +13 -2
  23. bashkit-0.3.0/crates/bashkit/src/builtins/jq/args.rs +624 -0
  24. bashkit-0.3.0/crates/bashkit/src/builtins/jq/compat.rs +144 -0
  25. bashkit-0.3.0/crates/bashkit/src/builtins/jq/convert.rs +287 -0
  26. bashkit-0.3.0/crates/bashkit/src/builtins/jq/errors.rs +357 -0
  27. bashkit-0.3.0/crates/bashkit/src/builtins/jq/format.rs +273 -0
  28. bashkit-0.3.0/crates/bashkit/src/builtins/jq/mod.rs +450 -0
  29. bashkit-0.3.0/crates/bashkit/src/builtins/jq/regex_compat.rs +307 -0
  30. bashkit-0.3.0/crates/bashkit/src/builtins/jq/tests.rs +1461 -0
  31. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/json.rs +11 -0
  32. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/ls.rs +2 -2
  33. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/mod.rs +166 -6
  34. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/numfmt.rs +13 -0
  35. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/sed.rs +11 -0
  36. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/semver.rs +11 -0
  37. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/dot_commands.rs +556 -0
  38. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/engine.rs +291 -0
  39. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/formatter.rs +517 -0
  40. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/mod.rs +751 -0
  41. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/parser.rs +439 -0
  42. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/tests.rs +795 -0
  43. bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/vfs_io.rs +316 -0
  44. bashkit-0.1.21/crates/bashkit/src/builtins/ssh.rs → bashkit-0.3.0/crates/bashkit/src/builtins/ssh/cmd.rs +15 -21
  45. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/config.rs +1 -1
  46. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/handler.rs +2 -2
  47. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/mod.rs +6 -0
  48. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/russh_handler.rs +8 -8
  49. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/tomlq.rs +13 -0
  50. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/yaml.rs +11 -0
  51. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/mod.rs +74 -0
  52. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/mountable.rs +60 -3
  53. bashkit-0.3.0/crates/bashkit/src/interop/fs.rs +1280 -0
  54. bashkit-0.3.0/crates/bashkit/src/interop/mod.rs +3 -0
  55. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/interpreter/mod.rs +227 -8
  56. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/lib.rs +133 -15
  57. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/network/client.rs +50 -0
  58. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/scripted_tool/execute.rs +4 -4
  59. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/scripted_tool/mod.rs +147 -0
  60. bashkit-0.3.0/crates/bashkit/src/testing.rs +155 -0
  61. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +39 -20
  62. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +34 -14
  63. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/network_security_tests.rs +92 -0
  64. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/proptest_security.rs +147 -0
  65. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +24 -2
  66. bashkit-0.3.0/crates/bashkit/tests/sqlite_compat_tests.rs +158 -0
  67. bashkit-0.3.0/crates/bashkit/tests/sqlite_fuzz_tests.rs +146 -0
  68. bashkit-0.3.0/crates/bashkit/tests/sqlite_integration_tests.rs +237 -0
  69. bashkit-0.3.0/crates/bashkit/tests/sqlite_security_tests.rs +260 -0
  70. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/Cargo.toml +1 -1
  71. {bashkit-0.1.21 → bashkit-0.3.0/crates/bashkit-python}/README.md +91 -0
  72. bashkit-0.3.0/crates/bashkit-python/examples/custom_filesystem_interop.py +37 -0
  73. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/src/lib.rs +403 -7
  74. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/_bashkit_categories.py +16 -0
  75. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_fastapi_integration.py +25 -1
  76. bashkit-0.3.0/crates/bashkit-python/tests/test_filesystem_interop.py +59 -0
  77. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_langgraph_integration.py +32 -1
  78. bashkit-0.3.0/crates/bashkit-python/tests/test_network_config.py +149 -0
  79. bashkit-0.3.0/crates/bashkit-python/tests/test_network_credentials.py +401 -0
  80. bashkit-0.3.0/crates/bashkit-python/tests/test_sqlite.py +145 -0
  81. bashkit-0.1.21/crates/bashkit/src/builtins/jq.rs +0 -1622
  82. {bashkit-0.1.21 → bashkit-0.3.0}/bashkit/__init__.py +0 -0
  83. {bashkit-0.1.21 → bashkit-0.3.0}/bashkit/deepagents.py +0 -0
  84. {bashkit-0.1.21 → bashkit-0.3.0}/bashkit/langchain.py +0 -0
  85. {bashkit-0.1.21 → bashkit-0.3.0}/bashkit/py.typed +0 -0
  86. {bashkit-0.1.21 → bashkit-0.3.0}/bashkit/pydantic_ai.py +0 -0
  87. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
  88. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/compatibility.md +0 -0
  89. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/credential-injection.md +0 -0
  90. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/custom_builtins.md +0 -0
  91. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/hooks.md +0 -0
  92. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/live_mounts.md +0 -0
  93. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/logging.md +0 -0
  94. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/python.md +0 -0
  95. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/ssh.md +0 -0
  96. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/threat-model.md +0 -0
  97. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/docs/typescript.md +0 -0
  98. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/basic.rs +0 -0
  99. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/custom_backend.rs +0 -0
  100. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
  101. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  102. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/custom_fs.rs +0 -0
  103. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/git_workflow.rs +0 -0
  104. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/live_mounts.rs +0 -0
  105. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
  106. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/python_scripts.rs +0 -0
  107. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  108. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  109. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/resource_limits.rs +0 -0
  110. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
  111. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
  112. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  113. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/streaming_output.rs +0 -0
  114. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/text_files.rs +0 -0
  115. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/text_processing.rs +0 -0
  116. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  117. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  118. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
  119. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/alias.rs +0 -0
  120. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/archive.rs +0 -0
  121. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  122. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/assert.rs +0 -0
  123. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/base64.rs +0 -0
  124. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/caller.rs +0 -0
  125. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/cat.rs +0 -0
  126. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
  127. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/clear.rs +0 -0
  128. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/column.rs +0 -0
  129. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/comm.rs +0 -0
  130. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
  131. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
  132. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/diff.rs +0 -0
  133. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  134. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/disk.rs +0 -0
  135. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  136. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/echo.rs +0 -0
  137. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/environ.rs +0 -0
  138. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
  139. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/expand.rs +0 -0
  140. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/export.rs +0 -0
  141. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/fc.rs +0 -0
  142. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
  143. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/flow.rs +0 -0
  144. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/fold.rs +0 -0
  145. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/git/client.rs +0 -0
  146. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/git/config.rs +0 -0
  147. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
  148. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
  149. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/help.rs +0 -0
  150. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
  151. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/http.rs +0 -0
  152. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
  153. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
  154. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
  155. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/join.rs +0 -0
  156. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/log.rs +0 -0
  157. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  158. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  159. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
  160. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/nl.rs +0 -0
  161. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
  162. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/paste.rs +0 -0
  163. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/patch.rs +0 -0
  164. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/path.rs +0 -0
  165. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
  166. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/printf.rs +0 -0
  167. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/python.rs +0 -0
  168. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/read.rs +0 -0
  169. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/retry.rs +0 -0
  170. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/rg.rs +0 -0
  171. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
  172. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/seq.rs +0 -0
  173. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
  174. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
  175. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/source.rs +0 -0
  176. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/split.rs +0 -0
  177. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/allowlist.rs +0 -0
  178. {bashkit-0.1.21/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/client.rs +0 -0
  179. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/strings.rs +0 -0
  180. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/system.rs +0 -0
  181. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/template.rs +0 -0
  182. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/test.rs +0 -0
  183. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
  184. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
  185. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/trap.rs +0 -0
  186. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/tree.rs +0 -0
  187. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
  188. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/vars.rs +0 -0
  189. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/verify.rs +0 -0
  190. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/wait.rs +0 -0
  191. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/wc.rs +0 -0
  192. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/yes.rs +0 -0
  193. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
  194. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/credential.rs +0 -0
  195. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/error.rs +0 -0
  196. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/backend.rs +0 -0
  197. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/limits.rs +0 -0
  198. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/memory.rs +0 -0
  199. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/overlay.rs +0 -0
  200. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/posix.rs +0 -0
  201. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/realfs.rs +0 -0
  202. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/search.rs +0 -0
  203. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/fs/traits.rs +0 -0
  204. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/hooks.rs +0 -0
  205. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
  206. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  207. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/interpreter/state.rs +0 -0
  208. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/limits.rs +0 -0
  209. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/logging_impl.rs +0 -0
  210. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/network/allowlist.rs +0 -0
  211. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
  212. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/network/mod.rs +0 -0
  213. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/parser/ast.rs +0 -0
  214. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/parser/budget.rs +0 -0
  215. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/parser/lexer.rs +0 -0
  216. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/parser/mod.rs +0 -0
  217. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/parser/span.rs +0 -0
  218. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/parser/tokens.rs +0 -0
  219. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
  220. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/snapshot.rs +0 -0
  221. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/tool.rs +0 -0
  222. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/tool_def.rs +0 -0
  223. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/src/trace.rs +0 -0
  224. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/allexport_tests.rs +0 -0
  225. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
  226. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
  227. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
  228. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/awk_range_pattern_tests.rs +0 -0
  229. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/background_exec_tests.rs +0 -0
  230. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/bash_source_tests.rs +0 -0
  231. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/blackbox_security_tests.rs +0 -0
  232. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
  233. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/byte_range_panic_tests.rs +0 -0
  234. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/cancellation_tests.rs +0 -0
  235. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
  236. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/coproc_tests.rs +0 -0
  237. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/credential_injection_tests.rs +0 -0
  238. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
  239. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
  240. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/dev_null_tests.rs +0 -0
  241. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/final_env_tests.rs +0 -0
  242. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
  243. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
  244. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
  245. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/git_integration_tests.rs +0 -0
  246. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
  247. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/git_security_tests.rs +0 -0
  248. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/harness_example_tests.rs +0 -0
  249. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/history_tests.rs +0 -0
  250. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_1175_test.rs +0 -0
  251. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_274_test.rs +0 -0
  252. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
  253. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_276_test.rs +0 -0
  254. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_277_test.rs +0 -0
  255. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_289_test.rs +0 -0
  256. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_290_test.rs +0 -0
  257. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_291_test.rs +0 -0
  258. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_853_test.rs +0 -0
  259. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_872_test.rs +0 -0
  260. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_873_test.rs +0 -0
  261. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/issue_875_test.rs +0 -0
  262. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/live_mount_tests.rs +0 -0
  263. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  264. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
  265. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
  266. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
  267. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
  268. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/proptest_differential.rs +0 -0
  269. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/python_integration_tests.rs +0 -0
  270. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/python_security_tests.rs +0 -0
  271. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
  272. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/regex_limit_tests.rs +0 -0
  273. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/release_profile_tests.rs +0 -0
  274. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/script_execution_tests.rs +0 -0
  275. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
  276. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  277. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/set_e_and_or_tests.rs +0 -0
  278. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  279. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  280. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  281. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  282. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  283. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  284. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  285. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  286. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  287. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  288. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/skills_tests.rs +0 -0
  289. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/snapshot_tests.rs +0 -0
  290. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/source_function_tests.rs +0 -0
  291. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  292. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  293. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  294. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  295. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  296. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  297. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  298. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
  299. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  300. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
  301. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  302. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  303. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  304. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  305. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  306. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  307. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  308. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  309. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  310. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  311. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  312. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  313. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  314. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
  315. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  316. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  317. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  318. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  319. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  320. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  321. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  322. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  323. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  324. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  325. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  326. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  327. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
  328. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  329. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  330. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  331. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  332. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  333. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  334. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  335. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  336. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  337. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  338. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  339. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  340. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  341. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  342. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  343. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  344. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  345. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
  346. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  347. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  348. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  349. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  350. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  351. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  352. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
  353. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  354. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  355. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  356. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  357. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  358. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  359. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  360. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
  361. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  362. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  363. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  364. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  365. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  366. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  367. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  368. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  369. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  370. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  371. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  372. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  373. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  374. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  375. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  376. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  377. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  378. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
  379. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  380. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  381. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  382. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  383. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  384. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  385. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  386. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
  387. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  388. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  389. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  390. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  391. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  392. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  393. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  394. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  395. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  396. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  397. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  398. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  399. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  400. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  401. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  402. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  403. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
  404. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  405. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  406. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  407. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  408. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  409. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  410. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  411. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  412. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  413. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  414. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  415. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  416. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  417. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  418. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  419. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  420. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  421. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  422. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  423. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  424. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  425. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
  426. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  427. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  428. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  429. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  430. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_runner.rs +0 -0
  431. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/spec_tests.rs +0 -0
  432. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  433. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
  434. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/stack_overflow_regression_tests.rs +0 -0
  435. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/subst_depth_limit_tests.rs +0 -0
  436. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/symlink_overlay_security_tests.rs +0 -0
  437. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/threat_model_tests.rs +0 -0
  438. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/tty_tests.rs +0 -0
  439. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/typescript_integration_tests.rs +0 -0
  440. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/typescript_security_tests.rs +0 -0
  441. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
  442. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/unset_function_tests.rs +0 -0
  443. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit/tests/urandom_tests.rs +0 -0
  444. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
  445. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
  446. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
  447. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
  448. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  449. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
  450. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
  451. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
  452. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/_security_core.py +0 -0
  453. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
  454. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
  455. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_basic.py +0 -0
  456. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
  457. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
  458. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
  459. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_integration.py +0 -0
  460. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
  461. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
  462. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
  463. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
  464. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_security.py +0 -0
  465. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  466. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
  467. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
  468. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
  469. {bashkit-0.1.21 → bashkit-0.3.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
  470. {bashkit-0.1.21 → bashkit-0.3.0}/pyproject.toml +0 -0
@@ -28,6 +28,16 @@ dependencies = [
28
28
  "inout 0.2.2",
29
29
  ]
30
30
 
31
+ [[package]]
32
+ name = "aegis"
33
+ version = "0.9.8"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "78412fa53e6da95324e8902c3641b3ff32ab45258582ea997eb9169c68ffa219"
36
+ dependencies = [
37
+ "cc",
38
+ "softaes",
39
+ ]
40
+
31
41
  [[package]]
32
42
  name = "aes"
33
43
  version = "0.8.4"
@@ -167,7 +177,7 @@ version = "1.1.5"
167
177
  source = "registry+https://github.com/rust-lang/crates.io-index"
168
178
  checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
169
179
  dependencies = [
170
- "windows-sys 0.60.2",
180
+ "windows-sys 0.61.2",
171
181
  ]
172
182
 
173
183
  [[package]]
@@ -178,7 +188,23 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
178
188
  dependencies = [
179
189
  "anstyle",
180
190
  "once_cell_polyfill",
181
- "windows-sys 0.60.2",
191
+ "windows-sys 0.61.2",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "antithesis_sdk"
196
+ version = "0.2.8"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "18dbd97a5b6c21cc9176891cf715f7f0c273caf3959897f43b9bd1231939e675"
199
+ dependencies = [
200
+ "libc",
201
+ "libloading 0.8.9",
202
+ "linkme",
203
+ "once_cell",
204
+ "rand 0.8.6",
205
+ "rustc_version_runtime",
206
+ "serde",
207
+ "serde_json",
182
208
  ]
183
209
 
184
210
  [[package]]
@@ -187,6 +213,15 @@ version = "1.0.102"
187
213
  source = "registry+https://github.com/rust-lang/crates.io-index"
188
214
  checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
189
215
 
216
+ [[package]]
217
+ name = "arc-swap"
218
+ version = "1.9.1"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
221
+ dependencies = [
222
+ "rustversion",
223
+ ]
224
+
190
225
  [[package]]
191
226
  name = "argon2"
192
227
  version = "0.5.3"
@@ -199,6 +234,12 @@ dependencies = [
199
234
  "password-hash",
200
235
  ]
201
236
 
237
+ [[package]]
238
+ name = "assoc"
239
+ version = "0.1.3"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "bfdc70193dadb9d7287fa4b633f15f90c876915b31f6af17da307fc59c9859a8"
242
+
202
243
  [[package]]
203
244
  name = "async-trait"
204
245
  version = "0.1.89"
@@ -263,9 +304,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
263
304
 
264
305
  [[package]]
265
306
  name = "aws-lc-rs"
266
- version = "1.16.2"
307
+ version = "1.16.3"
267
308
  source = "registry+https://github.com/rust-lang/crates.io-index"
268
- checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
309
+ checksum = "0ec6fb3fe69024a75fa7e1bfb48aa6cf59706a101658ea01bfd33b2b248a038f"
269
310
  dependencies = [
270
311
  "aws-lc-sys",
271
312
  "untrusted 0.7.1",
@@ -274,9 +315,9 @@ dependencies = [
274
315
 
275
316
  [[package]]
276
317
  name = "aws-lc-sys"
277
- version = "0.39.1"
318
+ version = "0.40.0"
278
319
  source = "registry+https://github.com/rust-lang/crates.io-index"
279
- checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
320
+ checksum = "f50037ee5e1e41e7b8f9d161680a725bd1626cb6f8c7e901f91f942850852fe7"
280
321
  dependencies = [
281
322
  "cc",
282
323
  "cmake",
@@ -304,7 +345,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
304
345
 
305
346
  [[package]]
306
347
  name = "bashkit"
307
- version = "0.1.21"
348
+ version = "0.3.0"
308
349
  dependencies = [
309
350
  "anyhow",
310
351
  "async-trait",
@@ -313,7 +354,7 @@ dependencies = [
313
354
  "criterion",
314
355
  "ed25519-dalek 2.2.0",
315
356
  "fail",
316
- "fancy-regex",
357
+ "fancy-regex 0.18.0",
317
358
  "flate2",
318
359
  "futures-core",
319
360
  "futures-util",
@@ -330,6 +371,7 @@ dependencies = [
330
371
  "regex",
331
372
  "reqwest",
332
373
  "russh",
374
+ "rustls",
333
375
  "schemars",
334
376
  "serde",
335
377
  "serde_json",
@@ -342,6 +384,7 @@ dependencies = [
342
384
  "tokio-test",
343
385
  "tower",
344
386
  "tracing",
387
+ "turso_core",
345
388
  "url",
346
389
  "zapcode-core",
347
390
  "zeroize",
@@ -349,7 +392,7 @@ dependencies = [
349
392
 
350
393
  [[package]]
351
394
  name = "bashkit-bench"
352
- version = "0.1.21"
395
+ version = "0.3.0"
353
396
  dependencies = [
354
397
  "anyhow",
355
398
  "bashkit",
@@ -363,7 +406,7 @@ dependencies = [
363
406
 
364
407
  [[package]]
365
408
  name = "bashkit-cli"
366
- version = "0.1.21"
409
+ version = "0.3.0"
367
410
  dependencies = [
368
411
  "anyhow",
369
412
  "bashkit",
@@ -379,7 +422,7 @@ dependencies = [
379
422
 
380
423
  [[package]]
381
424
  name = "bashkit-eval"
382
- version = "0.1.21"
425
+ version = "0.3.0"
383
426
  dependencies = [
384
427
  "anyhow",
385
428
  "async-trait",
@@ -388,6 +431,7 @@ dependencies = [
388
431
  "clap",
389
432
  "regex",
390
433
  "reqwest",
434
+ "rustls",
391
435
  "serde",
392
436
  "serde_json",
393
437
  "tokio",
@@ -395,7 +439,7 @@ dependencies = [
395
439
 
396
440
  [[package]]
397
441
  name = "bashkit-js"
398
- version = "0.1.21"
442
+ version = "0.3.0"
399
443
  dependencies = [
400
444
  "bashkit",
401
445
  "napi",
@@ -408,7 +452,7 @@ dependencies = [
408
452
 
409
453
  [[package]]
410
454
  name = "bashkit-python"
411
- version = "0.1.21"
455
+ version = "0.3.0"
412
456
  dependencies = [
413
457
  "bashkit",
414
458
  "num-bigint",
@@ -429,6 +473,19 @@ dependencies = [
429
473
  "sha2 0.10.9",
430
474
  ]
431
475
 
476
+ [[package]]
477
+ name = "bigdecimal"
478
+ version = "0.4.10"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
481
+ dependencies = [
482
+ "autocfg",
483
+ "libm",
484
+ "num-bigint",
485
+ "num-integer",
486
+ "num-traits",
487
+ ]
488
+
432
489
  [[package]]
433
490
  name = "bit-set"
434
491
  version = "0.8.0"
@@ -517,6 +574,15 @@ dependencies = [
517
574
  "cipher 0.4.4",
518
575
  ]
519
576
 
577
+ [[package]]
578
+ name = "branches"
579
+ version = "0.4.4"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "e426eb5cc1900033930ec955317b302e68f19f326cc7bb0c8a86865a826cdf0c"
582
+ dependencies = [
583
+ "rustc_version",
584
+ ]
585
+
520
586
  [[package]]
521
587
  name = "bstr"
522
588
  version = "1.12.1"
@@ -528,6 +594,15 @@ dependencies = [
528
594
  "serde",
529
595
  ]
530
596
 
597
+ [[package]]
598
+ name = "built"
599
+ version = "0.7.5"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "c360505aed52b7ec96a3636c3f039d99103c37d1d9b4f7a8c743d3ea9ffcd03b"
602
+ dependencies = [
603
+ "chrono",
604
+ ]
605
+
531
606
  [[package]]
532
607
  name = "bumpalo"
533
608
  version = "3.20.2"
@@ -607,9 +682,9 @@ dependencies = [
607
682
 
608
683
  [[package]]
609
684
  name = "cc"
610
- version = "1.2.60"
685
+ version = "1.2.61"
611
686
  source = "registry+https://github.com/rust-lang/crates.io-index"
612
- checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
687
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
613
688
  dependencies = [
614
689
  "find-msvc-tools",
615
690
  "jobserver",
@@ -617,12 +692,6 @@ dependencies = [
617
692
  "shlex",
618
693
  ]
619
694
 
620
- [[package]]
621
- name = "cesu8"
622
- version = "1.1.0"
623
- source = "registry+https://github.com/rust-lang/crates.io-index"
624
- checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
625
-
626
695
  [[package]]
627
696
  name = "cfg-if"
628
697
  version = "1.0.4"
@@ -635,6 +704,12 @@ version = "0.2.1"
635
704
  source = "registry+https://github.com/rust-lang/crates.io-index"
636
705
  checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
637
706
 
707
+ [[package]]
708
+ name = "cfg_block"
709
+ version = "0.1.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
712
+
638
713
  [[package]]
639
714
  name = "chacha20"
640
715
  version = "0.9.1"
@@ -721,9 +796,9 @@ dependencies = [
721
796
 
722
797
  [[package]]
723
798
  name = "clap"
724
- version = "4.6.0"
799
+ version = "4.6.1"
725
800
  source = "registry+https://github.com/rust-lang/crates.io-index"
726
- checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
801
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
727
802
  dependencies = [
728
803
  "clap_builder",
729
804
  "clap_derive",
@@ -743,9 +818,9 @@ dependencies = [
743
818
 
744
819
  [[package]]
745
820
  name = "clap_derive"
746
- version = "4.6.0"
821
+ version = "4.6.1"
747
822
  source = "registry+https://github.com/rust-lang/crates.io-index"
748
- checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
823
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
749
824
  dependencies = [
750
825
  "heck",
751
826
  "proc-macro2",
@@ -810,7 +885,7 @@ version = "3.1.1"
810
885
  source = "registry+https://github.com/rust-lang/crates.io-index"
811
886
  checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
812
887
  dependencies = [
813
- "windows-sys 0.52.0",
888
+ "windows-sys 0.61.2",
814
889
  ]
815
890
 
816
891
  [[package]]
@@ -837,6 +912,15 @@ dependencies = [
837
912
  "static_assertions",
838
913
  ]
839
914
 
915
+ [[package]]
916
+ name = "concurrent-queue"
917
+ version = "2.5.0"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
920
+ dependencies = [
921
+ "crossbeam-utils",
922
+ ]
923
+
840
924
  [[package]]
841
925
  name = "console"
842
926
  version = "0.16.3"
@@ -893,9 +977,9 @@ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
893
977
 
894
978
  [[package]]
895
979
  name = "cpubits"
896
- version = "0.1.0"
980
+ version = "0.1.1"
897
981
  source = "registry+https://github.com/rust-lang/crates.io-index"
898
- checksum = "5ef0c543070d296ea414df2dd7625d1b24866ce206709d8a4a424f28377f5861"
982
+ checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
899
983
 
900
984
  [[package]]
901
985
  name = "cpufeatures"
@@ -915,6 +999,15 @@ dependencies = [
915
999
  "libc",
916
1000
  ]
917
1001
 
1002
+ [[package]]
1003
+ name = "crc32c"
1004
+ version = "0.6.8"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
1007
+ dependencies = [
1008
+ "rustc_version",
1009
+ ]
1010
+
918
1011
  [[package]]
919
1012
  name = "crc32fast"
920
1013
  version = "1.5.0"
@@ -985,6 +1078,16 @@ dependencies = [
985
1078
  "crossbeam-utils",
986
1079
  ]
987
1080
 
1081
+ [[package]]
1082
+ name = "crossbeam-skiplist"
1083
+ version = "0.1.3"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
1086
+ dependencies = [
1087
+ "crossbeam-epoch",
1088
+ "crossbeam-utils",
1089
+ ]
1090
+
988
1091
  [[package]]
989
1092
  name = "crossbeam-utils"
990
1093
  version = "0.8.21"
@@ -999,9 +1102,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
999
1102
 
1000
1103
  [[package]]
1001
1104
  name = "crypto-bigint"
1002
- version = "0.7.3"
1105
+ version = "0.7.0-rc.28"
1003
1106
  source = "registry+https://github.com/rust-lang/crates.io-index"
1004
- checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3"
1107
+ checksum = "96dacf199529fb801ae62a9aafdc01b189e9504c0d1ee1512a4c16bcd8666a93"
1005
1108
  dependencies = [
1006
1109
  "cpubits",
1007
1110
  "ctutils",
@@ -1021,6 +1124,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
1124
  checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1022
1125
  dependencies = [
1023
1126
  "generic-array 0.14.7",
1127
+ "rand_core 0.6.4",
1024
1128
  "typenum",
1025
1129
  ]
1026
1130
 
@@ -1037,9 +1141,9 @@ dependencies = [
1037
1141
 
1038
1142
  [[package]]
1039
1143
  name = "crypto-primes"
1040
- version = "0.7.0"
1144
+ version = "0.7.0-pre.9"
1041
1145
  source = "registry+https://github.com/rust-lang/crates.io-index"
1042
- checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a"
1146
+ checksum = "6081ce8b60c0e533e2bba42771b94eb6149052115f4179744d5779883dc98583"
1043
1147
  dependencies = [
1044
1148
  "crypto-bigint",
1045
1149
  "libm",
@@ -1048,19 +1152,9 @@ dependencies = [
1048
1152
 
1049
1153
  [[package]]
1050
1154
  name = "ctor"
1051
- version = "0.8.0"
1052
- source = "registry+https://github.com/rust-lang/crates.io-index"
1053
- checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
1054
- dependencies = [
1055
- "ctor-proc-macro",
1056
- "dtor",
1057
- ]
1058
-
1059
- [[package]]
1060
- name = "ctor-proc-macro"
1061
- version = "0.0.7"
1155
+ version = "0.11.1"
1062
1156
  source = "registry+https://github.com/rust-lang/crates.io-index"
1063
- checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
1157
+ checksum = "400a21f1014a968ec518c7ccdf9b4a4ed0cac8c56ccb6d604f8b91f00110501e"
1064
1158
 
1065
1159
  [[package]]
1066
1160
  name = "ctr"
@@ -1135,9 +1229,9 @@ dependencies = [
1135
1229
 
1136
1230
  [[package]]
1137
1231
  name = "data-encoding"
1138
- version = "2.10.0"
1232
+ version = "2.11.0"
1139
1233
  source = "registry+https://github.com/rust-lang/crates.io-index"
1140
- checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
1234
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1141
1235
 
1142
1236
  [[package]]
1143
1237
  name = "delegate"
@@ -1229,21 +1323,6 @@ version = "0.1.12"
1229
1323
  source = "registry+https://github.com/rust-lang/crates.io-index"
1230
1324
  checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
1231
1325
 
1232
- [[package]]
1233
- name = "dtor"
1234
- version = "0.3.0"
1235
- source = "registry+https://github.com/rust-lang/crates.io-index"
1236
- checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
1237
- dependencies = [
1238
- "dtor-proc-macro",
1239
- ]
1240
-
1241
- [[package]]
1242
- name = "dtor-proc-macro"
1243
- version = "0.0.6"
1244
- source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
1246
-
1247
1326
  [[package]]
1248
1327
  name = "dunce"
1249
1328
  version = "1.0.5"
@@ -1267,7 +1346,7 @@ dependencies = [
1267
1346
  "elliptic-curve",
1268
1347
  "rfc6979",
1269
1348
  "signature 3.0.0-rc.10",
1270
- "spki 0.8.0",
1349
+ "spki 0.8.0-rc.4",
1271
1350
  "zeroize",
1272
1351
  ]
1273
1352
 
@@ -1330,9 +1409,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1330
1409
 
1331
1410
  [[package]]
1332
1411
  name = "elliptic-curve"
1333
- version = "0.14.0-rc.30"
1412
+ version = "0.14.0-rc.28"
1334
1413
  source = "registry+https://github.com/rust-lang/crates.io-index"
1335
- checksum = "7d7a0bfd012613a7bcfe02cbfccf2b846e9ef9e1bccb641c48d461253cfb034d"
1414
+ checksum = "bde7860544606d222fd6bd6d9f9a0773321bf78072a637e1d560a058c0031978"
1336
1415
  dependencies = [
1337
1416
  "base16ct",
1338
1417
  "crypto-bigint",
@@ -1400,7 +1479,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
1479
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1401
1480
  dependencies = [
1402
1481
  "libc",
1403
- "windows-sys 0.52.0",
1482
+ "windows-sys 0.61.2",
1404
1483
  ]
1405
1484
 
1406
1485
  [[package]]
@@ -1420,6 +1499,12 @@ dependencies = [
1420
1499
  "rand 0.8.6",
1421
1500
  ]
1422
1501
 
1502
+ [[package]]
1503
+ name = "fallible-iterator"
1504
+ version = "0.3.0"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1507
+
1423
1508
  [[package]]
1424
1509
  name = "fancy-regex"
1425
1510
  version = "0.17.0"
@@ -1431,6 +1516,29 @@ dependencies = [
1431
1516
  "regex-syntax",
1432
1517
  ]
1433
1518
 
1519
+ [[package]]
1520
+ name = "fancy-regex"
1521
+ version = "0.18.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
1524
+ dependencies = [
1525
+ "bit-set",
1526
+ "regex-automata",
1527
+ "regex-syntax",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "fastbloom"
1532
+ version = "0.14.1"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
1535
+ dependencies = [
1536
+ "getrandom 0.3.4",
1537
+ "libm",
1538
+ "rand 0.9.4",
1539
+ "siphasher",
1540
+ ]
1541
+
1434
1542
  [[package]]
1435
1543
  name = "fastrand"
1436
1544
  version = "2.4.1"
@@ -1592,6 +1700,21 @@ dependencies = [
1592
1700
  "slab",
1593
1701
  ]
1594
1702
 
1703
+ [[package]]
1704
+ name = "generator"
1705
+ version = "0.8.8"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
1708
+ dependencies = [
1709
+ "cc",
1710
+ "cfg-if",
1711
+ "libc",
1712
+ "log",
1713
+ "rustversion",
1714
+ "windows-link",
1715
+ "windows-result",
1716
+ ]
1717
+
1595
1718
  [[package]]
1596
1719
  name = "generic-array"
1597
1720
  version = "0.14.7"
@@ -1604,9 +1727,9 @@ dependencies = [
1604
1727
 
1605
1728
  [[package]]
1606
1729
  name = "generic-array"
1607
- version = "1.3.5"
1730
+ version = "1.4.1"
1608
1731
  source = "registry+https://github.com/rust-lang/crates.io-index"
1609
- checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542"
1732
+ checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
1610
1733
  dependencies = [
1611
1734
  "generic-array 0.14.7",
1612
1735
  "rustversion",
@@ -1643,7 +1766,7 @@ version = "0.2.24"
1643
1766
  source = "registry+https://github.com/rust-lang/crates.io-index"
1644
1767
  checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
1645
1768
  dependencies = [
1646
- "unicode-width",
1769
+ "unicode-width 0.2.2",
1647
1770
  ]
1648
1771
 
1649
1772
  [[package]]
@@ -1666,11 +1789,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
1789
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1667
1790
  dependencies = [
1668
1791
  "cfg-if",
1669
- "js-sys",
1670
1792
  "libc",
1671
1793
  "r-efi 5.3.0",
1672
1794
  "wasip2",
1673
- "wasm-bindgen",
1674
1795
  ]
1675
1796
 
1676
1797
  [[package]]
@@ -1772,6 +1893,12 @@ version = "0.5.0"
1772
1893
  source = "registry+https://github.com/rust-lang/crates.io-index"
1773
1894
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1774
1895
 
1896
+ [[package]]
1897
+ name = "hermit-abi"
1898
+ version = "0.5.2"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1901
+
1775
1902
  [[package]]
1776
1903
  name = "hex"
1777
1904
  version = "0.4.3"
@@ -1867,9 +1994,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1867
1994
 
1868
1995
  [[package]]
1869
1996
  name = "hybrid-array"
1870
- version = "0.4.10"
1997
+ version = "0.4.11"
1871
1998
  source = "registry+https://github.com/rust-lang/crates.io-index"
1872
- checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
1999
+ checksum = "08d46837a0ed51fe95bd3b05de33cd64a1ee88fc797477ca48446872504507c5"
1873
2000
  dependencies = [
1874
2001
  "ctutils",
1875
2002
  "subtle",
@@ -2060,9 +2187,9 @@ dependencies = [
2060
2187
 
2061
2188
  [[package]]
2062
2189
  name = "idna_adapter"
2063
- version = "1.2.1"
2190
+ version = "1.2.2"
2064
2191
  source = "registry+https://github.com/rust-lang/crates.io-index"
2065
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2192
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2066
2193
  dependencies = [
2067
2194
  "icu_normalizer",
2068
2195
  "icu_properties",
@@ -2159,6 +2286,15 @@ version = "0.5.0"
2159
2286
  source = "registry+https://github.com/rust-lang/crates.io-index"
2160
2287
  checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
2161
2288
 
2289
+ [[package]]
2290
+ name = "intrusive-collections"
2291
+ version = "0.9.7"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
2294
+ dependencies = [
2295
+ "memoffset",
2296
+ ]
2297
+
2162
2298
  [[package]]
2163
2299
  name = "ipnet"
2164
2300
  version = "2.12.0"
@@ -2266,9 +2402,9 @@ dependencies = [
2266
2402
 
2267
2403
  [[package]]
2268
2404
  name = "jiff"
2269
- version = "0.2.23"
2405
+ version = "0.2.24"
2270
2406
  source = "registry+https://github.com/rust-lang/crates.io-index"
2271
- checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
2407
+ checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d"
2272
2408
  dependencies = [
2273
2409
  "jiff-static",
2274
2410
  "jiff-tzdb-platform",
@@ -2276,14 +2412,14 @@ dependencies = [
2276
2412
  "portable-atomic",
2277
2413
  "portable-atomic-util",
2278
2414
  "serde_core",
2279
- "windows-sys 0.52.0",
2415
+ "windows-sys 0.61.2",
2280
2416
  ]
2281
2417
 
2282
2418
  [[package]]
2283
2419
  name = "jiff-static"
2284
- version = "0.2.23"
2420
+ version = "0.2.24"
2285
2421
  source = "registry+https://github.com/rust-lang/crates.io-index"
2286
- checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
2422
+ checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7"
2287
2423
  dependencies = [
2288
2424
  "proc-macro2",
2289
2425
  "quote",
@@ -2322,27 +2458,32 @@ dependencies = [
2322
2458
 
2323
2459
  [[package]]
2324
2460
  name = "jni"
2325
- version = "0.21.1"
2461
+ version = "0.22.4"
2326
2462
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
2463
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
2328
2464
  dependencies = [
2329
- "cesu8",
2330
2465
  "cfg-if",
2331
2466
  "combine",
2332
- "jni-sys 0.3.1",
2467
+ "jni-macros",
2468
+ "jni-sys",
2333
2469
  "log",
2334
- "thiserror 1.0.69",
2470
+ "simd_cesu8",
2471
+ "thiserror 2.0.18",
2335
2472
  "walkdir",
2336
- "windows-sys 0.45.0",
2473
+ "windows-link",
2337
2474
  ]
2338
2475
 
2339
2476
  [[package]]
2340
- name = "jni-sys"
2341
- version = "0.3.1"
2477
+ name = "jni-macros"
2478
+ version = "0.22.4"
2342
2479
  source = "registry+https://github.com/rust-lang/crates.io-index"
2343
- checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
2480
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
2344
2481
  dependencies = [
2345
- "jni-sys 0.4.1",
2482
+ "proc-macro2",
2483
+ "quote",
2484
+ "rustc_version",
2485
+ "simd_cesu8",
2486
+ "syn",
2346
2487
  ]
2347
2488
 
2348
2489
  [[package]]
@@ -2376,9 +2517,9 @@ dependencies = [
2376
2517
 
2377
2518
  [[package]]
2378
2519
  name = "js-sys"
2379
- version = "0.3.95"
2520
+ version = "0.3.97"
2380
2521
  source = "registry+https://github.com/rust-lang/crates.io-index"
2381
- checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
2522
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
2382
2523
  dependencies = [
2383
2524
  "cfg-if",
2384
2525
  "futures-util",
@@ -2448,9 +2589,19 @@ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
2448
2589
 
2449
2590
  [[package]]
2450
2591
  name = "libc"
2451
- version = "0.2.185"
2592
+ version = "0.2.186"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2595
+
2596
+ [[package]]
2597
+ name = "libloading"
2598
+ version = "0.8.9"
2452
2599
  source = "registry+https://github.com/rust-lang/crates.io-index"
2453
- checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
2600
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
2601
+ dependencies = [
2602
+ "cfg-if",
2603
+ "windows-link",
2604
+ ]
2454
2605
 
2455
2606
  [[package]]
2456
2607
  name = "libloading"
@@ -2468,6 +2619,26 @@ version = "0.2.16"
2468
2619
  source = "registry+https://github.com/rust-lang/crates.io-index"
2469
2620
  checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2470
2621
 
2622
+ [[package]]
2623
+ name = "linkme"
2624
+ version = "0.3.36"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
2627
+ dependencies = [
2628
+ "linkme-impl",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "linkme-impl"
2633
+ version = "0.3.36"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
2636
+ dependencies = [
2637
+ "proc-macro2",
2638
+ "quote",
2639
+ "syn",
2640
+ ]
2641
+
2471
2642
  [[package]]
2472
2643
  name = "linux-raw-sys"
2473
2644
  version = "0.12.1"
@@ -2496,10 +2667,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
2667
  checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2497
2668
 
2498
2669
  [[package]]
2499
- name = "lru-slab"
2500
- version = "0.1.2"
2670
+ name = "loom"
2671
+ version = "0.7.2"
2501
2672
  source = "registry+https://github.com/rust-lang/crates.io-index"
2502
- checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2673
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
2674
+ dependencies = [
2675
+ "cfg-if",
2676
+ "generator",
2677
+ "scoped-tls",
2678
+ "tracing",
2679
+ "tracing-subscriber",
2680
+ ]
2503
2681
 
2504
2682
  [[package]]
2505
2683
  name = "manyhow"
@@ -2524,6 +2702,15 @@ dependencies = [
2524
2702
  "quote",
2525
2703
  ]
2526
2704
 
2705
+ [[package]]
2706
+ name = "matchers"
2707
+ version = "0.2.0"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2710
+ dependencies = [
2711
+ "regex-automata",
2712
+ ]
2713
+
2527
2714
  [[package]]
2528
2715
  name = "md-5"
2529
2716
  version = "0.11.0"
@@ -2546,6 +2733,37 @@ version = "2.8.0"
2546
2733
  source = "registry+https://github.com/rust-lang/crates.io-index"
2547
2734
  checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2548
2735
 
2736
+ [[package]]
2737
+ name = "memoffset"
2738
+ version = "0.9.1"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2741
+ dependencies = [
2742
+ "autocfg",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "miette"
2747
+ version = "7.6.0"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
2750
+ dependencies = [
2751
+ "cfg-if",
2752
+ "miette-derive",
2753
+ "unicode-width 0.1.14",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "miette-derive"
2758
+ version = "7.6.0"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
2761
+ dependencies = [
2762
+ "proc-macro2",
2763
+ "quote",
2764
+ "syn",
2765
+ ]
2766
+
2549
2767
  [[package]]
2550
2768
  name = "miniz_oxide"
2551
2769
  version = "0.8.9"
@@ -2569,9 +2787,9 @@ dependencies = [
2569
2787
 
2570
2788
  [[package]]
2571
2789
  name = "ml-kem"
2572
- version = "0.3.0-rc.2"
2790
+ version = "0.3.0-rc.1"
2573
2791
  source = "registry+https://github.com/rust-lang/crates.io-index"
2574
- checksum = "04437cb1a66c0b78740927b76cc61f218344b9f6ef3dd430e283274a718ef0e9"
2792
+ checksum = "8198b5db27ac9773534c371751a59dc18aec8b80aa141e69abfdd1dec2e3f78c"
2575
2793
  dependencies = [
2576
2794
  "hybrid-array",
2577
2795
  "kem",
@@ -2582,9 +2800,9 @@ dependencies = [
2582
2800
 
2583
2801
  [[package]]
2584
2802
  name = "module-lattice"
2585
- version = "0.2.1"
2803
+ version = "0.2.2"
2586
2804
  source = "registry+https://github.com/rust-lang/crates.io-index"
2587
- checksum = "164eb3faeaecbd14b0b2a917c1b4d0c035097a9c559b0bed85c2cdd032bc8faa"
2805
+ checksum = "dc7c90d33a0dac244570c26461d761ffaeadb3bfc2b17cc625ae2185cafdffae"
2588
2806
  dependencies = [
2589
2807
  "ctutils",
2590
2808
  "hybrid-array",
@@ -2599,7 +2817,7 @@ dependencies = [
2599
2817
  "ahash",
2600
2818
  "bytemuck",
2601
2819
  "chrono",
2602
- "fancy-regex",
2820
+ "fancy-regex 0.17.0",
2603
2821
  "hashbrown 0.16.1",
2604
2822
  "indexmap",
2605
2823
  "itertools 0.14.0",
@@ -2616,14 +2834,14 @@ dependencies = [
2616
2834
  "serde",
2617
2835
  "smallvec",
2618
2836
  "speedate",
2619
- "strum",
2837
+ "strum 0.27.2",
2620
2838
  ]
2621
2839
 
2622
2840
  [[package]]
2623
2841
  name = "napi"
2624
- version = "3.8.4"
2842
+ version = "3.8.6"
2625
2843
  source = "registry+https://github.com/rust-lang/crates.io-index"
2626
- checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
2844
+ checksum = "8e55037284865448ecf329baa86a4d05401f647ebde99f5747b640d32c2c5226"
2627
2845
  dependencies = [
2628
2846
  "bitflags",
2629
2847
  "ctor",
@@ -2643,9 +2861,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
2643
2861
 
2644
2862
  [[package]]
2645
2863
  name = "napi-derive"
2646
- version = "3.5.3"
2864
+ version = "3.5.5"
2647
2865
  source = "registry+https://github.com/rust-lang/crates.io-index"
2648
- checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
2866
+ checksum = "a4ba740fe4c9524d86fd90798fd8ccdb23402b3eef7e7c30897a8a369b529fcf"
2649
2867
  dependencies = [
2650
2868
  "convert_case",
2651
2869
  "ctor",
@@ -2657,9 +2875,9 @@ dependencies = [
2657
2875
 
2658
2876
  [[package]]
2659
2877
  name = "napi-derive-backend"
2660
- version = "5.0.2"
2878
+ version = "5.0.4"
2661
2879
  source = "registry+https://github.com/rust-lang/crates.io-index"
2662
- checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
2880
+ checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
2663
2881
  dependencies = [
2664
2882
  "convert_case",
2665
2883
  "proc-macro2",
@@ -2674,7 +2892,7 @@ version = "3.2.1"
2674
2892
  source = "registry+https://github.com/rust-lang/crates.io-index"
2675
2893
  checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
2676
2894
  dependencies = [
2677
- "libloading",
2895
+ "libloading 0.9.0",
2678
2896
  ]
2679
2897
 
2680
2898
  [[package]]
@@ -2710,6 +2928,15 @@ version = "0.5.5"
2710
2928
  source = "registry+https://github.com/rust-lang/crates.io-index"
2711
2929
  checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
2712
2930
 
2931
+ [[package]]
2932
+ name = "nu-ansi-term"
2933
+ version = "0.50.3"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2936
+ dependencies = [
2937
+ "windows-sys 0.61.2",
2938
+ ]
2939
+
2713
2940
  [[package]]
2714
2941
  name = "num-bigint"
2715
2942
  version = "0.4.6"
@@ -2805,6 +3032,12 @@ dependencies = [
2805
3032
  "indexmap",
2806
3033
  ]
2807
3034
 
3035
+ [[package]]
3036
+ name = "owo-colors"
3037
+ version = "3.5.0"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
3040
+
2808
3041
  [[package]]
2809
3042
  name = "owo-colors"
2810
3043
  version = "4.3.0"
@@ -2818,12 +3051,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
3051
  checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
2819
3052
  dependencies = [
2820
3053
  "cfg-if",
2821
- "owo-colors",
3054
+ "owo-colors 4.3.0",
2822
3055
  "oxc-miette-derive",
2823
3056
  "textwrap",
2824
3057
  "thiserror 2.0.18",
2825
3058
  "unicode-segmentation",
2826
- "unicode-width",
3059
+ "unicode-width 0.2.2",
2827
3060
  ]
2828
3061
 
2829
3062
  [[package]]
@@ -3013,9 +3246,9 @@ dependencies = [
3013
3246
 
3014
3247
  [[package]]
3015
3248
  name = "p256"
3016
- version = "0.14.0-rc.8"
3249
+ version = "0.14.0-rc.7"
3017
3250
  source = "registry+https://github.com/rust-lang/crates.io-index"
3018
- checksum = "44f0a10fe314869359cb2901342b045f4e5a962ef9febc006f03d2a8c848fe4c"
3251
+ checksum = "018bfbb86e05fd70a83e985921241035ee09fcd369c4a2c3680b389a01d2ad28"
3019
3252
  dependencies = [
3020
3253
  "ecdsa",
3021
3254
  "elliptic-curve",
@@ -3026,9 +3259,9 @@ dependencies = [
3026
3259
 
3027
3260
  [[package]]
3028
3261
  name = "p384"
3029
- version = "0.14.0-rc.8"
3262
+ version = "0.14.0-rc.7"
3030
3263
  source = "registry+https://github.com/rust-lang/crates.io-index"
3031
- checksum = "b079e66810c55ab3d6ba424e056dc4aefcdb8046c8c3f3816142edbdd7af7721"
3264
+ checksum = "8c91df688211f5957dbe2ab599dcbcaade8d6d3cdc15c5b350d350d7d07ce423"
3032
3265
  dependencies = [
3033
3266
  "ecdsa",
3034
3267
  "elliptic-curve",
@@ -3040,9 +3273,9 @@ dependencies = [
3040
3273
 
3041
3274
  [[package]]
3042
3275
  name = "p521"
3043
- version = "0.14.0-rc.8"
3276
+ version = "0.14.0-rc.7"
3044
3277
  source = "registry+https://github.com/rust-lang/crates.io-index"
3045
- checksum = "9eecc34c4c6e6596d5271fecf90ac4f16593fa198e77282214d0c22736aa9266"
3278
+ checksum = "de6cd9451de522549d36cc78a1b45a699a3d55a872e8ea0c8f0318e502d99e2c"
3046
3279
  dependencies = [
3047
3280
  "base16ct",
3048
3281
  "ecdsa",
@@ -3052,6 +3285,15 @@ dependencies = [
3052
3285
  "sha2 0.11.0",
3053
3286
  ]
3054
3287
 
3288
+ [[package]]
3289
+ name = "pack1"
3290
+ version = "1.0.0"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "d6e7cd9bd638dc2c831519a0caa1c006cab771a92b1303403a8322773c5b72d6"
3293
+ dependencies = [
3294
+ "bytemuck",
3295
+ ]
3296
+
3055
3297
  [[package]]
3056
3298
  name = "page_size"
3057
3299
  version = "0.6.0"
@@ -3089,7 +3331,7 @@ checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
3089
3331
  dependencies = [
3090
3332
  "bytecount",
3091
3333
  "fnv",
3092
- "unicode-width",
3334
+ "unicode-width 0.2.2",
3093
3335
  ]
3094
3336
 
3095
3337
  [[package]]
@@ -3127,8 +3369,14 @@ dependencies = [
3127
3369
  ]
3128
3370
 
3129
3371
  [[package]]
3130
- name = "pbkdf2"
3131
- version = "0.12.2"
3372
+ name = "paste"
3373
+ version = "1.0.15"
3374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3375
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
3376
+
3377
+ [[package]]
3378
+ name = "pbkdf2"
3379
+ version = "0.12.2"
3132
3380
  source = "registry+https://github.com/rust-lang/crates.io-index"
3133
3381
  checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
3134
3382
  dependencies = [
@@ -3138,9 +3386,9 @@ dependencies = [
3138
3386
 
3139
3387
  [[package]]
3140
3388
  name = "pbkdf2"
3141
- version = "0.13.0-rc.10"
3389
+ version = "0.13.0"
3142
3390
  source = "registry+https://github.com/rust-lang/crates.io-index"
3143
- checksum = "1f24f3eb2f4471b1730d59e4b730b747939960a8c7eb0c33c5a9076f2d3dddea"
3391
+ checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
3144
3392
  dependencies = [
3145
3393
  "digest 0.11.2",
3146
3394
  "hmac 0.13.0",
@@ -3264,7 +3512,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3264
3512
  checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
3265
3513
  dependencies = [
3266
3514
  "der 0.8.0",
3267
- "spki 0.8.0",
3515
+ "spki 0.8.0-rc.4",
3268
3516
  ]
3269
3517
 
3270
3518
  [[package]]
@@ -3277,11 +3525,11 @@ dependencies = [
3277
3525
  "aes-gcm 0.11.0-rc.3",
3278
3526
  "cbc 0.2.0",
3279
3527
  "der 0.8.0",
3280
- "pbkdf2 0.13.0-rc.10",
3528
+ "pbkdf2 0.13.0",
3281
3529
  "rand_core 0.10.1",
3282
3530
  "scrypt",
3283
3531
  "sha2 0.11.0",
3284
- "spki 0.8.0",
3532
+ "spki 0.8.0-rc.4",
3285
3533
  ]
3286
3534
 
3287
3535
  [[package]]
@@ -3303,7 +3551,7 @@ dependencies = [
3303
3551
  "der 0.8.0",
3304
3552
  "pkcs5",
3305
3553
  "rand_core 0.10.1",
3306
- "spki 0.8.0",
3554
+ "spki 0.8.0-rc.4",
3307
3555
  ]
3308
3556
 
3309
3557
  [[package]]
@@ -3334,6 +3582,20 @@ dependencies = [
3334
3582
  "plotters-backend",
3335
3583
  ]
3336
3584
 
3585
+ [[package]]
3586
+ name = "polling"
3587
+ version = "3.11.0"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
3590
+ dependencies = [
3591
+ "cfg-if",
3592
+ "concurrent-queue",
3593
+ "hermit-abi",
3594
+ "pin-project-lite",
3595
+ "rustix",
3596
+ "windows-sys 0.61.2",
3597
+ ]
3598
+
3337
3599
  [[package]]
3338
3600
  name = "poly1305"
3339
3601
  version = "0.8.0"
@@ -3376,9 +3638,9 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
3376
3638
 
3377
3639
  [[package]]
3378
3640
  name = "portable-atomic-util"
3379
- version = "0.2.6"
3641
+ version = "0.2.7"
3380
3642
  source = "registry+https://github.com/rust-lang/crates.io-index"
3381
- checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
3643
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
3382
3644
  dependencies = [
3383
3645
  "portable-atomic",
3384
3646
  ]
@@ -3436,9 +3698,9 @@ dependencies = [
3436
3698
 
3437
3699
  [[package]]
3438
3700
  name = "primefield"
3439
- version = "0.14.0-rc.8"
3701
+ version = "0.14.0-rc.7"
3440
3702
  source = "registry+https://github.com/rust-lang/crates.io-index"
3441
- checksum = "c6543f5eec854fbf74ba5ef651fbdc9408919b47c3e1526623687135c16d12e9"
3703
+ checksum = "93401c13cc7ff24684571cfca9d3cf9ebabfaf3d4b7b9963ade41ec54da196b5"
3442
3704
  dependencies = [
3443
3705
  "crypto-bigint",
3444
3706
  "crypto-common 0.2.1",
@@ -3450,9 +3712,9 @@ dependencies = [
3450
3712
 
3451
3713
  [[package]]
3452
3714
  name = "primeorder"
3453
- version = "0.14.0-rc.8"
3715
+ version = "0.14.0-rc.7"
3454
3716
  source = "registry+https://github.com/rust-lang/crates.io-index"
3455
- checksum = "569d9ad6ef822bb0322c7e7d84e5e286244050bd5246cac4c013535ae91c2c90"
3717
+ checksum = "a0c5c8a39bcd764bfedf456e8d55e115fe86dda3e0f555371849f2a41cbc9706"
3456
3718
  dependencies = [
3457
3719
  "elliptic-curve",
3458
3720
  ]
@@ -3608,62 +3870,6 @@ version = "1.2.3"
3608
3870
  source = "registry+https://github.com/rust-lang/crates.io-index"
3609
3871
  checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
3610
3872
 
3611
- [[package]]
3612
- name = "quinn"
3613
- version = "0.11.9"
3614
- source = "registry+https://github.com/rust-lang/crates.io-index"
3615
- checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3616
- dependencies = [
3617
- "bytes",
3618
- "cfg_aliases",
3619
- "pin-project-lite",
3620
- "quinn-proto",
3621
- "quinn-udp",
3622
- "rustc-hash",
3623
- "rustls",
3624
- "socket2",
3625
- "thiserror 2.0.18",
3626
- "tokio",
3627
- "tracing",
3628
- "web-time",
3629
- ]
3630
-
3631
- [[package]]
3632
- name = "quinn-proto"
3633
- version = "0.11.14"
3634
- source = "registry+https://github.com/rust-lang/crates.io-index"
3635
- checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
3636
- dependencies = [
3637
- "aws-lc-rs",
3638
- "bytes",
3639
- "getrandom 0.3.4",
3640
- "lru-slab",
3641
- "rand 0.9.4",
3642
- "ring",
3643
- "rustc-hash",
3644
- "rustls",
3645
- "rustls-pki-types",
3646
- "slab",
3647
- "thiserror 2.0.18",
3648
- "tinyvec",
3649
- "tracing",
3650
- "web-time",
3651
- ]
3652
-
3653
- [[package]]
3654
- name = "quinn-udp"
3655
- version = "0.5.14"
3656
- source = "registry+https://github.com/rust-lang/crates.io-index"
3657
- checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3658
- dependencies = [
3659
- "cfg_aliases",
3660
- "libc",
3661
- "once_cell",
3662
- "socket2",
3663
- "tracing",
3664
- "windows-sys 0.60.2",
3665
- ]
3666
-
3667
3873
  [[package]]
3668
3874
  name = "quote"
3669
3875
  version = "1.0.45"
@@ -3799,6 +4005,15 @@ version = "0.10.1"
3799
4005
  source = "registry+https://github.com/rust-lang/crates.io-index"
3800
4006
  checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
3801
4007
 
4008
+ [[package]]
4009
+ name = "rand_pcg"
4010
+ version = "0.3.1"
4011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4012
+ checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
4013
+ dependencies = [
4014
+ "rand_core 0.6.4",
4015
+ ]
4016
+
3802
4017
  [[package]]
3803
4018
  name = "rand_xorshift"
3804
4019
  version = "0.4.0"
@@ -3808,6 +4023,15 @@ dependencies = [
3808
4023
  "rand_core 0.9.5",
3809
4024
  ]
3810
4025
 
4026
+ [[package]]
4027
+ name = "rapidhash"
4028
+ version = "4.4.1"
4029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4030
+ checksum = "b5e48930979c155e2f33aa36ab3119b5ee81332beb6482199a8ecd6029b80b59"
4031
+ dependencies = [
4032
+ "rustversion",
4033
+ ]
4034
+
3811
4035
  [[package]]
3812
4036
  name = "rayon"
3813
4037
  version = "1.12.0"
@@ -3894,9 +4118,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
3894
4118
 
3895
4119
  [[package]]
3896
4120
  name = "reqwest"
3897
- version = "0.13.2"
4121
+ version = "0.13.3"
3898
4122
  source = "registry+https://github.com/rust-lang/crates.io-index"
3899
- checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
4123
+ checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
3900
4124
  dependencies = [
3901
4125
  "base64",
3902
4126
  "bytes",
@@ -3912,7 +4136,6 @@ dependencies = [
3912
4136
  "log",
3913
4137
  "percent-encoding",
3914
4138
  "pin-project-lite",
3915
- "quinn",
3916
4139
  "rustls",
3917
4140
  "rustls-pki-types",
3918
4141
  "rustls-platform-verifier",
@@ -3956,11 +4179,21 @@ dependencies = [
3956
4179
  "windows-sys 0.52.0",
3957
4180
  ]
3958
4181
 
4182
+ [[package]]
4183
+ name = "roaring"
4184
+ version = "0.11.4"
4185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4186
+ checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9"
4187
+ dependencies = [
4188
+ "bytemuck",
4189
+ "byteorder",
4190
+ ]
4191
+
3959
4192
  [[package]]
3960
4193
  name = "rsa"
3961
- version = "0.10.0-rc.17"
4194
+ version = "0.10.0-rc.16"
3962
4195
  source = "registry+https://github.com/rust-lang/crates.io-index"
3963
- checksum = "87ed3e93fc7e473e464b9726f4759659e72bc8665e4b8ea227547024f416d905"
4196
+ checksum = "6fb9fd8c1edd9e6a2693623baf0fe77ff05ce022a5d7746900ffc38a15c233de"
3964
4197
  dependencies = [
3965
4198
  "const-oid 0.10.2",
3966
4199
  "crypto-bigint",
@@ -3971,7 +4204,7 @@ dependencies = [
3971
4204
  "rand_core 0.10.1",
3972
4205
  "sha2 0.11.0",
3973
4206
  "signature 3.0.0-rc.10",
3974
- "spki 0.8.0",
4207
+ "spki 0.8.0-rc.4",
3975
4208
  "zeroize",
3976
4209
  ]
3977
4210
 
@@ -4043,19 +4276,24 @@ dependencies = [
4043
4276
 
4044
4277
  [[package]]
4045
4278
  name = "russh"
4046
- version = "0.60.1"
4279
+ version = "0.60.2"
4047
4280
  source = "registry+https://github.com/rust-lang/crates.io-index"
4048
- checksum = "d937f3f4a79bffd67fc12fd437785effdfc8b94edc89ab90392f9ac9e11cc9fc"
4281
+ checksum = "9c9e358980fe9b079b99da387117864ee6f0a3fd02f39e5b5fde6af9c2895374"
4049
4282
  dependencies = [
4283
+ "aead 0.6.0-rc.10",
4050
4284
  "aes 0.8.4",
4285
+ "aes 0.9.0",
4286
+ "aes-gcm 0.11.0-rc.3",
4051
4287
  "aws-lc-rs",
4052
4288
  "bitflags",
4053
4289
  "block-padding 0.3.3",
4054
4290
  "byteorder",
4055
4291
  "bytes",
4056
4292
  "cbc 0.1.2",
4293
+ "cbc 0.2.0",
4057
4294
  "cipher 0.5.1",
4058
4295
  "crypto-bigint",
4296
+ "ctr 0.10.0",
4059
4297
  "ctr 0.9.2",
4060
4298
  "curve25519-dalek 5.0.0-pre.6",
4061
4299
  "data-encoding",
@@ -4068,22 +4306,28 @@ dependencies = [
4068
4306
  "enum_dispatch",
4069
4307
  "flate2",
4070
4308
  "futures",
4071
- "generic-array 1.3.5",
4309
+ "generic-array 1.4.1",
4072
4310
  "getrandom 0.2.17",
4311
+ "ghash 0.6.0",
4073
4312
  "hex-literal",
4313
+ "hkdf",
4074
4314
  "hmac 0.12.1",
4315
+ "hmac 0.13.0",
4075
4316
  "inout 0.1.4",
4076
4317
  "internal-russh-forked-ssh-key",
4077
4318
  "internal-russh-num-bigint",
4319
+ "keccak",
4078
4320
  "log",
4079
4321
  "md5",
4080
4322
  "ml-kem",
4081
4323
  "module-lattice",
4324
+ "num-bigint",
4082
4325
  "p256",
4083
4326
  "p384",
4084
4327
  "p521",
4085
4328
  "pageant",
4086
4329
  "pbkdf2 0.12.2",
4330
+ "pbkdf2 0.13.0",
4087
4331
  "pkcs1",
4088
4332
  "pkcs5",
4089
4333
  "pkcs8 0.11.0-rc.11",
@@ -4093,11 +4337,16 @@ dependencies = [
4093
4337
  "rsa",
4094
4338
  "russh-cryptovec",
4095
4339
  "russh-util",
4340
+ "salsa20",
4341
+ "scrypt",
4096
4342
  "sec1",
4097
4343
  "sha1 0.10.6",
4344
+ "sha1 0.11.0",
4098
4345
  "sha2 0.10.9",
4346
+ "sha2 0.11.0",
4347
+ "sha3",
4099
4348
  "signature 3.0.0-rc.10",
4100
- "spki 0.8.0",
4349
+ "spki 0.8.0-rc.4",
4101
4350
  "ssh-encoding",
4102
4351
  "subtle",
4103
4352
  "thiserror 2.0.18",
@@ -4146,6 +4395,16 @@ dependencies = [
4146
4395
  "semver",
4147
4396
  ]
4148
4397
 
4398
+ [[package]]
4399
+ name = "rustc_version_runtime"
4400
+ version = "0.3.0"
4401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4402
+ checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d"
4403
+ dependencies = [
4404
+ "rustc_version",
4405
+ "semver",
4406
+ ]
4407
+
4149
4408
  [[package]]
4150
4409
  name = "rustcrypto-ff"
4151
4410
  version = "0.14.0-rc.1"
@@ -4177,17 +4436,18 @@ dependencies = [
4177
4436
  "errno",
4178
4437
  "libc",
4179
4438
  "linux-raw-sys",
4180
- "windows-sys 0.52.0",
4439
+ "windows-sys 0.61.2",
4181
4440
  ]
4182
4441
 
4183
4442
  [[package]]
4184
4443
  name = "rustls"
4185
- version = "0.23.38"
4444
+ version = "0.23.40"
4186
4445
  source = "registry+https://github.com/rust-lang/crates.io-index"
4187
- checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
4446
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
4188
4447
  dependencies = [
4189
- "aws-lc-rs",
4448
+ "log",
4190
4449
  "once_cell",
4450
+ "ring",
4191
4451
  "rustls-pki-types",
4192
4452
  "rustls-webpki",
4193
4453
  "subtle",
@@ -4208,19 +4468,18 @@ dependencies = [
4208
4468
 
4209
4469
  [[package]]
4210
4470
  name = "rustls-pki-types"
4211
- version = "1.14.0"
4471
+ version = "1.14.1"
4212
4472
  source = "registry+https://github.com/rust-lang/crates.io-index"
4213
- checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
4473
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
4214
4474
  dependencies = [
4215
- "web-time",
4216
4475
  "zeroize",
4217
4476
  ]
4218
4477
 
4219
4478
  [[package]]
4220
4479
  name = "rustls-platform-verifier"
4221
- version = "0.6.2"
4480
+ version = "0.7.0"
4222
4481
  source = "registry+https://github.com/rust-lang/crates.io-index"
4223
- checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
4482
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
4224
4483
  dependencies = [
4225
4484
  "core-foundation",
4226
4485
  "core-foundation-sys",
@@ -4234,7 +4493,7 @@ dependencies = [
4234
4493
  "security-framework",
4235
4494
  "security-framework-sys",
4236
4495
  "webpki-root-certs",
4237
- "windows-sys 0.52.0",
4496
+ "windows-sys 0.61.2",
4238
4497
  ]
4239
4498
 
4240
4499
  [[package]]
@@ -4249,7 +4508,6 @@ version = "0.103.13"
4249
4508
  source = "registry+https://github.com/rust-lang/crates.io-index"
4250
4509
  checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
4251
4510
  dependencies = [
4252
- "aws-lc-rs",
4253
4511
  "ring",
4254
4512
  "rustls-pki-types",
4255
4513
  "untrusted 0.9.0",
@@ -4289,7 +4547,7 @@ dependencies = [
4289
4547
  "nix",
4290
4548
  "radix_trie",
4291
4549
  "unicode-segmentation",
4292
- "unicode-width",
4550
+ "unicode-width 0.2.2",
4293
4551
  "utf8parse",
4294
4552
  "windows-sys 0.61.2",
4295
4553
  ]
@@ -4362,6 +4620,12 @@ dependencies = [
4362
4620
  "syn",
4363
4621
  ]
4364
4622
 
4623
+ [[package]]
4624
+ name = "scoped-tls"
4625
+ version = "1.0.1"
4626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4627
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
4628
+
4365
4629
  [[package]]
4366
4630
  name = "scopeguard"
4367
4631
  version = "1.2.0"
@@ -4370,12 +4634,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4370
4634
 
4371
4635
  [[package]]
4372
4636
  name = "scrypt"
4373
- version = "0.12.0-rc.10"
4637
+ version = "0.12.0"
4374
4638
  source = "registry+https://github.com/rust-lang/crates.io-index"
4375
- checksum = "e03ed5b54ed5fcc8e016cd94301416bc2c01c05c87a6742b97468337c8804598"
4639
+ checksum = "d87af57419b594aa23fa95f09f0e06d80d84ba01c26148c43844cad6ff4485f0"
4376
4640
  dependencies = [
4377
4641
  "cfg-if",
4378
- "pbkdf2 0.13.0-rc.10",
4642
+ "pbkdf2 0.13.0",
4379
4643
  "salsa20",
4380
4644
  "sha2 0.11.0",
4381
4645
  ]
@@ -4553,6 +4817,12 @@ dependencies = [
4553
4817
  "digest 0.11.2",
4554
4818
  ]
4555
4819
 
4820
+ [[package]]
4821
+ name = "sha1_smol"
4822
+ version = "1.0.1"
4823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4824
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
4825
+
4556
4826
  [[package]]
4557
4827
  name = "sha2"
4558
4828
  version = "0.10.9"
@@ -4585,12 +4855,41 @@ dependencies = [
4585
4855
  "keccak",
4586
4856
  ]
4587
4857
 
4858
+ [[package]]
4859
+ name = "sharded-slab"
4860
+ version = "0.1.7"
4861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4862
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
4863
+ dependencies = [
4864
+ "lazy_static",
4865
+ ]
4866
+
4588
4867
  [[package]]
4589
4868
  name = "shlex"
4590
4869
  version = "1.3.0"
4591
4870
  source = "registry+https://github.com/rust-lang/crates.io-index"
4592
4871
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
4593
4872
 
4873
+ [[package]]
4874
+ name = "shuttle"
4875
+ version = "0.8.1"
4876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4877
+ checksum = "2ab17edba38d63047f46780cf7360acf7467fec2c048928689a5c1dd1c2b4e31"
4878
+ dependencies = [
4879
+ "assoc",
4880
+ "bitvec",
4881
+ "cfg-if",
4882
+ "generator",
4883
+ "hex",
4884
+ "owo-colors 3.5.0",
4885
+ "rand 0.8.6",
4886
+ "rand_core 0.6.4",
4887
+ "rand_pcg",
4888
+ "scoped-tls",
4889
+ "smallvec",
4890
+ "tracing",
4891
+ ]
4892
+
4594
4893
  [[package]]
4595
4894
  name = "signal-hook"
4596
4895
  version = "0.4.4"
@@ -4636,12 +4935,37 @@ version = "0.3.9"
4636
4935
  source = "registry+https://github.com/rust-lang/crates.io-index"
4637
4936
  checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
4638
4937
 
4938
+ [[package]]
4939
+ name = "simd_cesu8"
4940
+ version = "1.1.1"
4941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4942
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
4943
+ dependencies = [
4944
+ "rustc_version",
4945
+ "simdutf8",
4946
+ ]
4947
+
4948
+ [[package]]
4949
+ name = "simdutf8"
4950
+ version = "0.1.5"
4951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4952
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
4953
+
4639
4954
  [[package]]
4640
4955
  name = "similar"
4641
4956
  version = "2.7.0"
4642
4957
  source = "registry+https://github.com/rust-lang/crates.io-index"
4643
4958
  checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
4644
4959
 
4960
+ [[package]]
4961
+ name = "simsimd"
4962
+ version = "6.5.16"
4963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4964
+ checksum = "f4fb3bc3cdce07a7d7d4caa4c54f8aa967f6be41690482b54b24100a2253fa70"
4965
+ dependencies = [
4966
+ "cc",
4967
+ ]
4968
+
4645
4969
  [[package]]
4646
4970
  name = "siphasher"
4647
4971
  version = "1.0.2"
@@ -4676,9 +5000,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4676
5000
  checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
4677
5001
  dependencies = [
4678
5002
  "libc",
4679
- "windows-sys 0.60.2",
5003
+ "windows-sys 0.61.2",
4680
5004
  ]
4681
5005
 
5006
+ [[package]]
5007
+ name = "softaes"
5008
+ version = "0.1.3"
5009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5010
+ checksum = "fef461faaeb36c340b6c887167a9054a034f6acfc50a014ead26a02b4356b3de"
5011
+
4682
5012
  [[package]]
4683
5013
  name = "speedate"
4684
5014
  version = "0.17.0"
@@ -4686,8 +5016,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4686
5016
  checksum = "aba069c070b5e213f2a094deb7e5ed50ecb092be36102a4f4042e8d2056d060e"
4687
5017
  dependencies = [
4688
5018
  "lexical-parse-float",
4689
- "strum",
4690
- "strum_macros",
5019
+ "strum 0.27.2",
5020
+ "strum_macros 0.27.2",
4691
5021
  ]
4692
5022
 
4693
5023
  [[package]]
@@ -4711,9 +5041,9 @@ dependencies = [
4711
5041
 
4712
5042
  [[package]]
4713
5043
  name = "spki"
4714
- version = "0.8.0"
5044
+ version = "0.8.0-rc.4"
4715
5045
  source = "registry+https://github.com/rust-lang/crates.io-index"
4716
- checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
5046
+ checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
4717
5047
  dependencies = [
4718
5048
  "base64ct",
4719
5049
  "der 0.8.0",
@@ -4766,13 +5096,35 @@ version = "0.11.1"
4766
5096
  source = "registry+https://github.com/rust-lang/crates.io-index"
4767
5097
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
4768
5098
 
5099
+ [[package]]
5100
+ name = "strum"
5101
+ version = "0.26.3"
5102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5103
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
5104
+ dependencies = [
5105
+ "strum_macros 0.26.4",
5106
+ ]
5107
+
4769
5108
  [[package]]
4770
5109
  name = "strum"
4771
5110
  version = "0.27.2"
4772
5111
  source = "registry+https://github.com/rust-lang/crates.io-index"
4773
5112
  checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
4774
5113
  dependencies = [
4775
- "strum_macros",
5114
+ "strum_macros 0.27.2",
5115
+ ]
5116
+
5117
+ [[package]]
5118
+ name = "strum_macros"
5119
+ version = "0.26.4"
5120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5121
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
5122
+ dependencies = [
5123
+ "heck",
5124
+ "proc-macro2",
5125
+ "quote",
5126
+ "rustversion",
5127
+ "syn",
4776
5128
  ]
4777
5129
 
4778
5130
  [[package]]
@@ -4870,7 +5222,7 @@ dependencies = [
4870
5222
  "getrandom 0.4.2",
4871
5223
  "once_cell",
4872
5224
  "rustix",
4873
- "windows-sys 0.52.0",
5225
+ "windows-sys 0.61.2",
4874
5226
  ]
4875
5227
 
4876
5228
  [[package]]
@@ -4880,7 +5232,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4880
5232
  checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
4881
5233
  dependencies = [
4882
5234
  "rustix",
4883
- "windows-sys 0.60.2",
5235
+ "windows-sys 0.61.2",
4884
5236
  ]
4885
5237
 
4886
5238
  [[package]]
@@ -4889,7 +5241,7 @@ version = "0.3.0"
4889
5241
  source = "registry+https://github.com/rust-lang/crates.io-index"
4890
5242
  checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
4891
5243
  dependencies = [
4892
- "unicode-width",
5244
+ "unicode-width 0.2.2",
4893
5245
  ]
4894
5246
 
4895
5247
  [[package]]
@@ -4900,7 +5252,7 @@ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
4900
5252
  dependencies = [
4901
5253
  "smawk",
4902
5254
  "unicode-linebreak",
4903
- "unicode-width",
5255
+ "unicode-width 0.2.2",
4904
5256
  ]
4905
5257
 
4906
5258
  [[package]]
@@ -4943,6 +5295,15 @@ dependencies = [
4943
5295
  "syn",
4944
5296
  ]
4945
5297
 
5298
+ [[package]]
5299
+ name = "thread_local"
5300
+ version = "1.1.9"
5301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5302
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
5303
+ dependencies = [
5304
+ "cfg-if",
5305
+ ]
5306
+
4946
5307
  [[package]]
4947
5308
  name = "tinystr"
4948
5309
  version = "0.8.3"
@@ -4980,9 +5341,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4980
5341
 
4981
5342
  [[package]]
4982
5343
  name = "tokio"
4983
- version = "1.52.0"
5344
+ version = "1.52.1"
4984
5345
  source = "registry+https://github.com/rust-lang/crates.io-index"
4985
- checksum = "a91135f59b1cbf38c91e73cf3386fca9bb77915c45ce2771460c9d92f0f3d776"
5346
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
4986
5347
  dependencies = [
4987
5348
  "bytes",
4988
5349
  "libc",
@@ -5124,6 +5485,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5124
5485
  checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
5125
5486
  dependencies = [
5126
5487
  "once_cell",
5488
+ "valuable",
5489
+ ]
5490
+
5491
+ [[package]]
5492
+ name = "tracing-log"
5493
+ version = "0.2.0"
5494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5495
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
5496
+ dependencies = [
5497
+ "log",
5498
+ "once_cell",
5499
+ "tracing-core",
5500
+ ]
5501
+
5502
+ [[package]]
5503
+ name = "tracing-subscriber"
5504
+ version = "0.3.23"
5505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5506
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
5507
+ dependencies = [
5508
+ "matchers",
5509
+ "nu-ansi-term",
5510
+ "once_cell",
5511
+ "regex-automata",
5512
+ "sharded-slab",
5513
+ "smallvec",
5514
+ "thread_local",
5515
+ "tracing",
5516
+ "tracing-core",
5517
+ "tracing-log",
5127
5518
  ]
5128
5519
 
5129
5520
  [[package]]
@@ -5132,6 +5523,116 @@ version = "0.2.5"
5132
5523
  source = "registry+https://github.com/rust-lang/crates.io-index"
5133
5524
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
5134
5525
 
5526
+ [[package]]
5527
+ name = "turso_core"
5528
+ version = "0.5.3"
5529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5530
+ checksum = "81fac73a12b91b569f4671d63d65912876c11e6312597c996dac40494f9f9b39"
5531
+ dependencies = [
5532
+ "aegis",
5533
+ "aes 0.8.4",
5534
+ "aes-gcm 0.10.3",
5535
+ "antithesis_sdk",
5536
+ "arc-swap",
5537
+ "bigdecimal",
5538
+ "bitflags",
5539
+ "branches",
5540
+ "built",
5541
+ "bumpalo",
5542
+ "bytemuck",
5543
+ "cfg_block",
5544
+ "chrono",
5545
+ "crc32c",
5546
+ "crossbeam-skiplist",
5547
+ "either",
5548
+ "fallible-iterator",
5549
+ "fastbloom",
5550
+ "hex",
5551
+ "intrusive-collections",
5552
+ "libc",
5553
+ "libloading 0.8.9",
5554
+ "libm",
5555
+ "loom",
5556
+ "miette",
5557
+ "num-bigint",
5558
+ "num-traits",
5559
+ "pack1",
5560
+ "parking_lot",
5561
+ "paste",
5562
+ "polling",
5563
+ "rand 0.9.4",
5564
+ "rapidhash",
5565
+ "regex",
5566
+ "regex-syntax",
5567
+ "roaring",
5568
+ "rustc-hash",
5569
+ "rustix",
5570
+ "ryu",
5571
+ "serde_json",
5572
+ "shuttle",
5573
+ "simsimd",
5574
+ "smallvec",
5575
+ "strum 0.26.3",
5576
+ "strum_macros 0.26.4",
5577
+ "tempfile",
5578
+ "thiserror 2.0.18",
5579
+ "tracing",
5580
+ "tracing-subscriber",
5581
+ "turso_ext",
5582
+ "turso_macros",
5583
+ "turso_parser",
5584
+ "twox-hash",
5585
+ "uncased",
5586
+ "uuid",
5587
+ "windows-sys 0.61.2",
5588
+ ]
5589
+
5590
+ [[package]]
5591
+ name = "turso_ext"
5592
+ version = "0.5.3"
5593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5594
+ checksum = "bdd7410a02a3a4cebd48a5bc0db74940d1157dc9c05ad42d48ee5156dd31edd1"
5595
+ dependencies = [
5596
+ "chrono",
5597
+ "getrandom 0.3.4",
5598
+ "turso_macros",
5599
+ ]
5600
+
5601
+ [[package]]
5602
+ name = "turso_macros"
5603
+ version = "0.5.3"
5604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5605
+ checksum = "9c846c30c3cb085884a8bbaba7760bdcc406ff2176cbde1e51d41b6057171fd4"
5606
+ dependencies = [
5607
+ "proc-macro2",
5608
+ "quote",
5609
+ "syn",
5610
+ ]
5611
+
5612
+ [[package]]
5613
+ name = "turso_parser"
5614
+ version = "0.5.3"
5615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5616
+ checksum = "8402ba98c236e3e6d6ed6a43557a9a0b3a682f86a37fcafe02b659b9e6c06b82"
5617
+ dependencies = [
5618
+ "bitflags",
5619
+ "memchr",
5620
+ "miette",
5621
+ "strum 0.26.3",
5622
+ "strum_macros 0.26.4",
5623
+ "thiserror 2.0.18",
5624
+ "turso_macros",
5625
+ ]
5626
+
5627
+ [[package]]
5628
+ name = "twox-hash"
5629
+ version = "2.1.2"
5630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5631
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
5632
+ dependencies = [
5633
+ "rand 0.9.4",
5634
+ ]
5635
+
5135
5636
  [[package]]
5136
5637
  name = "typed-arena"
5137
5638
  version = "2.0.2"
@@ -5140,9 +5641,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
5140
5641
 
5141
5642
  [[package]]
5142
5643
  name = "typenum"
5143
- version = "1.19.0"
5644
+ version = "1.20.0"
5144
5645
  source = "registry+https://github.com/rust-lang/crates.io-index"
5145
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
5646
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
5146
5647
 
5147
5648
  [[package]]
5148
5649
  name = "unarray"
@@ -5150,6 +5651,15 @@ version = "0.1.4"
5150
5651
  source = "registry+https://github.com/rust-lang/crates.io-index"
5151
5652
  checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
5152
5653
 
5654
+ [[package]]
5655
+ name = "uncased"
5656
+ version = "0.9.10"
5657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5658
+ checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
5659
+ dependencies = [
5660
+ "version_check",
5661
+ ]
5662
+
5153
5663
  [[package]]
5154
5664
  name = "unicode-id-start"
5155
5665
  version = "1.4.0"
@@ -5183,6 +5693,12 @@ version = "1.13.2"
5183
5693
  source = "registry+https://github.com/rust-lang/crates.io-index"
5184
5694
  checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
5185
5695
 
5696
+ [[package]]
5697
+ name = "unicode-width"
5698
+ version = "0.1.14"
5699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5700
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
5701
+
5186
5702
  [[package]]
5187
5703
  name = "unicode-width"
5188
5704
  version = "0.2.2"
@@ -5279,6 +5795,24 @@ version = "0.2.2"
5279
5795
  source = "registry+https://github.com/rust-lang/crates.io-index"
5280
5796
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5281
5797
 
5798
+ [[package]]
5799
+ name = "uuid"
5800
+ version = "1.23.1"
5801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5802
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
5803
+ dependencies = [
5804
+ "getrandom 0.4.2",
5805
+ "js-sys",
5806
+ "sha1_smol",
5807
+ "wasm-bindgen",
5808
+ ]
5809
+
5810
+ [[package]]
5811
+ name = "valuable"
5812
+ version = "0.1.1"
5813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5814
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
5815
+
5282
5816
  [[package]]
5283
5817
  name = "version_check"
5284
5818
  version = "0.9.5"
@@ -5321,11 +5855,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5321
5855
 
5322
5856
  [[package]]
5323
5857
  name = "wasip2"
5324
- version = "1.0.2+wasi-0.2.9"
5858
+ version = "1.0.3+wasi-0.2.9"
5325
5859
  source = "registry+https://github.com/rust-lang/crates.io-index"
5326
- checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
5860
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
5327
5861
  dependencies = [
5328
- "wit-bindgen",
5862
+ "wit-bindgen 0.57.1",
5329
5863
  ]
5330
5864
 
5331
5865
  [[package]]
@@ -5334,14 +5868,14 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
5334
5868
  source = "registry+https://github.com/rust-lang/crates.io-index"
5335
5869
  checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
5336
5870
  dependencies = [
5337
- "wit-bindgen",
5871
+ "wit-bindgen 0.51.0",
5338
5872
  ]
5339
5873
 
5340
5874
  [[package]]
5341
5875
  name = "wasm-bindgen"
5342
- version = "0.2.118"
5876
+ version = "0.2.120"
5343
5877
  source = "registry+https://github.com/rust-lang/crates.io-index"
5344
- checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
5878
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
5345
5879
  dependencies = [
5346
5880
  "cfg-if",
5347
5881
  "once_cell",
@@ -5352,9 +5886,9 @@ dependencies = [
5352
5886
 
5353
5887
  [[package]]
5354
5888
  name = "wasm-bindgen-futures"
5355
- version = "0.4.68"
5889
+ version = "0.4.70"
5356
5890
  source = "registry+https://github.com/rust-lang/crates.io-index"
5357
- checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
5891
+ checksum = "af934872acec734c2d80e6617bbb5ff4f12b052dd8e6332b0817bce889516084"
5358
5892
  dependencies = [
5359
5893
  "js-sys",
5360
5894
  "wasm-bindgen",
@@ -5362,9 +5896,9 @@ dependencies = [
5362
5896
 
5363
5897
  [[package]]
5364
5898
  name = "wasm-bindgen-macro"
5365
- version = "0.2.118"
5899
+ version = "0.2.120"
5366
5900
  source = "registry+https://github.com/rust-lang/crates.io-index"
5367
- checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
5901
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
5368
5902
  dependencies = [
5369
5903
  "quote",
5370
5904
  "wasm-bindgen-macro-support",
@@ -5372,9 +5906,9 @@ dependencies = [
5372
5906
 
5373
5907
  [[package]]
5374
5908
  name = "wasm-bindgen-macro-support"
5375
- version = "0.2.118"
5909
+ version = "0.2.120"
5376
5910
  source = "registry+https://github.com/rust-lang/crates.io-index"
5377
- checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
5911
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
5378
5912
  dependencies = [
5379
5913
  "bumpalo",
5380
5914
  "proc-macro2",
@@ -5385,9 +5919,9 @@ dependencies = [
5385
5919
 
5386
5920
  [[package]]
5387
5921
  name = "wasm-bindgen-shared"
5388
- version = "0.2.118"
5922
+ version = "0.2.120"
5389
5923
  source = "registry+https://github.com/rust-lang/crates.io-index"
5390
- checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
5924
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
5391
5925
  dependencies = [
5392
5926
  "unicode-ident",
5393
5927
  ]
@@ -5441,19 +5975,9 @@ dependencies = [
5441
5975
 
5442
5976
  [[package]]
5443
5977
  name = "web-sys"
5444
- version = "0.3.95"
5445
- source = "registry+https://github.com/rust-lang/crates.io-index"
5446
- checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
5447
- dependencies = [
5448
- "js-sys",
5449
- "wasm-bindgen",
5450
- ]
5451
-
5452
- [[package]]
5453
- name = "web-time"
5454
- version = "1.1.0"
5978
+ version = "0.3.97"
5455
5979
  source = "registry+https://github.com/rust-lang/crates.io-index"
5456
- checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
5980
+ checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
5457
5981
  dependencies = [
5458
5982
  "js-sys",
5459
5983
  "wasm-bindgen",
@@ -5461,9 +5985,9 @@ dependencies = [
5461
5985
 
5462
5986
  [[package]]
5463
5987
  name = "webpki-root-certs"
5464
- version = "1.0.6"
5988
+ version = "1.0.7"
5465
5989
  source = "registry+https://github.com/rust-lang/crates.io-index"
5466
- checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
5990
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
5467
5991
  dependencies = [
5468
5992
  "rustls-pki-types",
5469
5993
  ]
@@ -5490,7 +6014,7 @@ version = "0.1.11"
5490
6014
  source = "registry+https://github.com/rust-lang/crates.io-index"
5491
6015
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
5492
6016
  dependencies = [
5493
- "windows-sys 0.52.0",
6017
+ "windows-sys 0.61.2",
5494
6018
  ]
5495
6019
 
5496
6020
  [[package]]
@@ -5600,31 +6124,13 @@ dependencies = [
5600
6124
  "windows-link",
5601
6125
  ]
5602
6126
 
5603
- [[package]]
5604
- name = "windows-sys"
5605
- version = "0.45.0"
5606
- source = "registry+https://github.com/rust-lang/crates.io-index"
5607
- checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
5608
- dependencies = [
5609
- "windows-targets 0.42.2",
5610
- ]
5611
-
5612
6127
  [[package]]
5613
6128
  name = "windows-sys"
5614
6129
  version = "0.52.0"
5615
6130
  source = "registry+https://github.com/rust-lang/crates.io-index"
5616
6131
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
5617
6132
  dependencies = [
5618
- "windows-targets 0.52.6",
5619
- ]
5620
-
5621
- [[package]]
5622
- name = "windows-sys"
5623
- version = "0.60.2"
5624
- source = "registry+https://github.com/rust-lang/crates.io-index"
5625
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5626
- dependencies = [
5627
- "windows-targets 0.53.5",
6133
+ "windows-targets",
5628
6134
  ]
5629
6135
 
5630
6136
  [[package]]
@@ -5636,52 +6142,20 @@ dependencies = [
5636
6142
  "windows-link",
5637
6143
  ]
5638
6144
 
5639
- [[package]]
5640
- name = "windows-targets"
5641
- version = "0.42.2"
5642
- source = "registry+https://github.com/rust-lang/crates.io-index"
5643
- checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
5644
- dependencies = [
5645
- "windows_aarch64_gnullvm 0.42.2",
5646
- "windows_aarch64_msvc 0.42.2",
5647
- "windows_i686_gnu 0.42.2",
5648
- "windows_i686_msvc 0.42.2",
5649
- "windows_x86_64_gnu 0.42.2",
5650
- "windows_x86_64_gnullvm 0.42.2",
5651
- "windows_x86_64_msvc 0.42.2",
5652
- ]
5653
-
5654
6145
  [[package]]
5655
6146
  name = "windows-targets"
5656
6147
  version = "0.52.6"
5657
6148
  source = "registry+https://github.com/rust-lang/crates.io-index"
5658
6149
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
5659
6150
  dependencies = [
5660
- "windows_aarch64_gnullvm 0.52.6",
5661
- "windows_aarch64_msvc 0.52.6",
5662
- "windows_i686_gnu 0.52.6",
5663
- "windows_i686_gnullvm 0.52.6",
5664
- "windows_i686_msvc 0.52.6",
5665
- "windows_x86_64_gnu 0.52.6",
5666
- "windows_x86_64_gnullvm 0.52.6",
5667
- "windows_x86_64_msvc 0.52.6",
5668
- ]
5669
-
5670
- [[package]]
5671
- name = "windows-targets"
5672
- version = "0.53.5"
5673
- source = "registry+https://github.com/rust-lang/crates.io-index"
5674
- checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
5675
- dependencies = [
5676
- "windows-link",
5677
- "windows_aarch64_gnullvm 0.53.1",
5678
- "windows_aarch64_msvc 0.53.1",
5679
- "windows_i686_gnu 0.53.1",
5680
- "windows_i686_gnullvm 0.53.1",
5681
- "windows_i686_msvc 0.53.1",
5682
- "windows_x86_64_gnu 0.53.1",
5683
- "windows_x86_64_gnullvm 0.53.1",
5684
- "windows_x86_64_msvc 0.53.1",
6151
+ "windows_aarch64_gnullvm",
6152
+ "windows_aarch64_msvc",
6153
+ "windows_i686_gnu",
6154
+ "windows_i686_gnullvm",
6155
+ "windows_i686_msvc",
6156
+ "windows_x86_64_gnu",
6157
+ "windows_x86_64_gnullvm",
6158
+ "windows_x86_64_msvc",
5685
6159
  ]
5686
6160
 
5687
6161
  [[package]]
@@ -5693,144 +6167,54 @@ dependencies = [
5693
6167
  "windows-link",
5694
6168
  ]
5695
6169
 
5696
- [[package]]
5697
- name = "windows_aarch64_gnullvm"
5698
- version = "0.42.2"
5699
- source = "registry+https://github.com/rust-lang/crates.io-index"
5700
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
5701
-
5702
6170
  [[package]]
5703
6171
  name = "windows_aarch64_gnullvm"
5704
6172
  version = "0.52.6"
5705
6173
  source = "registry+https://github.com/rust-lang/crates.io-index"
5706
6174
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
5707
6175
 
5708
- [[package]]
5709
- name = "windows_aarch64_gnullvm"
5710
- version = "0.53.1"
5711
- source = "registry+https://github.com/rust-lang/crates.io-index"
5712
- checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
5713
-
5714
- [[package]]
5715
- name = "windows_aarch64_msvc"
5716
- version = "0.42.2"
5717
- source = "registry+https://github.com/rust-lang/crates.io-index"
5718
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
5719
-
5720
6176
  [[package]]
5721
6177
  name = "windows_aarch64_msvc"
5722
6178
  version = "0.52.6"
5723
6179
  source = "registry+https://github.com/rust-lang/crates.io-index"
5724
6180
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
5725
6181
 
5726
- [[package]]
5727
- name = "windows_aarch64_msvc"
5728
- version = "0.53.1"
5729
- source = "registry+https://github.com/rust-lang/crates.io-index"
5730
- checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
5731
-
5732
- [[package]]
5733
- name = "windows_i686_gnu"
5734
- version = "0.42.2"
5735
- source = "registry+https://github.com/rust-lang/crates.io-index"
5736
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
5737
-
5738
6182
  [[package]]
5739
6183
  name = "windows_i686_gnu"
5740
6184
  version = "0.52.6"
5741
6185
  source = "registry+https://github.com/rust-lang/crates.io-index"
5742
6186
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
5743
6187
 
5744
- [[package]]
5745
- name = "windows_i686_gnu"
5746
- version = "0.53.1"
5747
- source = "registry+https://github.com/rust-lang/crates.io-index"
5748
- checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
5749
-
5750
6188
  [[package]]
5751
6189
  name = "windows_i686_gnullvm"
5752
6190
  version = "0.52.6"
5753
6191
  source = "registry+https://github.com/rust-lang/crates.io-index"
5754
6192
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5755
6193
 
5756
- [[package]]
5757
- name = "windows_i686_gnullvm"
5758
- version = "0.53.1"
5759
- source = "registry+https://github.com/rust-lang/crates.io-index"
5760
- checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
5761
-
5762
- [[package]]
5763
- name = "windows_i686_msvc"
5764
- version = "0.42.2"
5765
- source = "registry+https://github.com/rust-lang/crates.io-index"
5766
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
5767
-
5768
6194
  [[package]]
5769
6195
  name = "windows_i686_msvc"
5770
6196
  version = "0.52.6"
5771
6197
  source = "registry+https://github.com/rust-lang/crates.io-index"
5772
6198
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
5773
6199
 
5774
- [[package]]
5775
- name = "windows_i686_msvc"
5776
- version = "0.53.1"
5777
- source = "registry+https://github.com/rust-lang/crates.io-index"
5778
- checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
5779
-
5780
- [[package]]
5781
- name = "windows_x86_64_gnu"
5782
- version = "0.42.2"
5783
- source = "registry+https://github.com/rust-lang/crates.io-index"
5784
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
5785
-
5786
6200
  [[package]]
5787
6201
  name = "windows_x86_64_gnu"
5788
6202
  version = "0.52.6"
5789
6203
  source = "registry+https://github.com/rust-lang/crates.io-index"
5790
6204
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
5791
6205
 
5792
- [[package]]
5793
- name = "windows_x86_64_gnu"
5794
- version = "0.53.1"
5795
- source = "registry+https://github.com/rust-lang/crates.io-index"
5796
- checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
5797
-
5798
- [[package]]
5799
- name = "windows_x86_64_gnullvm"
5800
- version = "0.42.2"
5801
- source = "registry+https://github.com/rust-lang/crates.io-index"
5802
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
5803
-
5804
6206
  [[package]]
5805
6207
  name = "windows_x86_64_gnullvm"
5806
6208
  version = "0.52.6"
5807
6209
  source = "registry+https://github.com/rust-lang/crates.io-index"
5808
6210
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
5809
6211
 
5810
- [[package]]
5811
- name = "windows_x86_64_gnullvm"
5812
- version = "0.53.1"
5813
- source = "registry+https://github.com/rust-lang/crates.io-index"
5814
- checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
5815
-
5816
- [[package]]
5817
- name = "windows_x86_64_msvc"
5818
- version = "0.42.2"
5819
- source = "registry+https://github.com/rust-lang/crates.io-index"
5820
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
5821
-
5822
6212
  [[package]]
5823
6213
  name = "windows_x86_64_msvc"
5824
6214
  version = "0.52.6"
5825
6215
  source = "registry+https://github.com/rust-lang/crates.io-index"
5826
6216
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
5827
6217
 
5828
- [[package]]
5829
- name = "windows_x86_64_msvc"
5830
- version = "0.53.1"
5831
- source = "registry+https://github.com/rust-lang/crates.io-index"
5832
- checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
5833
-
5834
6218
  [[package]]
5835
6219
  name = "wit-bindgen"
5836
6220
  version = "0.51.0"
@@ -5840,6 +6224,12 @@ dependencies = [
5840
6224
  "wit-bindgen-rust-macro",
5841
6225
  ]
5842
6226
 
6227
+ [[package]]
6228
+ name = "wit-bindgen"
6229
+ version = "0.57.1"
6230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6231
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
6232
+
5843
6233
  [[package]]
5844
6234
  name = "wit-bindgen-core"
5845
6235
  version = "0.51.0"