bashkit 0.15.0__tar.gz → 0.17.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 (619) hide show
  1. {bashkit-0.15.0 → bashkit-0.17.0}/Cargo.lock +416 -368
  2. {bashkit-0.15.0 → bashkit-0.17.0}/Cargo.toml +60 -13
  3. {bashkit-0.15.0 → bashkit-0.17.0}/PKG-INFO +12 -12
  4. {bashkit-0.15.0/crates/bashkit-python → bashkit-0.17.0}/README.md +11 -11
  5. {bashkit-0.15.0 → bashkit-0.17.0}/bashkit/__init__.py +2 -0
  6. {bashkit-0.15.0 → bashkit-0.17.0}/bashkit/_bashkit.pyi +53 -1
  7. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/Cargo.toml +83 -8
  8. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/README.md +30 -26
  9. bashkit-0.17.0/crates/bashkit/benches/awk_regex.rs +121 -0
  10. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/README.md +4 -4
  11. bashkit-0.17.0/crates/bashkit/benches/results/criterion-awk-regex-mykhailos-mini-darwin-arm64-1785952907.md +30 -0
  12. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +1 -1
  13. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +1 -1
  14. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-snapshot-history-baseline-linux-x86_64-1785444523.md +11 -11
  15. bashkit-0.17.0/crates/bashkit/benches/results/criterion-sqlite-Mykhailos-Mini.lan-darwin-arm64-1785957173.md +89 -0
  16. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +1 -1
  17. bashkit-0.17.0/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1786872580.md +89 -0
  18. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/compatibility.md +52 -19
  19. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/credential-injection.md +1 -1
  20. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/custom_builtins.md +70 -12
  21. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/hooks.md +13 -13
  22. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/jq.md +5 -5
  23. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/live_mounts.md +52 -10
  24. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/logging.md +1 -1
  25. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/namespace_filesystems.md +4 -4
  26. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/python.md +30 -5
  27. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/script-analysis.md +12 -12
  28. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/sqlite.md +5 -5
  29. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/threat-model.md +57 -23
  30. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/typescript.md +22 -7
  31. bashkit-0.17.0/crates/bashkit/docs/yq.md +67 -0
  32. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/agent_tool.rs +3 -0
  33. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_builtins.rs +4 -1
  34. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/dump_builtins.rs +3 -3
  35. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/analysis.rs +174 -2
  36. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/alias.rs +3 -3
  37. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/archive.rs +813 -115
  38. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/interpreter.rs +60 -8
  39. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/mod.rs +10 -4
  40. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/tests.rs +4 -4
  41. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/base64.rs +5 -20
  42. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/cat.rs +39 -37
  43. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/checksum.rs +4 -4
  44. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/column.rs +1 -1
  45. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/comm.rs +1 -1
  46. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/csv.rs +1 -1
  47. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/curl.rs +391 -68
  48. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/cuttr.rs +83 -3
  49. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/date.rs +168 -112
  50. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/diff.rs +1 -1
  51. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/disk.rs +2 -0
  52. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/environ.rs +3 -3
  53. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/envsubst.rs +2 -2
  54. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/expand.rs +4 -4
  55. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/export.rs +1 -1
  56. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/fileops.rs +8 -11
  57. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/fold.rs +2 -2
  58. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/cat_args.rs +1 -1
  59. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +47 -51
  60. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/argument.rs +2 -6
  61. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/escape.rs +10 -10
  62. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/human.rs +1 -1
  63. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/mod.rs +61 -31
  64. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +39 -27
  65. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/spec.rs +10 -7
  66. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format_support.rs +20 -2
  67. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/ls_args.rs +1 -1
  68. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +1 -1
  69. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/mod.rs +1 -1
  70. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/num_parser.rs +8 -13
  71. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/od_args.rs +1 -1
  72. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +1 -1
  73. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +1 -1
  74. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +1 -1
  75. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/stat_args.rs +1 -1
  76. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/tac_args.rs +2 -1
  77. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/tee_args.rs +1 -1
  78. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +1 -1
  79. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/client.rs +1 -1
  80. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/glob_cmd.rs +1 -1
  81. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/grep.rs +2 -2
  82. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/headtail.rs +14 -74
  83. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/hextools.rs +4 -4
  84. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/http.rs +3 -3
  85. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/iconv.rs +1 -1
  86. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/inspect.rs +1 -1
  87. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/introspect.rs +2 -2
  88. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/join.rs +7 -1
  89. bashkit-0.17.0/crates/bashkit/src/builtins/jq/input.rs +176 -0
  90. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/mod.rs +34 -6
  91. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/tests.rs +166 -4
  92. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/json.rs +8 -1
  93. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/limits.rs +3 -4
  94. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/find.rs +3 -2
  95. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/tests.rs +1 -1
  96. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/mapfile.rs +1 -1
  97. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/mod.rs +234 -79
  98. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/nl.rs +2 -2
  99. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/paste.rs +2 -2
  100. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/patch.rs +1 -1
  101. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/pipeline.rs +23 -23
  102. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/printf.rs +17 -3
  103. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/python.rs +166 -19
  104. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/rg/mod.rs +33 -8
  105. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/search_common.rs +75 -0
  106. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sed.rs +4 -4
  107. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/semver.rs +2 -2
  108. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/shuf.rs +3 -3
  109. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sleep.rs +1 -7
  110. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sortuniq.rs +2 -2
  111. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/split.rs +2 -2
  112. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +4 -3
  113. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/engine.rs +22 -6
  114. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/mod.rs +48 -8
  115. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/cmd.rs +2 -2
  116. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/strings.rs +1 -1
  117. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/template.rs +1 -1
  118. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/textrev.rs +1 -1
  119. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/timeout.rs +2 -2
  120. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/tomlq.rs +1 -1
  121. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/tree.rs +5 -1
  122. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/typescript.rs +252 -32
  123. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/vars.rs +5 -5
  124. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/wait.rs +2 -2
  125. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/wc.rs +16 -12
  126. bashkit-0.17.0/crates/bashkit/src/builtins/yq.rs +749 -0
  127. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/zip_cmd.rs +74 -22
  128. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/error.rs +15 -1
  129. bashkit-0.17.0/crates/bashkit/src/execution_capability.rs +474 -0
  130. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/backend.rs +11 -3
  131. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/memory.rs +101 -31
  132. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/mod.rs +43 -1
  133. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/mountable.rs +111 -16
  134. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/overlay.rs +134 -17
  135. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/posix.rs +50 -6
  136. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/realfs.rs +177 -44
  137. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/traits.rs +9 -0
  138. bashkit-0.17.0/crates/bashkit/src/host_call.rs +258 -0
  139. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/mod.rs +682 -332
  140. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/redirection.rs +125 -67
  141. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/state.rs +27 -25
  142. bashkit-0.17.0/crates/bashkit/src/interpreter/time_command.rs +175 -0
  143. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/lib.rs +523 -82
  144. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/limits.rs +818 -0
  145. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/network/client.rs +61 -16
  146. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/network/mod.rs +1 -1
  147. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/parser/ast.rs +19 -6
  148. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/parser/mod.rs +83 -21
  149. bashkit-0.17.0/crates/bashkit/src/profile.rs +442 -0
  150. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/execute.rs +38 -31
  151. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/extension.rs +98 -49
  152. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/mod.rs +14 -1
  153. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/toolset.rs +13 -1
  154. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/graph.rs +45 -28
  155. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/mod.rs +8 -5
  156. bashkit-0.17.0/crates/bashkit/src/stream.rs +189 -0
  157. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/testing.rs +126 -17
  158. bashkit-0.17.0/crates/bashkit/src/time_compat/host_clock.rs +125 -0
  159. bashkit-0.17.0/crates/bashkit/src/time_compat/mod.rs +264 -0
  160. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/tool.rs +190 -59
  161. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/tool_def.rs +93 -5
  162. bashkit-0.17.0/crates/bashkit/src/tool_registry.rs +939 -0
  163. bashkit-0.17.0/crates/bashkit/tests/fixtures/competitor-regressions/just-bash-2026-08-05.json +116 -0
  164. bashkit-0.17.0/crates/bashkit/tests/integration/archive_bzip2_tests.rs +293 -0
  165. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +1 -1
  166. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +3 -1
  167. bashkit-0.17.0/crates/bashkit/tests/integration/byte_stream_tests.rs +163 -0
  168. bashkit-0.17.0/crates/bashkit/tests/integration/command_resolver_tests.rs +269 -0
  169. bashkit-0.17.0/crates/bashkit/tests/integration/competitor_regression_tests.rs +340 -0
  170. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +19 -1
  171. bashkit-0.17.0/crates/bashkit/tests/integration/curl_data_compat_tests.rs +477 -0
  172. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +1 -1
  173. bashkit-0.17.0/crates/bashkit/tests/integration/date_timezone_differential_tests.rs +78 -0
  174. bashkit-0.17.0/crates/bashkit/tests/integration/date_timezone_no_tzdata_tests.rs +135 -0
  175. bashkit-0.17.0/crates/bashkit/tests/integration/date_timezone_tests.rs +152 -0
  176. bashkit-0.17.0/crates/bashkit/tests/integration/execution_budget_tests.rs +215 -0
  177. bashkit-0.17.0/crates/bashkit/tests/integration/execution_capability_tests.rs +291 -0
  178. bashkit-0.17.0/crates/bashkit/tests/integration/execution_profile_tests.rs +185 -0
  179. bashkit-0.17.0/crates/bashkit/tests/integration/filesystem_security_conformance_tests.rs +402 -0
  180. bashkit-0.17.0/crates/bashkit/tests/integration/glob_fuzz_scaffold_tests.rs +153 -0
  181. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/harness_example_tests.rs +5 -0
  182. bashkit-0.17.0/crates/bashkit/tests/integration/host_call_execution_tests.rs +163 -0
  183. bashkit-0.17.0/crates/bashkit/tests/integration/host_mounts_tests.rs +185 -0
  184. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +1 -1
  185. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/main.rs +27 -0
  186. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/network_security_tests.rs +1 -1
  187. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +17 -4
  188. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/proptest_differential.rs +1 -1
  189. bashkit-0.17.0/crates/bashkit/tests/integration/request_lifecycle_contract_tests.rs +231 -0
  190. bashkit-0.17.0/crates/bashkit/tests/integration/runtime_env_tests.rs +84 -0
  191. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/script_analysis.rs +2 -0
  192. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/snapshot_history_tests.rs +6 -1
  193. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/spec_runner.rs +2 -2
  194. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/spec_tests.rs +14 -0
  195. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +13 -35
  196. bashkit-0.17.0/crates/bashkit/tests/integration/thirdparty_adoption_tests.rs +396 -0
  197. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/threat_model_tests.rs +37 -79
  198. bashkit-0.17.0/crates/bashkit/tests/integration/time_command_tests.rs +370 -0
  199. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +45 -3
  200. bashkit-0.17.0/crates/bashkit/tests/integration/tool_registry_tests.rs +266 -0
  201. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/urandom_tests.rs +6 -5
  202. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +22 -0
  203. bashkit-0.17.0/crates/bashkit/tests/integration/yq_integration_tests.rs +448 -0
  204. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/proptest_security.rs +34 -0
  205. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/realfs_tests.rs +306 -0
  206. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/security_failpoint_tests.rs +127 -5
  207. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +7 -0
  208. bashkit-0.17.0/crates/bashkit/tests/spec_cases/yq/yq.test.sh +179 -0
  209. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/ssh_supabase_tests.rs +1 -1
  210. bashkit-0.17.0/crates/bashkit/tests/support/filesystem_security_conformance.rs +70 -0
  211. {bashkit-0.15.0 → bashkit-0.17.0/crates/bashkit-python}/README.md +11 -11
  212. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/src/lib.rs +310 -46
  213. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/_bashkit_categories.py +8 -0
  214. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_builtins.py +5 -0
  215. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +27 -6
  216. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_error_handling.py +1 -0
  217. bashkit-0.17.0/crates/bashkit-python/tests/test_execution_profiles.py +15 -0
  218. bashkit-0.17.0/crates/bashkit-python/tests/test_runtime_extension.py +145 -0
  219. bashkit-0.15.0/crates/bashkit/src/builtins/yaml.rs +0 -745
  220. bashkit-0.15.0/crates/bashkit/src/time_compat.rs +0 -121
  221. {bashkit-0.15.0 → bashkit-0.17.0}/bashkit/deepagents.py +0 -0
  222. {bashkit-0.15.0 → bashkit-0.17.0}/bashkit/langchain.py +0 -0
  223. {bashkit-0.15.0 → bashkit-0.17.0}/bashkit/py.typed +0 -0
  224. {bashkit-0.15.0 → bashkit-0.17.0}/bashkit/pydantic_ai.py +0 -0
  225. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/file_ops.rs +0 -0
  226. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/hotpath.rs +0 -0
  227. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
  228. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
  229. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
  230. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
  231. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
  232. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/snapshot_history.rs +0 -0
  233. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/benches/sqlite.rs +0 -0
  234. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/clap-builtins.md +0 -0
  235. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/docs/ssh.md +0 -0
  236. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/basic.rs +0 -0
  237. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
  238. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
  239. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_backend.rs +0 -0
  240. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  241. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_fs.rs +0 -0
  242. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/generate_snapshot_fixtures.rs +0 -0
  243. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/git_workflow.rs +0 -0
  244. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/large_binary_probe.rs +0 -0
  245. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/live_mounts.rs +0 -0
  246. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/namespace_rebase.rs +0 -0
  247. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
  248. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
  249. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/python_scripts.rs +0 -0
  250. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  251. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  252. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/resource_limits.rs +0 -0
  253. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
  254. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
  255. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
  256. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
  257. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  258. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/streaming_output.rs +0 -0
  259. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/text_files.rs +0 -0
  260. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/text_processing.rs +0 -0
  261. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  262. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  263. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
  264. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/out file.txt +0 -0
  265. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
  266. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  267. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/assert.rs +0 -0
  268. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
  269. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/bc.rs +0 -0
  270. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/caller.rs +0 -0
  271. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
  272. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/clear.rs +0 -0
  273. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
  274. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  275. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  276. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/echo.rs +0 -0
  277. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/expr.rs +0 -0
  278. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/fc.rs +0 -0
  279. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/flow.rs +0 -0
  280. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
  281. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
  282. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
  283. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/help.rs +0 -0
  284. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
  285. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
  286. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
  287. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
  288. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
  289. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
  290. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
  291. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/log.rs +0 -0
  292. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
  293. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
  294. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
  295. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
  296. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  297. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
  298. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
  299. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
  300. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/path.rs +0 -0
  301. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/read.rs +0 -0
  302. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/retry.rs +0 -0
  303. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/runtime_limits.rs +0 -0
  304. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/seq.rs +0 -0
  305. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/source.rs +0 -0
  306. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
  307. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
  308. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
  309. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
  310. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
  311. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
  312. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
  313. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
  314. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
  315. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
  316. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/system.rs +0 -0
  317. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/test.rs +0 -0
  318. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/trap.rs +0 -0
  319. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
  320. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/verify.rs +0 -0
  321. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/yes.rs +0 -0
  322. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/credential.rs +0 -0
  323. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/limits.rs +0 -0
  324. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/namespace.rs +0 -0
  325. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/readonly.rs +0 -0
  326. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/fs/search.rs +0 -0
  327. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/hooks.rs +0 -0
  328. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interop/fs.rs +0 -0
  329. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interop/mod.rs +0 -0
  330. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
  331. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
  332. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/expansion.rs +0 -0
  333. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
  334. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  335. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/logging_impl.rs +0 -0
  336. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/network/allowlist.rs +0 -0
  337. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
  338. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/network/transport.rs +0 -0
  339. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/parser/budget.rs +0 -0
  340. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/parser/lexer.rs +0 -0
  341. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/parser/span.rs +0 -0
  342. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/parser/tokens.rs +0 -0
  343. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/capabilities.rs +0 -0
  344. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/chunker.rs +0 -0
  345. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/container.rs +0 -0
  346. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/objects.rs +0 -0
  347. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/src/trace.rs +0 -0
  348. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/fixtures/snapshots/v1.snapshot +0 -0
  349. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/fixtures/snapshots/v2.snapshot +0 -0
  350. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
  351. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
  352. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
  353. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
  354. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
  355. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
  356. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
  357. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
  358. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
  359. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
  360. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
  361. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
  362. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
  363. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
  364. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
  365. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
  366. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
  367. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
  368. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
  369. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
  370. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
  371. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
  372. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
  373. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
  374. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
  375. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
  376. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
  377. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
  378. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/glob_intermediate_component_tests.rs +0 -0
  379. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
  380. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
  381. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
  382. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
  383. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
  384. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
  385. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
  386. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
  387. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
  388. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
  389. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
  390. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
  391. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
  392. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
  393. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
  394. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
  395. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
  396. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
  397. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
  398. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/namespace_fs_tests.rs +0 -0
  399. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
  400. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +0 -0
  401. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
  402. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
  403. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
  404. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
  405. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
  406. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
  407. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
  408. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
  409. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
  410. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/snapshot_fixture_tests.rs +0 -0
  411. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
  412. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
  413. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
  414. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
  415. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
  416. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
  417. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
  418. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
  419. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
  420. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +0 -0
  421. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
  422. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
  423. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
  424. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
  425. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
  426. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  427. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  428. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  429. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  430. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  431. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  432. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  433. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  434. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  435. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  436. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  437. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  438. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  439. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  440. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  441. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  442. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  443. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  444. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
  445. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  446. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
  447. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  448. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  449. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  450. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  451. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  452. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  453. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  454. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  455. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  456. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  457. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  458. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  459. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  460. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
  461. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  462. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  463. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  464. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
  465. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  466. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  467. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  468. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  469. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  470. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  471. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  472. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  473. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  474. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
  475. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  476. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  477. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  478. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  479. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  480. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  481. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  482. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  483. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  484. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  485. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  486. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  487. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  488. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  489. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  490. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  491. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  492. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
  493. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  494. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  495. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  496. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  497. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  498. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  499. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
  500. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  501. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  502. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  503. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  504. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  505. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  506. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  507. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
  508. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  509. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  510. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  511. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  512. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  513. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  514. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  515. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  516. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  517. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  518. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
  519. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  520. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  521. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  522. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  523. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  524. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  525. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
  526. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  527. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
  528. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  529. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  530. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  531. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  532. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  533. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  534. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
  535. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
  536. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  537. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  538. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  539. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  540. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  541. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  542. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  543. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
  544. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  545. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  546. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  547. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  548. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  549. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  550. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  551. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  552. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  553. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
  554. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  555. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  556. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  557. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  558. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  559. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  560. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  561. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  562. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
  563. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  564. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  565. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  566. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  567. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  568. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  569. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  570. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  571. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  572. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  573. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  574. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  575. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  576. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
  577. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
  578. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  579. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  580. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  581. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  582. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  583. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/Cargo.toml +0 -0
  584. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
  585. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
  586. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
  587. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
  588. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
  589. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  590. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
  591. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
  592. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/examples/session_history.py +0 -0
  593. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
  594. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/_security_core.py +0 -0
  595. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
  596. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_analyze.py +0 -0
  597. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
  598. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_basic.py +0 -0
  599. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
  600. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
  601. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
  602. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_integration.py +0 -0
  603. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
  604. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
  605. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
  606. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
  607. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
  608. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
  609. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
  610. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_security.py +0 -0
  611. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  612. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_snapshot_history.py +0 -0
  613. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
  614. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
  615. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
  616. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
  617. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
  618. {bashkit-0.15.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
  619. {bashkit-0.15.0 → bashkit-0.17.0}/pyproject.toml +0 -0
@@ -30,9 +30,9 @@ dependencies = [
30
30
 
31
31
  [[package]]
32
32
  name = "aegis"
33
- version = "0.9.12"
33
+ version = "0.9.15"
34
34
  source = "registry+https://github.com/rust-lang/crates.io-index"
35
- checksum = "e07d39d15384924b35b70d7b8fa1f9a2934101dd3fa4722ede163cc4f9b7b960"
35
+ checksum = "58541132f980da31e9aa99f7bdee69bc84bf1e168b9b91ef2dbe8abb7b4ce5dd"
36
36
  dependencies = [
37
37
  "cc",
38
38
  "softaes",
@@ -51,9 +51,9 @@ dependencies = [
51
51
 
52
52
  [[package]]
53
53
  name = "aes"
54
- version = "0.9.1"
54
+ version = "0.9.2"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "f1fc76eaeac4c9164506c466d4ffdd8ec9d0c5bf57ee97177c4d8eceb3a0e138"
56
+ checksum = "f8eb277bec05f56a0e0591f155a484cbd0f4f07ff2905051a48c72f004f7ed58"
57
57
  dependencies = [
58
58
  "cipher 0.5.2",
59
59
  "cpubits",
@@ -82,7 +82,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
82
82
  checksum = "fdf011db2e21ce0d575593d749db5554b47fed37aff429e4dc50bc91ac93a028"
83
83
  dependencies = [
84
84
  "aead 0.6.1",
85
- "aes 0.9.1",
85
+ "aes 0.9.2",
86
86
  "cipher 0.5.2",
87
87
  "ctr 0.10.1",
88
88
  "ghash 0.6.0",
@@ -106,9 +106,9 @@ dependencies = [
106
106
 
107
107
  [[package]]
108
108
  name = "aho-corasick"
109
- version = "1.1.4"
109
+ version = "1.1.5"
110
110
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
111
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
112
112
  dependencies = [
113
113
  "memchr",
114
114
  ]
@@ -136,9 +136,9 @@ checksum = "c880a97d28a3681c0267bd29cff89621202715b065127cd445fa0f0fe0aa2880"
136
136
 
137
137
  [[package]]
138
138
  name = "android_system_properties"
139
- version = "0.1.5"
139
+ version = "0.1.6"
140
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
141
- checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
141
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
142
142
  dependencies = [
143
143
  "libc",
144
144
  ]
@@ -149,56 +149,12 @@ version = "0.1.6"
149
149
  source = "registry+https://github.com/rust-lang/crates.io-index"
150
150
  checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
151
151
 
152
- [[package]]
153
- name = "anstream"
154
- version = "1.0.0"
155
- source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
157
- dependencies = [
158
- "anstyle",
159
- "anstyle-parse",
160
- "anstyle-query",
161
- "anstyle-wincon",
162
- "colorchoice",
163
- "is_terminal_polyfill",
164
- "utf8parse",
165
- ]
166
-
167
152
  [[package]]
168
153
  name = "anstyle"
169
154
  version = "1.0.14"
170
155
  source = "registry+https://github.com/rust-lang/crates.io-index"
171
156
  checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
172
157
 
173
- [[package]]
174
- name = "anstyle-parse"
175
- version = "1.0.0"
176
- source = "registry+https://github.com/rust-lang/crates.io-index"
177
- checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
178
- dependencies = [
179
- "utf8parse",
180
- ]
181
-
182
- [[package]]
183
- name = "anstyle-query"
184
- version = "1.1.5"
185
- source = "registry+https://github.com/rust-lang/crates.io-index"
186
- checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
187
- dependencies = [
188
- "windows-sys 0.61.2",
189
- ]
190
-
191
- [[package]]
192
- name = "anstyle-wincon"
193
- version = "3.0.11"
194
- source = "registry+https://github.com/rust-lang/crates.io-index"
195
- checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
196
- dependencies = [
197
- "anstyle",
198
- "once_cell_polyfill",
199
- "windows-sys 0.61.2",
200
- ]
201
-
202
158
  [[package]]
203
159
  name = "antithesis_sdk"
204
160
  version = "0.2.9"
@@ -209,7 +165,7 @@ dependencies = [
209
165
  "libloading 0.8.9",
210
166
  "linkme",
211
167
  "once_cell",
212
- "rand 0.8.6",
168
+ "rand 0.8.7",
213
169
  "rustc_version_runtime",
214
170
  "serde",
215
171
  "serde_json",
@@ -276,9 +232,9 @@ checksum = "bfdc70193dadb9d7287fa4b633f15f90c876915b31f6af17da307fc59c9859a8"
276
232
 
277
233
  [[package]]
278
234
  name = "async-trait"
279
- version = "0.1.91"
235
+ version = "0.1.92"
280
236
  source = "registry+https://github.com/rust-lang/crates.io-index"
281
- checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
237
+ checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
282
238
  dependencies = [
283
239
  "proc-macro2",
284
240
  "quote",
@@ -338,9 +294,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
338
294
 
339
295
  [[package]]
340
296
  name = "aws-lc-rs"
341
- version = "1.17.1"
297
+ version = "1.18.0"
342
298
  source = "registry+https://github.com/rust-lang/crates.io-index"
343
- checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
299
+ checksum = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e"
344
300
  dependencies = [
345
301
  "aws-lc-sys",
346
302
  "untrusted 0.7.1",
@@ -349,9 +305,9 @@ dependencies = [
349
305
 
350
306
  [[package]]
351
307
  name = "aws-lc-sys"
352
- version = "0.42.0"
308
+ version = "0.44.0"
353
309
  source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
310
+ checksum = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483"
355
311
  dependencies = [
356
312
  "cc",
357
313
  "cmake",
@@ -374,9 +330,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
374
330
 
375
331
  [[package]]
376
332
  name = "base64"
377
- version = "0.23.0"
333
+ version = "0.23.1"
378
334
  source = "registry+https://github.com/rust-lang/crates.io-index"
379
- checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9"
335
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
380
336
 
381
337
  [[package]]
382
338
  name = "base64ct"
@@ -386,23 +342,26 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
386
342
 
387
343
  [[package]]
388
344
  name = "bashkit"
389
- version = "0.15.0"
345
+ version = "0.17.0"
390
346
  dependencies = [
391
347
  "anyhow",
392
348
  "async-trait",
393
- "base64 0.23.0",
349
+ "base64 0.23.1",
394
350
  "bigdecimal",
395
351
  "bitflags 2.13.1",
352
+ "bzip2",
396
353
  "chrono",
354
+ "chrono-tz",
397
355
  "clap",
398
356
  "criterion",
399
357
  "ed25519-dalek",
400
358
  "fail",
401
- "fancy-regex 0.18.0",
359
+ "fancy-regex 0.19.0",
402
360
  "flate2",
403
361
  "futures-core",
404
362
  "futures-util",
405
363
  "getrandom 0.4.3",
364
+ "gloo-timers",
406
365
  "hmac",
407
366
  "insta",
408
367
  "jaq-core",
@@ -420,8 +379,10 @@ dependencies = [
420
379
  "reqwest",
421
380
  "russh",
422
381
  "rustls",
382
+ "send_wrapper",
423
383
  "serde",
424
384
  "serde_json",
385
+ "serde_yaml_ng",
425
386
  "serial_test",
426
387
  "sha1",
427
388
  "sha2",
@@ -441,7 +402,7 @@ dependencies = [
441
402
 
442
403
  [[package]]
443
404
  name = "bashkit-bench"
444
- version = "0.15.0"
405
+ version = "0.17.0"
445
406
  dependencies = [
446
407
  "anyhow",
447
408
  "bashkit",
@@ -456,7 +417,7 @@ dependencies = [
456
417
 
457
418
  [[package]]
458
419
  name = "bashkit-capi"
459
- version = "0.15.0"
420
+ version = "0.17.0"
460
421
  dependencies = [
461
422
  "bashkit",
462
423
  "serde",
@@ -466,7 +427,7 @@ dependencies = [
466
427
 
467
428
  [[package]]
468
429
  name = "bashkit-cli"
469
- version = "0.15.0"
430
+ version = "0.17.0"
470
431
  dependencies = [
471
432
  "anyhow",
472
433
  "bashkit",
@@ -480,7 +441,7 @@ dependencies = [
480
441
 
481
442
  [[package]]
482
443
  name = "bashkit-coreutils-port"
483
- version = "0.15.0"
444
+ version = "0.17.0"
484
445
  dependencies = [
485
446
  "anyhow",
486
447
  "prettyplease",
@@ -494,7 +455,7 @@ dependencies = [
494
455
 
495
456
  [[package]]
496
457
  name = "bashkit-eval"
497
- version = "0.15.0"
458
+ version = "0.17.0"
498
459
  dependencies = [
499
460
  "anyhow",
500
461
  "async-trait",
@@ -511,7 +472,7 @@ dependencies = [
511
472
 
512
473
  [[package]]
513
474
  name = "bashkit-js"
514
- version = "0.15.0"
475
+ version = "0.17.0"
515
476
  dependencies = [
516
477
  "bashkit",
517
478
  "napi",
@@ -523,7 +484,7 @@ dependencies = [
523
484
 
524
485
  [[package]]
525
486
  name = "bashkit-python"
526
- version = "0.15.0"
487
+ version = "0.17.0"
527
488
  dependencies = [
528
489
  "bashkit",
529
490
  "num-bigint",
@@ -535,7 +496,7 @@ dependencies = [
535
496
 
536
497
  [[package]]
537
498
  name = "bashkit-wasm"
538
- version = "0.15.0"
499
+ version = "0.17.0"
539
500
  dependencies = [
540
501
  "bashkit",
541
502
  "console_error_panic_hook",
@@ -548,6 +509,7 @@ dependencies = [
548
509
  "serde_json",
549
510
  "wasm-bindgen",
550
511
  "wasm-bindgen-futures",
512
+ "web-time",
551
513
  ]
552
514
 
553
515
  [[package]]
@@ -653,18 +615,18 @@ dependencies = [
653
615
 
654
616
  [[package]]
655
617
  name = "branches"
656
- version = "0.4.4"
618
+ version = "0.4.5"
657
619
  source = "registry+https://github.com/rust-lang/crates.io-index"
658
- checksum = "e426eb5cc1900033930ec955317b302e68f19f326cc7bb0c8a86865a826cdf0c"
620
+ checksum = "b8fba76cd916045514e3064707df9ed5282b94419444c2753a6c62ecaf458e56"
659
621
  dependencies = [
660
622
  "rustc_version",
661
623
  ]
662
624
 
663
625
  [[package]]
664
626
  name = "bstr"
665
- version = "1.12.3"
627
+ version = "1.13.1"
666
628
  source = "registry+https://github.com/rust-lang/crates.io-index"
667
- checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
629
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
668
630
  dependencies = [
669
631
  "memchr",
670
632
  "regex-automata",
@@ -685,22 +647,22 @@ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
685
647
 
686
648
  [[package]]
687
649
  name = "bytemuck"
688
- version = "1.25.0"
650
+ version = "1.25.2"
689
651
  source = "registry+https://github.com/rust-lang/crates.io-index"
690
- checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
652
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
691
653
  dependencies = [
692
654
  "bytemuck_derive",
693
655
  ]
694
656
 
695
657
  [[package]]
696
658
  name = "bytemuck_derive"
697
- version = "1.10.2"
659
+ version = "1.12.0"
698
660
  source = "registry+https://github.com/rust-lang/crates.io-index"
699
- checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
661
+ checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
700
662
  dependencies = [
701
663
  "proc-macro2",
702
664
  "quote",
703
- "syn 2.0.119",
665
+ "syn 3.0.3",
704
666
  ]
705
667
 
706
668
  [[package]]
@@ -715,6 +677,15 @@ version = "1.12.1"
715
677
  source = "registry+https://github.com/rust-lang/crates.io-index"
716
678
  checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
717
679
 
680
+ [[package]]
681
+ name = "bzip2"
682
+ version = "0.6.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
685
+ dependencies = [
686
+ "libbz2-rs-sys",
687
+ ]
688
+
718
689
  [[package]]
719
690
  name = "cast"
720
691
  version = "0.3.0"
@@ -741,9 +712,9 @@ dependencies = [
741
712
 
742
713
  [[package]]
743
714
  name = "cc"
744
- version = "1.2.66"
715
+ version = "1.4.3"
745
716
  source = "registry+https://github.com/rust-lang/crates.io-index"
746
- checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
717
+ checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
747
718
  dependencies = [
748
719
  "find-msvc-tools",
749
720
  "jobserver",
@@ -759,9 +730,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
759
730
 
760
731
  [[package]]
761
732
  name = "cfg_aliases"
762
- version = "0.2.1"
733
+ version = "0.2.2"
763
734
  source = "registry+https://github.com/rust-lang/crates.io-index"
764
- checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
735
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
765
736
 
766
737
  [[package]]
767
738
  name = "cfg_block"
@@ -796,6 +767,16 @@ dependencies = [
796
767
  "windows-link",
797
768
  ]
798
769
 
770
+ [[package]]
771
+ name = "chrono-tz"
772
+ version = "0.10.4"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
775
+ dependencies = [
776
+ "chrono",
777
+ "phf 0.12.1",
778
+ ]
779
+
799
780
  [[package]]
800
781
  name = "ciborium"
801
782
  version = "0.2.2"
@@ -847,9 +828,9 @@ dependencies = [
847
828
 
848
829
  [[package]]
849
830
  name = "clap"
850
- version = "4.6.4"
831
+ version = "4.6.6"
851
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
852
- checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
833
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
853
834
  dependencies = [
854
835
  "clap_builder",
855
836
  "clap_derive",
@@ -857,14 +838,12 @@ dependencies = [
857
838
 
858
839
  [[package]]
859
840
  name = "clap_builder"
860
- version = "4.6.2"
841
+ version = "4.6.6"
861
842
  source = "registry+https://github.com/rust-lang/crates.io-index"
862
- checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
843
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
863
844
  dependencies = [
864
- "anstream",
865
845
  "anstyle",
866
846
  "clap_lex",
867
- "strsim",
868
847
  ]
869
848
 
870
849
  [[package]]
@@ -924,19 +903,13 @@ version = "1.0.3"
924
903
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
904
  checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
926
905
 
927
- [[package]]
928
- name = "colorchoice"
929
- version = "1.0.5"
930
- source = "registry+https://github.com/rust-lang/crates.io-index"
931
- checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
932
-
933
906
  [[package]]
934
907
  name = "colored"
935
908
  version = "3.1.1"
936
909
  source = "registry+https://github.com/rust-lang/crates.io-index"
937
910
  checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
938
911
  dependencies = [
939
- "windows-sys 0.52.0",
912
+ "windows-sys 0.61.2",
940
913
  ]
941
914
 
942
915
  [[package]]
@@ -951,9 +924,9 @@ dependencies = [
951
924
 
952
925
  [[package]]
953
926
  name = "compact_str"
954
- version = "0.9.0"
927
+ version = "0.9.1"
955
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
956
- checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
929
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
957
930
  dependencies = [
958
931
  "castaway",
959
932
  "cfg-if",
@@ -1196,9 +1169,9 @@ dependencies = [
1196
1169
 
1197
1170
  [[package]]
1198
1171
  name = "ctor"
1199
- version = "1.0.8"
1172
+ version = "1.0.13"
1200
1173
  source = "registry+https://github.com/rust-lang/crates.io-index"
1201
- checksum = "fb22e947478ccf9dc44d8922042c677a63fbb88f2cb468521d1145816e5087cb"
1174
+ checksum = "914a755b7c2d4af2bdcff7ce1739e2db9a1b81a9b07123d8015786ae03c0980d"
1202
1175
 
1203
1176
  [[package]]
1204
1177
  name = "ctr"
@@ -1258,9 +1231,9 @@ dependencies = [
1258
1231
 
1259
1232
  [[package]]
1260
1233
  name = "data-encoding"
1261
- version = "2.11.0"
1234
+ version = "2.11.1"
1262
1235
  source = "registry+https://github.com/rust-lang/crates.io-index"
1263
- checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1236
+ checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
1264
1237
 
1265
1238
  [[package]]
1266
1239
  name = "defmt"
@@ -1306,9 +1279,9 @@ dependencies = [
1306
1279
 
1307
1280
  [[package]]
1308
1281
  name = "der"
1309
- version = "0.8.0"
1282
+ version = "0.8.1"
1310
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
1311
- checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
1284
+ checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
1312
1285
  dependencies = [
1313
1286
  "const-oid",
1314
1287
  "pem-rfc7468",
@@ -1355,13 +1328,13 @@ dependencies = [
1355
1328
 
1356
1329
  [[package]]
1357
1330
  name = "displaydoc"
1358
- version = "0.2.6"
1331
+ version = "0.2.7"
1359
1332
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1333
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
1361
1334
  dependencies = [
1362
1335
  "proc-macro2",
1363
1336
  "quote",
1364
- "syn 2.0.119",
1337
+ "syn 3.0.3",
1365
1338
  ]
1366
1339
 
1367
1340
  [[package]]
@@ -1425,9 +1398,9 @@ dependencies = [
1425
1398
 
1426
1399
  [[package]]
1427
1400
  name = "either"
1428
- version = "1.16.0"
1401
+ version = "1.17.0"
1429
1402
  source = "registry+https://github.com/rust-lang/crates.io-index"
1430
- checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1403
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
1431
1404
 
1432
1405
  [[package]]
1433
1406
  name = "elliptic-curve"
@@ -1500,14 +1473,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
1473
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1501
1474
  dependencies = [
1502
1475
  "libc",
1503
- "windows-sys 0.52.0",
1476
+ "windows-sys 0.61.2",
1504
1477
  ]
1505
1478
 
1506
1479
  [[package]]
1507
1480
  name = "error-code"
1508
- version = "3.3.2"
1481
+ version = "3.4.0"
1509
1482
  source = "registry+https://github.com/rust-lang/crates.io-index"
1510
- checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
1483
+ checksum = "0b5343afd4a8365a643ac588dab4cf234a190c7f6c88c9f6dd6ffe00837661b7"
1511
1484
 
1512
1485
  [[package]]
1513
1486
  name = "fail"
@@ -1517,7 +1490,7 @@ checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c"
1517
1490
  dependencies = [
1518
1491
  "log",
1519
1492
  "once_cell",
1520
- "rand 0.8.6",
1493
+ "rand 0.8.7",
1521
1494
  ]
1522
1495
 
1523
1496
  [[package]]
@@ -1539,9 +1512,9 @@ dependencies = [
1539
1512
 
1540
1513
  [[package]]
1541
1514
  name = "fancy-regex"
1542
- version = "0.18.0"
1515
+ version = "0.19.0"
1543
1516
  source = "registry+https://github.com/rust-lang/crates.io-index"
1544
- checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
1517
+ checksum = "476de73bddf2ef8490aa4ee8f1cf40b430bf1d56c48c22080e5186952cd580e6"
1545
1518
  dependencies = [
1546
1519
  "bit-set",
1547
1520
  "regex-automata",
@@ -1561,9 +1534,9 @@ dependencies = [
1561
1534
 
1562
1535
  [[package]]
1563
1536
  name = "fastrand"
1564
- version = "2.4.1"
1537
+ version = "2.5.0"
1565
1538
  source = "registry+https://github.com/rust-lang/crates.io-index"
1566
- checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1539
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
1567
1540
 
1568
1541
  [[package]]
1569
1542
  name = "ff"
@@ -1583,9 +1556,9 @@ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
1583
1556
 
1584
1557
  [[package]]
1585
1558
  name = "find-msvc-tools"
1586
- version = "0.1.9"
1559
+ version = "0.1.11"
1587
1560
  source = "registry+https://github.com/rust-lang/crates.io-index"
1588
- checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1561
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
1589
1562
 
1590
1563
  [[package]]
1591
1564
  name = "flate2"
@@ -1638,9 +1611,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1638
1611
 
1639
1612
  [[package]]
1640
1613
  name = "futures"
1641
- version = "0.3.32"
1614
+ version = "0.3.34"
1642
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1643
- checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1616
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
1644
1617
  dependencies = [
1645
1618
  "futures-channel",
1646
1619
  "futures-core",
@@ -1653,9 +1626,9 @@ dependencies = [
1653
1626
 
1654
1627
  [[package]]
1655
1628
  name = "futures-channel"
1656
- version = "0.3.32"
1629
+ version = "0.3.34"
1657
1630
  source = "registry+https://github.com/rust-lang/crates.io-index"
1658
- checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1631
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
1659
1632
  dependencies = [
1660
1633
  "futures-core",
1661
1634
  "futures-sink",
@@ -1663,15 +1636,15 @@ dependencies = [
1663
1636
 
1664
1637
  [[package]]
1665
1638
  name = "futures-core"
1666
- version = "0.3.33"
1639
+ version = "0.3.34"
1667
1640
  source = "registry+https://github.com/rust-lang/crates.io-index"
1668
- checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
1641
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
1669
1642
 
1670
1643
  [[package]]
1671
1644
  name = "futures-executor"
1672
- version = "0.3.32"
1645
+ version = "0.3.34"
1673
1646
  source = "registry+https://github.com/rust-lang/crates.io-index"
1674
- checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1647
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
1675
1648
  dependencies = [
1676
1649
  "futures-core",
1677
1650
  "futures-task",
@@ -1680,38 +1653,38 @@ dependencies = [
1680
1653
 
1681
1654
  [[package]]
1682
1655
  name = "futures-io"
1683
- version = "0.3.32"
1656
+ version = "0.3.34"
1684
1657
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1658
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
1686
1659
 
1687
1660
  [[package]]
1688
1661
  name = "futures-macro"
1689
- version = "0.3.32"
1662
+ version = "0.3.34"
1690
1663
  source = "registry+https://github.com/rust-lang/crates.io-index"
1691
- checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1664
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
1692
1665
  dependencies = [
1693
1666
  "proc-macro2",
1694
1667
  "quote",
1695
- "syn 2.0.119",
1668
+ "syn 3.0.3",
1696
1669
  ]
1697
1670
 
1698
1671
  [[package]]
1699
1672
  name = "futures-sink"
1700
- version = "0.3.32"
1673
+ version = "0.3.34"
1701
1674
  source = "registry+https://github.com/rust-lang/crates.io-index"
1702
- checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1675
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
1703
1676
 
1704
1677
  [[package]]
1705
1678
  name = "futures-task"
1706
- version = "0.3.32"
1679
+ version = "0.3.34"
1707
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1708
- checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1681
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
1709
1682
 
1710
1683
  [[package]]
1711
1684
  name = "futures-util"
1712
- version = "0.3.32"
1685
+ version = "0.3.34"
1713
1686
  source = "registry+https://github.com/rust-lang/crates.io-index"
1714
- checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1687
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
1715
1688
  dependencies = [
1716
1689
  "futures-channel",
1717
1690
  "futures-core",
@@ -1751,9 +1724,9 @@ dependencies = [
1751
1724
 
1752
1725
  [[package]]
1753
1726
  name = "generic-array"
1754
- version = "1.4.3"
1727
+ version = "1.4.5"
1755
1728
  source = "registry+https://github.com/rust-lang/crates.io-index"
1756
- checksum = "c2e55f16dcf0e9c00efbe2e655ffe45fc98e7066b52bc92f8a79e64060a79351"
1729
+ checksum = "337d46834ee672ab3e48caca2cb0c78cc174fb12b3a68d0d88f99a0519a5e36e"
1757
1730
  dependencies = [
1758
1731
  "generic-array 0.14.7",
1759
1732
  "rustversion",
@@ -1801,8 +1774,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
1774
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1802
1775
  dependencies = [
1803
1776
  "cfg-if",
1777
+ "js-sys",
1804
1778
  "libc",
1805
1779
  "wasi",
1780
+ "wasm-bindgen",
1806
1781
  ]
1807
1782
 
1808
1783
  [[package]]
@@ -1812,9 +1787,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
1787
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1813
1788
  dependencies = [
1814
1789
  "cfg-if",
1790
+ "js-sys",
1815
1791
  "libc",
1816
1792
  "r-efi 5.3.0",
1817
1793
  "wasip2",
1794
+ "wasm-bindgen",
1818
1795
  ]
1819
1796
 
1820
1797
  [[package]]
@@ -1847,7 +1824,19 @@ version = "0.6.0"
1847
1824
  source = "registry+https://github.com/rust-lang/crates.io-index"
1848
1825
  checksum = "2eecf2d5dc9b66b732b97707a0210906b1d30523eb773193ab777c0c84b3e8d5"
1849
1826
  dependencies = [
1850
- "polyval 0.7.1",
1827
+ "polyval 0.7.3",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "gloo-timers"
1832
+ version = "0.4.0"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "482ce8a491a501da4cd806bd190275363d674f2845005c6ddbd5d3e1dd54495d"
1835
+ dependencies = [
1836
+ "futures-channel",
1837
+ "futures-core",
1838
+ "js-sys",
1839
+ "wasm-bindgen",
1851
1840
  ]
1852
1841
 
1853
1842
  [[package]]
@@ -1971,9 +1960,9 @@ dependencies = [
1971
1960
 
1972
1961
  [[package]]
1973
1962
  name = "http"
1974
- version = "1.4.2"
1963
+ version = "1.5.0"
1975
1964
  source = "registry+https://github.com/rust-lang/crates.io-index"
1976
- checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1965
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
1977
1966
  dependencies = [
1978
1967
  "bytes",
1979
1968
  "itoa",
@@ -1981,9 +1970,9 @@ dependencies = [
1981
1970
 
1982
1971
  [[package]]
1983
1972
  name = "http-body"
1984
- version = "1.0.1"
1973
+ version = "1.1.0"
1985
1974
  source = "registry+https://github.com/rust-lang/crates.io-index"
1986
- checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1975
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
1987
1976
  dependencies = [
1988
1977
  "bytes",
1989
1978
  "http",
@@ -1991,9 +1980,9 @@ dependencies = [
1991
1980
 
1992
1981
  [[package]]
1993
1982
  name = "http-body-util"
1994
- version = "0.1.3"
1983
+ version = "0.1.5"
1995
1984
  source = "registry+https://github.com/rust-lang/crates.io-index"
1996
- checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1985
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
1997
1986
  dependencies = [
1998
1987
  "bytes",
1999
1988
  "futures-core",
@@ -2010,9 +1999,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2010
1999
 
2011
2000
  [[package]]
2012
2001
  name = "hybrid-array"
2013
- version = "0.4.13"
2002
+ version = "0.4.14"
2014
2003
  source = "registry+https://github.com/rust-lang/crates.io-index"
2015
- checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
2004
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
2016
2005
  dependencies = [
2017
2006
  "ctutils",
2018
2007
  "subtle",
@@ -2022,9 +2011,9 @@ dependencies = [
2022
2011
 
2023
2012
  [[package]]
2024
2013
  name = "hyper"
2025
- version = "1.10.1"
2014
+ version = "1.11.0"
2026
2015
  source = "registry+https://github.com/rust-lang/crates.io-index"
2027
- checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
2016
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
2028
2017
  dependencies = [
2029
2018
  "atomic-waker",
2030
2019
  "bytes",
@@ -2104,14 +2093,14 @@ dependencies = [
2104
2093
 
2105
2094
  [[package]]
2106
2095
  name = "icu_collator"
2107
- version = "2.2.1"
2096
+ version = "2.3.0"
2108
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
2109
- checksum = "8bbdf98e5e0aa827770acee171ebb568aaab975a36b56afdb5fd0e2f525750bb"
2098
+ checksum = "59eea194d189ca897bcb960fd2130f9e7d53998460d4d32e85a60b10d5507cf4"
2110
2099
  dependencies = [
2111
2100
  "icu_collator_data",
2112
2101
  "icu_collections",
2113
- "icu_locale",
2114
2102
  "icu_locale_core",
2103
+ "icu_locale_fallback",
2115
2104
  "icu_normalizer",
2116
2105
  "icu_properties",
2117
2106
  "icu_provider",
@@ -2123,15 +2112,15 @@ dependencies = [
2123
2112
 
2124
2113
  [[package]]
2125
2114
  name = "icu_collator_data"
2126
- version = "2.2.0"
2115
+ version = "2.3.0"
2127
2116
  source = "registry+https://github.com/rust-lang/crates.io-index"
2128
- checksum = "038ed8e5817f2059c2f3efb0945ba78d060d3d25e8f1a1bea5139f821a21a2f0"
2117
+ checksum = "f7d7e54efdddeb1208c08dd5d32b53a879ac00d2d3d051b2255fd26821d16368"
2129
2118
 
2130
2119
  [[package]]
2131
2120
  name = "icu_collections"
2132
- version = "2.2.0"
2121
+ version = "2.3.0"
2133
2122
  source = "registry+https://github.com/rust-lang/crates.io-index"
2134
- checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2123
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
2135
2124
  dependencies = [
2136
2125
  "displaydoc",
2137
2126
  "potential_utf",
@@ -2143,24 +2132,24 @@ dependencies = [
2143
2132
 
2144
2133
  [[package]]
2145
2134
  name = "icu_locale"
2146
- version = "2.2.0"
2135
+ version = "2.3.0"
2147
2136
  source = "registry+https://github.com/rust-lang/crates.io-index"
2148
- checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
2137
+ checksum = "250ec6d4ac288584d1d0ba29dbfad7737635b7b0e822441f4026a523e3fdb147"
2149
2138
  dependencies = [
2150
2139
  "icu_collections",
2151
2140
  "icu_locale_core",
2152
2141
  "icu_locale_data",
2142
+ "icu_locale_fallback",
2153
2143
  "icu_provider",
2154
- "potential_utf",
2155
2144
  "tinystr",
2156
2145
  "zerovec",
2157
2146
  ]
2158
2147
 
2159
2148
  [[package]]
2160
2149
  name = "icu_locale_core"
2161
- version = "2.2.0"
2150
+ version = "2.3.0"
2162
2151
  source = "registry+https://github.com/rust-lang/crates.io-index"
2163
- checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2152
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
2164
2153
  dependencies = [
2165
2154
  "displaydoc",
2166
2155
  "litemap",
@@ -2172,15 +2161,35 @@ dependencies = [
2172
2161
 
2173
2162
  [[package]]
2174
2163
  name = "icu_locale_data"
2175
- version = "2.2.0"
2164
+ version = "2.3.0"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "d37d91460e362a5cf58907cd7ce871411775ee6294e49a5cc8e6cec16dfa75ea"
2167
+
2168
+ [[package]]
2169
+ name = "icu_locale_fallback"
2170
+ version = "2.3.0"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "251af8e57c9400e3eb58242fe5b8b1152b2a64fdf4cf632f923c38ccee6f2fa9"
2173
+ dependencies = [
2174
+ "icu_locale_core",
2175
+ "icu_locale_fallback_data",
2176
+ "icu_provider",
2177
+ "potential_utf",
2178
+ "tinystr",
2179
+ "zerovec",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "icu_locale_fallback_data"
2184
+ version = "2.3.0"
2176
2185
  source = "registry+https://github.com/rust-lang/crates.io-index"
2177
- checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
2186
+ checksum = "decf2a22ec8fa68f1a0c1129a3f8583f8f8bc24e8b9ccbe98ead99f62a4dc3a8"
2178
2187
 
2179
2188
  [[package]]
2180
2189
  name = "icu_normalizer"
2181
- version = "2.2.0"
2190
+ version = "2.3.0"
2182
2191
  source = "registry+https://github.com/rust-lang/crates.io-index"
2183
- checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2192
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
2184
2193
  dependencies = [
2185
2194
  "icu_collections",
2186
2195
  "icu_normalizer_data",
@@ -2195,16 +2204,17 @@ dependencies = [
2195
2204
 
2196
2205
  [[package]]
2197
2206
  name = "icu_normalizer_data"
2198
- version = "2.2.0"
2207
+ version = "2.3.0"
2199
2208
  source = "registry+https://github.com/rust-lang/crates.io-index"
2200
- checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2209
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
2201
2210
 
2202
2211
  [[package]]
2203
2212
  name = "icu_properties"
2204
- version = "2.2.0"
2213
+ version = "2.3.0"
2205
2214
  source = "registry+https://github.com/rust-lang/crates.io-index"
2206
- checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2215
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
2207
2216
  dependencies = [
2217
+ "displaydoc",
2208
2218
  "icu_collections",
2209
2219
  "icu_locale_core",
2210
2220
  "icu_properties_data",
@@ -2215,15 +2225,15 @@ dependencies = [
2215
2225
 
2216
2226
  [[package]]
2217
2227
  name = "icu_properties_data"
2218
- version = "2.2.0"
2228
+ version = "2.3.0"
2219
2229
  source = "registry+https://github.com/rust-lang/crates.io-index"
2220
- checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2230
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
2221
2231
 
2222
2232
  [[package]]
2223
2233
  name = "icu_provider"
2224
- version = "2.2.0"
2234
+ version = "2.3.0"
2225
2235
  source = "registry+https://github.com/rust-lang/crates.io-index"
2226
- checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2236
+ checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
2227
2237
  dependencies = [
2228
2238
  "displaydoc",
2229
2239
  "icu_locale_core",
@@ -2249,13 +2259,9 @@ dependencies = [
2249
2259
 
2250
2260
  [[package]]
2251
2261
  name = "idna_adapter"
2252
- version = "1.2.2"
2262
+ version = "1.0.0"
2253
2263
  source = "registry+https://github.com/rust-lang/crates.io-index"
2254
- checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2255
- dependencies = [
2256
- "icu_normalizer",
2257
- "icu_properties",
2258
- ]
2264
+ checksum = "cfdf4f5d937a025381f5ab13624b1c5f51414bfe5c9885663226eae8d6d39560"
2259
2265
 
2260
2266
  [[package]]
2261
2267
  name = "indexmap"
@@ -2338,9 +2344,9 @@ dependencies = [
2338
2344
 
2339
2345
  [[package]]
2340
2346
  name = "ipnet"
2341
- version = "2.12.0"
2347
+ version = "2.12.1"
2342
2348
  source = "registry+https://github.com/rust-lang/crates.io-index"
2343
- checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2349
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
2344
2350
 
2345
2351
  [[package]]
2346
2352
  name = "is-macro"
@@ -2354,12 +2360,6 @@ dependencies = [
2354
2360
  "syn 2.0.119",
2355
2361
  ]
2356
2362
 
2357
- [[package]]
2358
- name = "is_terminal_polyfill"
2359
- version = "1.70.2"
2360
- source = "registry+https://github.com/rust-lang/crates.io-index"
2361
- checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2362
-
2363
2363
  [[package]]
2364
2364
  name = "itertools"
2365
2365
  version = "0.13.0"
@@ -2406,9 +2406,9 @@ dependencies = [
2406
2406
 
2407
2407
  [[package]]
2408
2408
  name = "jaq-json"
2409
- version = "2.0.1"
2409
+ version = "2.0.2"
2410
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2411
- checksum = "d4ec9aaad7340e6990c6c1878ef3b46dbec624e535d7f786cc9ddcf94f773d33"
2411
+ checksum = "48d801b0b57f10064c4e9f5a4f6c97d0ccf62649b179ff8ac23cd494a3120ee9"
2412
2412
  dependencies = [
2413
2413
  "bstr",
2414
2414
  "bytes",
@@ -2425,9 +2425,9 @@ dependencies = [
2425
2425
 
2426
2426
  [[package]]
2427
2427
  name = "jaq-std"
2428
- version = "3.0.1"
2428
+ version = "3.0.2"
2429
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
2430
- checksum = "8bdc5a74b0feeb5e6a1dc2dd08c34280a61e37668d10a6a3b27ad69d0fb9ce2e"
2430
+ checksum = "7941c8de9c591052050550f228c62ef80d3ecbd84c330f5c454bc8ebb7a04089"
2431
2431
  dependencies = [
2432
2432
  "aho-corasick",
2433
2433
  "base64 0.22.1",
@@ -2442,11 +2442,12 @@ dependencies = [
2442
2442
 
2443
2443
  [[package]]
2444
2444
  name = "jiff"
2445
- version = "0.2.32"
2445
+ version = "0.2.35"
2446
2446
  source = "registry+https://github.com/rust-lang/crates.io-index"
2447
- checksum = "961d16382652bfdd8c6f68b223b26a8c93e0d475c672f414411db31c6c5c900e"
2447
+ checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
2448
2448
  dependencies = [
2449
2449
  "defmt",
2450
+ "jiff-core",
2450
2451
  "jiff-static",
2451
2452
  "jiff-tzdb-platform",
2452
2453
  "log",
@@ -2456,12 +2457,22 @@ dependencies = [
2456
2457
  "windows-link",
2457
2458
  ]
2458
2459
 
2460
+ [[package]]
2461
+ name = "jiff-core"
2462
+ version = "0.1.0"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
2465
+ dependencies = [
2466
+ "defmt",
2467
+ ]
2468
+
2459
2469
  [[package]]
2460
2470
  name = "jiff-static"
2461
- version = "0.2.32"
2471
+ version = "0.2.35"
2462
2472
  source = "registry+https://github.com/rust-lang/crates.io-index"
2463
- checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
2473
+ checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
2464
2474
  dependencies = [
2475
+ "jiff-core",
2465
2476
  "proc-macro2",
2466
2477
  "quote",
2467
2478
  "syn 2.0.119",
@@ -2557,9 +2568,9 @@ dependencies = [
2557
2568
 
2558
2569
  [[package]]
2559
2570
  name = "js-sys"
2560
- version = "0.3.103"
2571
+ version = "0.3.104"
2561
2572
  source = "registry+https://github.com/rust-lang/crates.io-index"
2562
- checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
2573
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
2563
2574
  dependencies = [
2564
2575
  "cfg-if",
2565
2576
  "futures-util",
@@ -2568,9 +2579,9 @@ dependencies = [
2568
2579
 
2569
2580
  [[package]]
2570
2581
  name = "keccak"
2571
- version = "0.2.0"
2582
+ version = "0.2.1"
2572
2583
  source = "registry+https://github.com/rust-lang/crates.io-index"
2573
- checksum = "9e24a010dd405bd7ed803e5253182815b41bf2e6a80cc3bfc066658e03a198aa"
2584
+ checksum = "ffd9697dc4a9a62e2da93389f34400b77a28f0287711263cabb203b3ccb9c0e4"
2574
2585
  dependencies = [
2575
2586
  "cfg-if",
2576
2587
  "cpufeatures 0.3.0",
@@ -2617,11 +2628,17 @@ version = "1.0.7"
2617
2628
  source = "registry+https://github.com/rust-lang/crates.io-index"
2618
2629
  checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
2619
2630
 
2631
+ [[package]]
2632
+ name = "libbz2-rs-sys"
2633
+ version = "0.2.5"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "34b357333733e8260735ba5894eb928c02ecc69c78715f01a8019e7fa7f2db4c"
2636
+
2620
2637
  [[package]]
2621
2638
  name = "libc"
2622
- version = "0.2.186"
2639
+ version = "0.2.189"
2623
2640
  source = "registry+https://github.com/rust-lang/crates.io-index"
2624
- checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2641
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
2625
2642
 
2626
2643
  [[package]]
2627
2644
  name = "libloading"
@@ -2651,22 +2668,22 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2651
2668
 
2652
2669
  [[package]]
2653
2670
  name = "linkme"
2654
- version = "0.3.36"
2671
+ version = "0.3.37"
2655
2672
  source = "registry+https://github.com/rust-lang/crates.io-index"
2656
- checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
2673
+ checksum = "3045e122bd98aef8ec3ad58ce84f0791f64e70163d1a02710af4aa11a4d54cc5"
2657
2674
  dependencies = [
2658
2675
  "linkme-impl",
2659
2676
  ]
2660
2677
 
2661
2678
  [[package]]
2662
2679
  name = "linkme-impl"
2663
- version = "0.3.36"
2680
+ version = "0.3.37"
2664
2681
  source = "registry+https://github.com/rust-lang/crates.io-index"
2665
- checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
2682
+ checksum = "77060ebe535362c3da75682cd17b0431017b6e7c5661e714fc69a7ad017d1301"
2666
2683
  dependencies = [
2667
2684
  "proc-macro2",
2668
2685
  "quote",
2669
- "syn 2.0.119",
2686
+ "syn 3.0.3",
2670
2687
  ]
2671
2688
 
2672
2689
  [[package]]
@@ -2677,9 +2694,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2677
2694
 
2678
2695
  [[package]]
2679
2696
  name = "litemap"
2680
- version = "0.8.2"
2697
+ version = "0.8.3"
2681
2698
  source = "registry+https://github.com/rust-lang/crates.io-index"
2682
- checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2699
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
2683
2700
 
2684
2701
  [[package]]
2685
2702
  name = "lock_api"
@@ -2753,9 +2770,9 @@ dependencies = [
2753
2770
 
2754
2771
  [[package]]
2755
2772
  name = "md5"
2756
- version = "0.8.0"
2773
+ version = "0.8.1"
2757
2774
  source = "registry+https://github.com/rust-lang/crates.io-index"
2758
- checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
2775
+ checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c"
2759
2776
 
2760
2777
  [[package]]
2761
2778
  name = "memchr"
@@ -2806,9 +2823,9 @@ dependencies = [
2806
2823
 
2807
2824
  [[package]]
2808
2825
  name = "mio"
2809
- version = "1.2.1"
2826
+ version = "1.2.2"
2810
2827
  source = "registry+https://github.com/rust-lang/crates.io-index"
2811
- checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2828
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
2812
2829
  dependencies = [
2813
2830
  "libc",
2814
2831
  "wasi",
@@ -2929,13 +2946,14 @@ dependencies = [
2929
2946
 
2930
2947
  [[package]]
2931
2948
  name = "napi"
2932
- version = "3.11.0"
2949
+ version = "3.12.1"
2933
2950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2934
- checksum = "de33522036981030a75c231829566bc63414e08101a6f5ff4ac6cef19c8e0941"
2951
+ checksum = "459197f1592f4c3dbbf9c1b13f5a4599a343e4ef66b96bc340e2a518b36a6662"
2935
2952
  dependencies = [
2936
2953
  "bitflags 2.13.1",
2937
2954
  "ctor",
2938
2955
  "futures",
2956
+ "libc",
2939
2957
  "napi-build",
2940
2958
  "napi-sys",
2941
2959
  "nohash-hasher",
@@ -2945,15 +2963,15 @@ dependencies = [
2945
2963
 
2946
2964
  [[package]]
2947
2965
  name = "napi-build"
2948
- version = "2.3.2"
2966
+ version = "2.4.1"
2949
2967
  source = "registry+https://github.com/rust-lang/crates.io-index"
2950
- checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
2968
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
2951
2969
 
2952
2970
  [[package]]
2953
2971
  name = "napi-derive"
2954
- version = "3.6.0"
2972
+ version = "3.6.3"
2955
2973
  source = "registry+https://github.com/rust-lang/crates.io-index"
2956
- checksum = "a49c513341a61a16a10af6efcce46b30d0822ba2d4fb197d24d33dfc199c78d5"
2974
+ checksum = "0fa55ea69990c90b888e9e77044410e304ce7f35de599dc6d0b5c1923d2e59af"
2957
2975
  dependencies = [
2958
2976
  "convert_case",
2959
2977
  "ctor",
@@ -2965,9 +2983,9 @@ dependencies = [
2965
2983
 
2966
2984
  [[package]]
2967
2985
  name = "napi-derive-backend"
2968
- version = "6.0.0"
2986
+ version = "6.1.2"
2969
2987
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
- checksum = "4747005fa3e2c9989ac45a723a514c5db2411238b72981a3cda4c701a9dfea17"
2988
+ checksum = "df4056ac7c18e4438ccf0edaed4340ca0d269278c8ec19284f7b23cb039fd0ae"
2971
2989
  dependencies = [
2972
2990
  "convert_case",
2973
2991
  "proc-macro2",
@@ -3040,9 +3058,9 @@ dependencies = [
3040
3058
 
3041
3059
  [[package]]
3042
3060
  name = "num-integer"
3043
- version = "0.1.46"
3061
+ version = "0.1.47"
3044
3062
  source = "registry+https://github.com/rust-lang/crates.io-index"
3045
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
3063
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
3046
3064
  dependencies = [
3047
3065
  "num-traits",
3048
3066
  ]
@@ -3062,12 +3080,6 @@ version = "1.21.4"
3062
3080
  source = "registry+https://github.com/rust-lang/crates.io-index"
3063
3081
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
3064
3082
 
3065
- [[package]]
3066
- name = "once_cell_polyfill"
3067
- version = "1.70.2"
3068
- source = "registry+https://github.com/rust-lang/crates.io-index"
3069
- checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
3070
-
3071
3083
  [[package]]
3072
3084
  name = "oorandom"
3073
3085
  version = "11.1.5"
@@ -3378,9 +3390,9 @@ dependencies = [
3378
3390
 
3379
3391
  [[package]]
3380
3392
  name = "pageant"
3381
- version = "0.2.1"
3393
+ version = "0.2.2"
3382
3394
  source = "registry+https://github.com/rust-lang/crates.io-index"
3383
- checksum = "4f3a5ae18f65a85c67a77d18d42d3606c07948e3c17c1e5f74852b26589e88a5"
3395
+ checksum = "3adadc44070da6f464b0918655a12f5792c156e088d8c4082d13e27d94c3e791"
3384
3396
  dependencies = [
3385
3397
  "base16ct",
3386
3398
  "byteorder",
@@ -3489,6 +3501,15 @@ dependencies = [
3489
3501
  "phf_shared 0.11.3",
3490
3502
  ]
3491
3503
 
3504
+ [[package]]
3505
+ name = "phf"
3506
+ version = "0.12.1"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
3509
+ dependencies = [
3510
+ "phf_shared 0.12.1",
3511
+ ]
3512
+
3492
3513
  [[package]]
3493
3514
  name = "phf"
3494
3515
  version = "0.13.1"
@@ -3517,7 +3538,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3517
3538
  checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
3518
3539
  dependencies = [
3519
3540
  "phf_shared 0.11.3",
3520
- "rand 0.8.6",
3541
+ "rand 0.8.7",
3521
3542
  ]
3522
3543
 
3523
3544
  [[package]]
@@ -3552,6 +3573,15 @@ dependencies = [
3552
3573
  "siphasher",
3553
3574
  ]
3554
3575
 
3576
+ [[package]]
3577
+ name = "phf_shared"
3578
+ version = "0.12.1"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
3581
+ dependencies = [
3582
+ "siphasher",
3583
+ ]
3584
+
3555
3585
  [[package]]
3556
3586
  name = "phf_shared"
3557
3587
  version = "0.13.1"
@@ -3583,7 +3613,7 @@ version = "0.8.1"
3583
3613
  source = "registry+https://github.com/rust-lang/crates.io-index"
3584
3614
  checksum = "63d440a804ec8d6fafbb6b84471e013286658d373248927692ab3366686220ca"
3585
3615
  dependencies = [
3586
- "aes 0.9.1",
3616
+ "aes 0.9.2",
3587
3617
  "aes-gcm 0.11.0",
3588
3618
  "cbc",
3589
3619
  "der",
@@ -3608,9 +3638,9 @@ dependencies = [
3608
3638
 
3609
3639
  [[package]]
3610
3640
  name = "pkg-config"
3611
- version = "0.3.33"
3641
+ version = "0.3.34"
3612
3642
  source = "registry+https://github.com/rust-lang/crates.io-index"
3613
- checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
3643
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
3614
3644
 
3615
3645
  [[package]]
3616
3646
  name = "plotters"
@@ -3679,9 +3709,9 @@ dependencies = [
3679
3709
 
3680
3710
  [[package]]
3681
3711
  name = "polyval"
3682
- version = "0.7.1"
3712
+ version = "0.7.3"
3683
3713
  source = "registry+https://github.com/rust-lang/crates.io-index"
3684
- checksum = "7dfc63250416fea14f5749b90725916a6c903f599d51cb635aa7a52bfd03eede"
3714
+ checksum = "f0fa31d631f2b2cb2a544d0aa321ce847a94764d701ca2becc411138b93d49cd"
3685
3715
  dependencies = [
3686
3716
  "cpubits",
3687
3717
  "cpufeatures 0.3.0",
@@ -3690,9 +3720,9 @@ dependencies = [
3690
3720
 
3691
3721
  [[package]]
3692
3722
  name = "portable-atomic"
3693
- version = "1.13.1"
3723
+ version = "1.15.0"
3694
3724
  source = "registry+https://github.com/rust-lang/crates.io-index"
3695
- checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
3725
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
3696
3726
 
3697
3727
  [[package]]
3698
3728
  name = "portable-atomic-util"
@@ -3718,9 +3748,9 @@ dependencies = [
3718
3748
 
3719
3749
  [[package]]
3720
3750
  name = "potential_utf"
3721
- version = "0.1.5"
3751
+ version = "0.1.6"
3722
3752
  source = "registry+https://github.com/rust-lang/crates.io-index"
3723
- checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
3753
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
3724
3754
  dependencies = [
3725
3755
  "serde_core",
3726
3756
  "writeable",
@@ -3835,7 +3865,7 @@ dependencies = [
3835
3865
  "bit-vec",
3836
3866
  "bitflags 2.13.1",
3837
3867
  "num-traits",
3838
- "rand 0.9.4",
3868
+ "rand 0.9.5",
3839
3869
  "rand_chacha 0.9.0",
3840
3870
  "rand_xorshift",
3841
3871
  "regex-syntax",
@@ -3846,9 +3876,9 @@ dependencies = [
3846
3876
 
3847
3877
  [[package]]
3848
3878
  name = "pyo3"
3849
- version = "0.29.0"
3879
+ version = "0.29.2"
3850
3880
  source = "registry+https://github.com/rust-lang/crates.io-index"
3851
- checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
3881
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
3852
3882
  dependencies = [
3853
3883
  "libc",
3854
3884
  "num-bigint",
@@ -3876,18 +3906,18 @@ dependencies = [
3876
3906
 
3877
3907
  [[package]]
3878
3908
  name = "pyo3-build-config"
3879
- version = "0.29.0"
3909
+ version = "0.29.2"
3880
3910
  source = "registry+https://github.com/rust-lang/crates.io-index"
3881
- checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
3911
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
3882
3912
  dependencies = [
3883
3913
  "target-lexicon",
3884
3914
  ]
3885
3915
 
3886
3916
  [[package]]
3887
3917
  name = "pyo3-ffi"
3888
- version = "0.29.0"
3918
+ version = "0.29.2"
3889
3919
  source = "registry+https://github.com/rust-lang/crates.io-index"
3890
- checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
3920
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
3891
3921
  dependencies = [
3892
3922
  "libc",
3893
3923
  "pyo3-build-config",
@@ -3895,9 +3925,9 @@ dependencies = [
3895
3925
 
3896
3926
  [[package]]
3897
3927
  name = "pyo3-macros"
3898
- version = "0.29.0"
3928
+ version = "0.29.2"
3899
3929
  source = "registry+https://github.com/rust-lang/crates.io-index"
3900
- checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
3930
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
3901
3931
  dependencies = [
3902
3932
  "proc-macro2",
3903
3933
  "pyo3-macros-backend",
@@ -3907,9 +3937,9 @@ dependencies = [
3907
3937
 
3908
3938
  [[package]]
3909
3939
  name = "pyo3-macros-backend"
3910
- version = "0.29.0"
3940
+ version = "0.29.2"
3911
3941
  source = "registry+https://github.com/rust-lang/crates.io-index"
3912
- checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
3942
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
3913
3943
  dependencies = [
3914
3944
  "heck",
3915
3945
  "proc-macro2",
@@ -3984,9 +4014,9 @@ dependencies = [
3984
4014
 
3985
4015
  [[package]]
3986
4016
  name = "rand"
3987
- version = "0.8.6"
4017
+ version = "0.8.7"
3988
4018
  source = "registry+https://github.com/rust-lang/crates.io-index"
3989
- checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
4019
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
3990
4020
  dependencies = [
3991
4021
  "libc",
3992
4022
  "rand_chacha 0.3.1",
@@ -3995,9 +4025,9 @@ dependencies = [
3995
4025
 
3996
4026
  [[package]]
3997
4027
  name = "rand"
3998
- version = "0.9.4"
4028
+ version = "0.9.5"
3999
4029
  source = "registry+https://github.com/rust-lang/crates.io-index"
4000
- checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
4030
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
4001
4031
  dependencies = [
4002
4032
  "rand_chacha 0.9.0",
4003
4033
  "rand_core 0.9.5",
@@ -4116,9 +4146,9 @@ dependencies = [
4116
4146
 
4117
4147
  [[package]]
4118
4148
  name = "regex"
4119
- version = "1.13.0"
4149
+ version = "1.13.1"
4120
4150
  source = "registry+https://github.com/rust-lang/crates.io-index"
4121
- checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
4151
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
4122
4152
  dependencies = [
4123
4153
  "aho-corasick",
4124
4154
  "memchr",
@@ -4128,9 +4158,9 @@ dependencies = [
4128
4158
 
4129
4159
  [[package]]
4130
4160
  name = "regex-automata"
4131
- version = "0.4.14"
4161
+ version = "0.4.18"
4132
4162
  source = "registry+https://github.com/rust-lang/crates.io-index"
4133
- checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
4163
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
4134
4164
  dependencies = [
4135
4165
  "aho-corasick",
4136
4166
  "memchr",
@@ -4214,9 +4244,9 @@ dependencies = [
4214
4244
 
4215
4245
  [[package]]
4216
4246
  name = "roaring"
4217
- version = "0.11.4"
4247
+ version = "0.11.5"
4218
4248
  source = "registry+https://github.com/rust-lang/crates.io-index"
4219
- checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9"
4249
+ checksum = "18bd8a37d17a58532776dcdf6041ce64929adca78e8489d5cacbafe99229d3e1"
4220
4250
  dependencies = [
4221
4251
  "bytemuck",
4222
4252
  "byteorder",
@@ -4327,11 +4357,11 @@ dependencies = [
4327
4357
 
4328
4358
  [[package]]
4329
4359
  name = "russh"
4330
- version = "0.62.5"
4360
+ version = "0.62.7"
4331
4361
  source = "registry+https://github.com/rust-lang/crates.io-index"
4332
- checksum = "da7c230e0ed9cbeb92fbad6c8848985d6df2a1464c0dc247a021abd666e9005e"
4362
+ checksum = "9decb68e4e44e1079700e54f17c8f23806ec53d7e0db73ab1c71d9dabc666812"
4333
4363
  dependencies = [
4334
- "aes 0.9.1",
4364
+ "aes 0.9.2",
4335
4365
  "aws-lc-rs",
4336
4366
  "bitflags 2.13.1",
4337
4367
  "block-padding",
@@ -4352,7 +4382,7 @@ dependencies = [
4352
4382
  "enum_dispatch",
4353
4383
  "flate2",
4354
4384
  "futures",
4355
- "generic-array 1.4.3",
4385
+ "generic-array 1.4.5",
4356
4386
  "getrandom 0.4.3",
4357
4387
  "ghash 0.6.0",
4358
4388
  "hex-literal",
@@ -4373,7 +4403,7 @@ dependencies = [
4373
4403
  "pkcs1",
4374
4404
  "pkcs5",
4375
4405
  "pkcs8",
4376
- "polyval 0.7.1",
4406
+ "polyval 0.7.3",
4377
4407
  "rand 0.10.2",
4378
4408
  "rand_core 0.10.1",
4379
4409
  "rsa",
@@ -4456,15 +4486,16 @@ dependencies = [
4456
4486
  "errno",
4457
4487
  "libc",
4458
4488
  "linux-raw-sys",
4459
- "windows-sys 0.52.0",
4489
+ "windows-sys 0.61.2",
4460
4490
  ]
4461
4491
 
4462
4492
  [[package]]
4463
4493
  name = "rustls"
4464
- version = "0.23.42"
4494
+ version = "0.23.43"
4465
4495
  source = "registry+https://github.com/rust-lang/crates.io-index"
4466
- checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
4496
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
4467
4497
  dependencies = [
4498
+ "aws-lc-rs",
4468
4499
  "log",
4469
4500
  "once_cell",
4470
4501
  "ring",
@@ -4488,9 +4519,9 @@ dependencies = [
4488
4519
 
4489
4520
  [[package]]
4490
4521
  name = "rustls-pki-types"
4491
- version = "1.15.0"
4522
+ version = "1.15.1"
4492
4523
  source = "registry+https://github.com/rust-lang/crates.io-index"
4493
- checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
4524
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
4494
4525
  dependencies = [
4495
4526
  "zeroize",
4496
4527
  ]
@@ -4513,7 +4544,7 @@ dependencies = [
4513
4544
  "security-framework",
4514
4545
  "security-framework-sys",
4515
4546
  "webpki-root-certs",
4516
- "windows-sys 0.52.0",
4547
+ "windows-sys 0.61.2",
4517
4548
  ]
4518
4549
 
4519
4550
  [[package]]
@@ -4524,10 +4555,11 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
4524
4555
 
4525
4556
  [[package]]
4526
4557
  name = "rustls-webpki"
4527
- version = "0.103.13"
4558
+ version = "0.103.14"
4528
4559
  source = "registry+https://github.com/rust-lang/crates.io-index"
4529
- checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
4560
+ checksum = "0527518605e68109d875e248ea259b6758801cf165e4b2c2733ae3b51f12535a"
4530
4561
  dependencies = [
4562
+ "aws-lc-rs",
4531
4563
  "ring",
4532
4564
  "rustls-pki-types",
4533
4565
  "untrusted 0.9.0",
@@ -4669,9 +4701,9 @@ dependencies = [
4669
4701
 
4670
4702
  [[package]]
4671
4703
  name = "self_cell"
4672
- version = "1.2.2"
4704
+ version = "1.3.0"
4673
4705
  source = "registry+https://github.com/rust-lang/crates.io-index"
4674
- checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
4706
+ checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
4675
4707
 
4676
4708
  [[package]]
4677
4709
  name = "semver"
@@ -4757,6 +4789,19 @@ dependencies = [
4757
4789
  "serde_core",
4758
4790
  ]
4759
4791
 
4792
+ [[package]]
4793
+ name = "serde_yaml_ng"
4794
+ version = "0.10.0"
4795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4796
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
4797
+ dependencies = [
4798
+ "indexmap",
4799
+ "itoa",
4800
+ "ryu",
4801
+ "serde",
4802
+ "unsafe-libyaml",
4803
+ ]
4804
+
4760
4805
  [[package]]
4761
4806
  name = "serdect"
4762
4807
  version = "0.4.3"
@@ -4868,7 +4913,7 @@ dependencies = [
4868
4913
  "generator",
4869
4914
  "hex",
4870
4915
  "owo-colors 3.5.0",
4871
- "rand 0.8.6",
4916
+ "rand 0.8.7",
4872
4917
  "rand_core 0.6.4",
4873
4918
  "rand_pcg",
4874
4919
  "scoped-tls",
@@ -4908,15 +4953,15 @@ dependencies = [
4908
4953
 
4909
4954
  [[package]]
4910
4955
  name = "simd-adler32"
4911
- version = "0.3.9"
4956
+ version = "0.3.10"
4912
4957
  source = "registry+https://github.com/rust-lang/crates.io-index"
4913
- checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
4958
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
4914
4959
 
4915
4960
  [[package]]
4916
4961
  name = "simd_cesu8"
4917
- version = "1.1.1"
4962
+ version = "1.2.0"
4918
4963
  source = "registry+https://github.com/rust-lang/crates.io-index"
4919
- checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
4964
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
4920
4965
  dependencies = [
4921
4966
  "rustc_version",
4922
4967
  "simdutf8",
@@ -4972,9 +5017,9 @@ checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
4972
5017
 
4973
5018
  [[package]]
4974
5019
  name = "socket2"
4975
- version = "0.6.4"
5020
+ version = "0.6.5"
4976
5021
  source = "registry+https://github.com/rust-lang/crates.io-index"
4977
- checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
5022
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
4978
5023
  dependencies = [
4979
5024
  "libc",
4980
5025
  "windows-sys 0.61.2",
@@ -4999,9 +5044,9 @@ dependencies = [
4999
5044
 
5000
5045
  [[package]]
5001
5046
  name = "spin"
5002
- version = "0.9.8"
5047
+ version = "0.9.9"
5003
5048
  source = "registry+https://github.com/rust-lang/crates.io-index"
5004
- checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
5049
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
5005
5050
  dependencies = [
5006
5051
  "lock_api",
5007
5052
  ]
@@ -5029,7 +5074,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5029
5074
  checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
5030
5075
  dependencies = [
5031
5076
  "aead 0.6.1",
5032
- "aes 0.9.1",
5077
+ "aes 0.9.2",
5033
5078
  "aes-gcm 0.11.0",
5034
5079
  "chacha20",
5035
5080
  "cipher 0.5.2",
@@ -5093,12 +5138,6 @@ version = "1.1.0"
5093
5138
  source = "registry+https://github.com/rust-lang/crates.io-index"
5094
5139
  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
5095
5140
 
5096
- [[package]]
5097
- name = "strsim"
5098
- version = "0.11.1"
5099
- source = "registry+https://github.com/rust-lang/crates.io-index"
5100
- checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
5101
-
5102
5141
  [[package]]
5103
5142
  name = "strum"
5104
5143
  version = "0.26.3"
@@ -5236,7 +5275,7 @@ dependencies = [
5236
5275
  "getrandom 0.4.3",
5237
5276
  "once_cell",
5238
5277
  "rustix",
5239
- "windows-sys 0.52.0",
5278
+ "windows-sys 0.61.2",
5240
5279
  ]
5241
5280
 
5242
5281
  [[package]]
@@ -5271,24 +5310,24 @@ dependencies = [
5271
5310
 
5272
5311
  [[package]]
5273
5312
  name = "thin-vec"
5274
- version = "0.2.18"
5313
+ version = "0.2.19"
5275
5314
  source = "registry+https://github.com/rust-lang/crates.io-index"
5276
- checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
5315
+ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
5277
5316
 
5278
5317
  [[package]]
5279
5318
  name = "thiserror"
5280
- version = "2.0.19"
5319
+ version = "2.0.20"
5281
5320
  source = "registry+https://github.com/rust-lang/crates.io-index"
5282
- checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
5321
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
5283
5322
  dependencies = [
5284
5323
  "thiserror-impl",
5285
5324
  ]
5286
5325
 
5287
5326
  [[package]]
5288
5327
  name = "thiserror-impl"
5289
- version = "2.0.19"
5328
+ version = "2.0.20"
5290
5329
  source = "registry+https://github.com/rust-lang/crates.io-index"
5291
- checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
5330
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
5292
5331
  dependencies = [
5293
5332
  "proc-macro2",
5294
5333
  "quote",
@@ -5297,18 +5336,18 @@ dependencies = [
5297
5336
 
5298
5337
  [[package]]
5299
5338
  name = "thread_local"
5300
- version = "1.1.9"
5339
+ version = "1.1.10"
5301
5340
  source = "registry+https://github.com/rust-lang/crates.io-index"
5302
- checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
5341
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
5303
5342
  dependencies = [
5304
5343
  "cfg-if",
5305
5344
  ]
5306
5345
 
5307
5346
  [[package]]
5308
5347
  name = "tinystr"
5309
- version = "0.8.3"
5348
+ version = "0.8.4"
5310
5349
  source = "registry+https://github.com/rust-lang/crates.io-index"
5311
- checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
5350
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
5312
5351
  dependencies = [
5313
5352
  "displaydoc",
5314
5353
  "serde_core",
@@ -5327,9 +5366,9 @@ dependencies = [
5327
5366
 
5328
5367
  [[package]]
5329
5368
  name = "tinyvec"
5330
- version = "1.11.0"
5369
+ version = "1.12.0"
5331
5370
  source = "registry+https://github.com/rust-lang/crates.io-index"
5332
- checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
5371
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
5333
5372
  dependencies = [
5334
5373
  "tinyvec_macros",
5335
5374
  ]
@@ -5358,13 +5397,13 @@ dependencies = [
5358
5397
 
5359
5398
  [[package]]
5360
5399
  name = "tokio-macros"
5361
- version = "2.7.0"
5400
+ version = "2.7.2"
5362
5401
  source = "registry+https://github.com/rust-lang/crates.io-index"
5363
- checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
5402
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
5364
5403
  dependencies = [
5365
5404
  "proc-macro2",
5366
5405
  "quote",
5367
- "syn 2.0.119",
5406
+ "syn 3.0.3",
5368
5407
  ]
5369
5408
 
5370
5409
  [[package]]
@@ -5379,9 +5418,9 @@ dependencies = [
5379
5418
 
5380
5419
  [[package]]
5381
5420
  name = "tokio-stream"
5382
- version = "0.1.18"
5421
+ version = "0.1.19"
5383
5422
  source = "registry+https://github.com/rust-lang/crates.io-index"
5384
- checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
5423
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
5385
5424
  dependencies = [
5386
5425
  "futures-core",
5387
5426
  "pin-project-lite",
@@ -5401,9 +5440,9 @@ dependencies = [
5401
5440
 
5402
5441
  [[package]]
5403
5442
  name = "tokio-util"
5404
- version = "0.7.18"
5443
+ version = "0.7.19"
5405
5444
  source = "registry+https://github.com/rust-lang/crates.io-index"
5406
- checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
5445
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
5407
5446
  dependencies = [
5408
5447
  "bytes",
5409
5448
  "futures-core",
@@ -5414,9 +5453,9 @@ dependencies = [
5414
5453
 
5415
5454
  [[package]]
5416
5455
  name = "toml"
5417
- version = "1.1.3+spec-1.1.0"
5456
+ version = "1.1.4+spec-1.1.0"
5418
5457
  source = "registry+https://github.com/rust-lang/crates.io-index"
5419
- checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
5458
+ checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
5420
5459
  dependencies = [
5421
5460
  "indexmap",
5422
5461
  "serde_core",
@@ -5438,9 +5477,9 @@ dependencies = [
5438
5477
 
5439
5478
  [[package]]
5440
5479
  name = "toml_parser"
5441
- version = "1.1.2+spec-1.1.0"
5480
+ version = "1.1.3+spec-1.1.0"
5442
5481
  source = "registry+https://github.com/rust-lang/crates.io-index"
5443
- checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
5482
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
5444
5483
  dependencies = [
5445
5484
  "winnow",
5446
5485
  ]
@@ -5565,9 +5604,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
5565
5604
 
5566
5605
  [[package]]
5567
5606
  name = "turso_core"
5568
- version = "0.8.0-pre.2"
5607
+ version = "0.8.0-pre.4"
5569
5608
  source = "registry+https://github.com/rust-lang/crates.io-index"
5570
- checksum = "126a369027e3f8d5736f871267e9a79fe18e081cf4023b520d3a45097bc9e841"
5609
+ checksum = "91d21d176e7cc7dc607778f33b186ad981003969451ca0e3dca7494ea5ebb08a"
5571
5610
  dependencies = [
5572
5611
  "aegis",
5573
5612
  "aes 0.8.4",
@@ -5590,6 +5629,8 @@ dependencies = [
5590
5629
  "either",
5591
5630
  "fallible-iterator",
5592
5631
  "fastbloom",
5632
+ "getrandom 0.2.17",
5633
+ "getrandom 0.3.4",
5593
5634
  "hex",
5594
5635
  "icu_collator",
5595
5636
  "icu_locale",
@@ -5605,7 +5646,7 @@ dependencies = [
5605
5646
  "parking_lot",
5606
5647
  "pastey",
5607
5648
  "polling",
5608
- "rand 0.9.4",
5649
+ "rand 0.9.5",
5609
5650
  "rapidhash",
5610
5651
  "regex",
5611
5652
  "regex-syntax",
@@ -5615,6 +5656,7 @@ dependencies = [
5615
5656
  "ryu",
5616
5657
  "serde_json",
5617
5658
  "shuttle",
5659
+ "simdutf8",
5618
5660
  "simsimd",
5619
5661
  "smallvec",
5620
5662
  "strum 0.26.3",
@@ -5634,9 +5676,9 @@ dependencies = [
5634
5676
 
5635
5677
  [[package]]
5636
5678
  name = "turso_ext"
5637
- version = "0.8.0-pre.2"
5679
+ version = "0.8.0-pre.4"
5638
5680
  source = "registry+https://github.com/rust-lang/crates.io-index"
5639
- checksum = "2cca983d5255440f8074a017c1bebe4bb387f079a43fedc179f3de1e6f3e3def"
5681
+ checksum = "d9c1d40548fd1ddfa1e9486b864de3e625658a9c9013031a0d7f69ffbcab2773"
5640
5682
  dependencies = [
5641
5683
  "chrono",
5642
5684
  "getrandom 0.4.3",
@@ -5645,9 +5687,9 @@ dependencies = [
5645
5687
 
5646
5688
  [[package]]
5647
5689
  name = "turso_macros"
5648
- version = "0.8.0-pre.2"
5690
+ version = "0.8.0-pre.4"
5649
5691
  source = "registry+https://github.com/rust-lang/crates.io-index"
5650
- checksum = "0cd0d06b919b0c6a517451c05a855368fecf101eeb87b4eaf299a3daa97ad2e2"
5692
+ checksum = "20622919c832ac37fb4f784e450f5dfe10598ffbd42c735aa9b2e756c4044137"
5651
5693
  dependencies = [
5652
5694
  "proc-macro2",
5653
5695
  "quote",
@@ -5656,9 +5698,9 @@ dependencies = [
5656
5698
 
5657
5699
  [[package]]
5658
5700
  name = "turso_parser"
5659
- version = "0.8.0-pre.2"
5701
+ version = "0.8.0-pre.4"
5660
5702
  source = "registry+https://github.com/rust-lang/crates.io-index"
5661
- checksum = "d6c143277cc1387ba02aed82856a20c43108f8aaa4caf55201f73b229db08fcf"
5703
+ checksum = "5aad14b801fcb7ec1970f51c135e9ddcbbd79d7bce99b16eeb6a2213e536d478"
5662
5704
  dependencies = [
5663
5705
  "bitflags 2.13.1",
5664
5706
  "memchr",
@@ -5671,11 +5713,11 @@ dependencies = [
5671
5713
 
5672
5714
  [[package]]
5673
5715
  name = "twox-hash"
5674
- version = "2.1.2"
5716
+ version = "2.1.3"
5675
5717
  source = "registry+https://github.com/rust-lang/crates.io-index"
5676
- checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
5718
+ checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
5677
5719
  dependencies = [
5678
- "rand 0.9.4",
5720
+ "rand 0.10.2",
5679
5721
  ]
5680
5722
 
5681
5723
  [[package]]
@@ -5775,7 +5817,7 @@ dependencies = [
5775
5817
  "getopts",
5776
5818
  "log",
5777
5819
  "phf_codegen",
5778
- "rand 0.8.6",
5820
+ "rand 0.8.7",
5779
5821
  ]
5780
5822
 
5781
5823
  [[package]]
@@ -5804,6 +5846,12 @@ dependencies = [
5804
5846
  "ctutils",
5805
5847
  ]
5806
5848
 
5849
+ [[package]]
5850
+ name = "unsafe-libyaml"
5851
+ version = "0.2.11"
5852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5853
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
5854
+
5807
5855
  [[package]]
5808
5856
  name = "untrusted"
5809
5857
  version = "0.7.1"
@@ -5854,9 +5902,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5854
5902
 
5855
5903
  [[package]]
5856
5904
  name = "uuid"
5857
- version = "1.23.4"
5905
+ version = "1.24.1"
5858
5906
  source = "registry+https://github.com/rust-lang/crates.io-index"
5859
- checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
5907
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
5860
5908
  dependencies = [
5861
5909
  "getrandom 0.4.3",
5862
5910
  "js-sys",
@@ -5921,9 +5969,9 @@ dependencies = [
5921
5969
 
5922
5970
  [[package]]
5923
5971
  name = "wasm-bindgen"
5924
- version = "0.2.126"
5972
+ version = "0.2.127"
5925
5973
  source = "registry+https://github.com/rust-lang/crates.io-index"
5926
- checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
5974
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
5927
5975
  dependencies = [
5928
5976
  "cfg-if",
5929
5977
  "once_cell",
@@ -5934,9 +5982,9 @@ dependencies = [
5934
5982
 
5935
5983
  [[package]]
5936
5984
  name = "wasm-bindgen-futures"
5937
- version = "0.4.76"
5985
+ version = "0.4.77"
5938
5986
  source = "registry+https://github.com/rust-lang/crates.io-index"
5939
- checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
5987
+ checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
5940
5988
  dependencies = [
5941
5989
  "js-sys",
5942
5990
  "wasm-bindgen",
@@ -5944,9 +5992,9 @@ dependencies = [
5944
5992
 
5945
5993
  [[package]]
5946
5994
  name = "wasm-bindgen-macro"
5947
- version = "0.2.126"
5995
+ version = "0.2.127"
5948
5996
  source = "registry+https://github.com/rust-lang/crates.io-index"
5949
- checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
5997
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
5950
5998
  dependencies = [
5951
5999
  "quote",
5952
6000
  "wasm-bindgen-macro-support",
@@ -5954,9 +6002,9 @@ dependencies = [
5954
6002
 
5955
6003
  [[package]]
5956
6004
  name = "wasm-bindgen-macro-support"
5957
- version = "0.2.126"
6005
+ version = "0.2.127"
5958
6006
  source = "registry+https://github.com/rust-lang/crates.io-index"
5959
- checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
6007
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
5960
6008
  dependencies = [
5961
6009
  "bumpalo",
5962
6010
  "proc-macro2",
@@ -5967,9 +6015,9 @@ dependencies = [
5967
6015
 
5968
6016
  [[package]]
5969
6017
  name = "wasm-bindgen-shared"
5970
- version = "0.2.126"
6018
+ version = "0.2.127"
5971
6019
  source = "registry+https://github.com/rust-lang/crates.io-index"
5972
- checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
6020
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
5973
6021
  dependencies = [
5974
6022
  "unicode-ident",
5975
6023
  ]
@@ -5989,9 +6037,9 @@ dependencies = [
5989
6037
 
5990
6038
  [[package]]
5991
6039
  name = "web-sys"
5992
- version = "0.3.103"
6040
+ version = "0.3.104"
5993
6041
  source = "registry+https://github.com/rust-lang/crates.io-index"
5994
- checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
6042
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
5995
6043
  dependencies = [
5996
6044
  "js-sys",
5997
6045
  "wasm-bindgen",
@@ -6009,9 +6057,9 @@ dependencies = [
6009
6057
 
6010
6058
  [[package]]
6011
6059
  name = "webpki-root-certs"
6012
- version = "1.0.8"
6060
+ version = "1.0.9"
6013
6061
  source = "registry+https://github.com/rust-lang/crates.io-index"
6014
- checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
6062
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
6015
6063
  dependencies = [
6016
6064
  "rustls-pki-types",
6017
6065
  ]
@@ -6038,7 +6086,7 @@ version = "0.1.11"
6038
6086
  source = "registry+https://github.com/rust-lang/crates.io-index"
6039
6087
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
6040
6088
  dependencies = [
6041
- "windows-sys 0.52.0",
6089
+ "windows-sys 0.61.2",
6042
6090
  ]
6043
6091
 
6044
6092
  [[package]]
@@ -6241,9 +6289,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
6241
6289
 
6242
6290
  [[package]]
6243
6291
  name = "winnow"
6244
- version = "1.0.3"
6292
+ version = "1.0.4"
6245
6293
  source = "registry+https://github.com/rust-lang/crates.io-index"
6246
- checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
6294
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
6247
6295
 
6248
6296
  [[package]]
6249
6297
  name = "wit-bindgen"
@@ -6270,9 +6318,9 @@ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
6270
6318
 
6271
6319
  [[package]]
6272
6320
  name = "writeable"
6273
- version = "0.6.3"
6321
+ version = "0.6.4"
6274
6322
  source = "registry+https://github.com/rust-lang/crates.io-index"
6275
- checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
6323
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
6276
6324
 
6277
6325
  [[package]]
6278
6326
  name = "wyz"
@@ -6331,18 +6379,18 @@ dependencies = [
6331
6379
 
6332
6380
  [[package]]
6333
6381
  name = "zerocopy"
6334
- version = "0.8.54"
6382
+ version = "0.8.56"
6335
6383
  source = "registry+https://github.com/rust-lang/crates.io-index"
6336
- checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
6384
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
6337
6385
  dependencies = [
6338
6386
  "zerocopy-derive",
6339
6387
  ]
6340
6388
 
6341
6389
  [[package]]
6342
6390
  name = "zerocopy-derive"
6343
- version = "0.8.54"
6391
+ version = "0.8.56"
6344
6392
  source = "registry+https://github.com/rust-lang/crates.io-index"
6345
- checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
6393
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
6346
6394
  dependencies = [
6347
6395
  "proc-macro2",
6348
6396
  "quote",
@@ -6378,9 +6426,9 @@ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
6378
6426
 
6379
6427
  [[package]]
6380
6428
  name = "zerotrie"
6381
- version = "0.2.4"
6429
+ version = "0.2.5"
6382
6430
  source = "registry+https://github.com/rust-lang/crates.io-index"
6383
- checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
6431
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
6384
6432
  dependencies = [
6385
6433
  "displaydoc",
6386
6434
  "yoke",
@@ -6390,9 +6438,9 @@ dependencies = [
6390
6438
 
6391
6439
  [[package]]
6392
6440
  name = "zerovec"
6393
- version = "0.11.6"
6441
+ version = "0.11.7"
6394
6442
  source = "registry+https://github.com/rust-lang/crates.io-index"
6395
- checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
6443
+ checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
6396
6444
  dependencies = [
6397
6445
  "serde",
6398
6446
  "yoke",
@@ -6402,17 +6450,17 @@ dependencies = [
6402
6450
 
6403
6451
  [[package]]
6404
6452
  name = "zerovec-derive"
6405
- version = "0.11.3"
6453
+ version = "0.11.4"
6406
6454
  source = "registry+https://github.com/rust-lang/crates.io-index"
6407
- checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
6455
+ checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
6408
6456
  dependencies = [
6409
6457
  "proc-macro2",
6410
6458
  "quote",
6411
- "syn 2.0.119",
6459
+ "syn 3.0.3",
6412
6460
  ]
6413
6461
 
6414
6462
  [[package]]
6415
6463
  name = "zmij"
6416
- version = "1.0.21"
6464
+ version = "1.0.23"
6417
6465
  source = "registry+https://github.com/rust-lang/crates.io-index"
6418
- checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
6466
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"