bashkit 0.16.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 (617) hide show
  1. {bashkit-0.16.0 → bashkit-0.17.0}/Cargo.lock +323 -355
  2. {bashkit-0.16.0 → bashkit-0.17.0}/Cargo.toml +56 -12
  3. {bashkit-0.16.0 → bashkit-0.17.0}/PKG-INFO +12 -12
  4. {bashkit-0.16.0/crates/bashkit-python → bashkit-0.17.0}/README.md +11 -11
  5. {bashkit-0.16.0 → bashkit-0.17.0}/bashkit/_bashkit.pyi +39 -0
  6. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/Cargo.toml +72 -8
  7. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/README.md +25 -25
  8. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/README.md +4 -4
  9. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +1 -1
  10. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +1 -1
  11. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-snapshot-history-baseline-linux-x86_64-1785444523.md +11 -11
  12. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-sqlite-Mykhailos-Mini.lan-darwin-arm64-1785957173.md +1 -1
  13. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +1 -1
  14. bashkit-0.17.0/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1786872580.md +89 -0
  15. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/compatibility.md +15 -15
  16. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/credential-injection.md +1 -1
  17. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/custom_builtins.md +5 -5
  18. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/hooks.md +13 -13
  19. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/jq.md +5 -5
  20. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/live_mounts.md +48 -10
  21. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/logging.md +1 -1
  22. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/namespace_filesystems.md +4 -4
  23. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/python.md +5 -5
  24. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/script-analysis.md +12 -12
  25. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/sqlite.md +5 -5
  26. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/threat-model.md +28 -17
  27. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/typescript.md +7 -7
  28. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/yq.md +9 -8
  29. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/agent_tool.rs +3 -0
  30. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/analysis.rs +76 -2
  31. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/date.rs +53 -12
  32. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/environ.rs +1 -1
  33. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/fileops.rs +1 -1
  34. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/cat_args.rs +1 -1
  35. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +47 -51
  36. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/argument.rs +2 -6
  37. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/escape.rs +10 -10
  38. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/human.rs +1 -1
  39. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/mod.rs +61 -31
  40. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +39 -27
  41. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format/spec.rs +10 -7
  42. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/format_support.rs +20 -2
  43. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/ls_args.rs +1 -1
  44. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +1 -1
  45. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/mod.rs +1 -1
  46. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/num_parser.rs +8 -13
  47. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/od_args.rs +1 -1
  48. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +1 -1
  49. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +1 -1
  50. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +1 -1
  51. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/stat_args.rs +1 -1
  52. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/tac_args.rs +2 -1
  53. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/tee_args.rs +1 -1
  54. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +1 -1
  55. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/client.rs +1 -1
  56. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/mod.rs +9 -3
  57. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/printf.rs +17 -3
  58. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/engine.rs +17 -5
  59. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/yq.rs +86 -0
  60. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/zip_cmd.rs +58 -27
  61. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/posix.rs +50 -6
  62. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/realfs.rs +61 -7
  63. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/mod.rs +50 -11
  64. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/redirection.rs +82 -11
  65. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/lib.rs +62 -4
  66. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/network/client.rs +23 -11
  67. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/graph.rs +45 -28
  68. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/mod.rs +8 -5
  69. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/testing.rs +122 -13
  70. bashkit-0.17.0/crates/bashkit/src/time_compat/host_clock.rs +125 -0
  71. bashkit-0.16.0/crates/bashkit/src/time_compat.rs → bashkit-0.17.0/crates/bashkit/src/time_compat/mod.rs +95 -7
  72. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/tool_registry.rs +39 -4
  73. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/byte_stream_tests.rs +33 -0
  74. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/command_resolver_tests.rs +23 -0
  75. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +18 -0
  76. bashkit-0.17.0/crates/bashkit/tests/integration/date_timezone_no_tzdata_tests.rs +135 -0
  77. bashkit-0.17.0/crates/bashkit/tests/integration/glob_fuzz_scaffold_tests.rs +153 -0
  78. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/host_mounts_tests.rs +31 -0
  79. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/main.rs +8 -0
  80. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +13 -0
  81. bashkit-0.17.0/crates/bashkit/tests/integration/runtime_env_tests.rs +84 -0
  82. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +12 -34
  83. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/thirdparty_adoption_tests.rs +66 -35
  84. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/threat_model_tests.rs +17 -0
  85. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +45 -3
  86. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/tool_registry_tests.rs +30 -0
  87. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/yq_integration_tests.rs +27 -11
  88. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +7 -0
  89. {bashkit-0.16.0 → bashkit-0.17.0/crates/bashkit-python}/README.md +11 -11
  90. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/src/lib.rs +159 -5
  91. bashkit-0.17.0/crates/bashkit-python/tests/test_runtime_extension.py +145 -0
  92. {bashkit-0.16.0 → bashkit-0.17.0}/bashkit/__init__.py +0 -0
  93. {bashkit-0.16.0 → bashkit-0.17.0}/bashkit/deepagents.py +0 -0
  94. {bashkit-0.16.0 → bashkit-0.17.0}/bashkit/langchain.py +0 -0
  95. {bashkit-0.16.0 → bashkit-0.17.0}/bashkit/py.typed +0 -0
  96. {bashkit-0.16.0 → bashkit-0.17.0}/bashkit/pydantic_ai.py +0 -0
  97. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/awk_regex.rs +0 -0
  98. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/file_ops.rs +0 -0
  99. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/hotpath.rs +0 -0
  100. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
  101. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-awk-regex-mykhailos-mini-darwin-arm64-1785952907.md +0 -0
  102. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
  103. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
  104. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
  105. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
  106. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/snapshot_history.rs +0 -0
  107. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/benches/sqlite.rs +0 -0
  108. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/clap-builtins.md +0 -0
  109. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/docs/ssh.md +0 -0
  110. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/basic.rs +0 -0
  111. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
  112. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
  113. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_backend.rs +0 -0
  114. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
  115. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  116. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/custom_fs.rs +0 -0
  117. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/dump_builtins.rs +0 -0
  118. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/generate_snapshot_fixtures.rs +0 -0
  119. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/git_workflow.rs +0 -0
  120. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/large_binary_probe.rs +0 -0
  121. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/live_mounts.rs +0 -0
  122. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/namespace_rebase.rs +0 -0
  123. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
  124. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
  125. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/python_scripts.rs +0 -0
  126. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  127. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  128. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/resource_limits.rs +0 -0
  129. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
  130. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
  131. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
  132. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
  133. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  134. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/streaming_output.rs +0 -0
  135. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/text_files.rs +0 -0
  136. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/text_processing.rs +0 -0
  137. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  138. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  139. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
  140. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/out file.txt +0 -0
  141. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
  142. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/alias.rs +0 -0
  143. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/archive.rs +0 -0
  144. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  145. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/assert.rs +0 -0
  146. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
  147. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
  148. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
  149. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
  150. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/base64.rs +0 -0
  151. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/bc.rs +0 -0
  152. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/caller.rs +0 -0
  153. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/cat.rs +0 -0
  154. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
  155. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
  156. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/clear.rs +0 -0
  157. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/column.rs +0 -0
  158. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/comm.rs +0 -0
  159. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
  160. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/csv.rs +0 -0
  161. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/curl.rs +0 -0
  162. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
  163. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/diff.rs +0 -0
  164. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  165. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/disk.rs +0 -0
  166. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  167. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/echo.rs +0 -0
  168. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
  169. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/expand.rs +0 -0
  170. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/export.rs +0 -0
  171. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/expr.rs +0 -0
  172. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/fc.rs +0 -0
  173. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/flow.rs +0 -0
  174. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/fold.rs +0 -0
  175. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
  176. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
  177. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
  178. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
  179. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/grep.rs +0 -0
  180. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
  181. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/help.rs +0 -0
  182. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
  183. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
  184. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/http.rs +0 -0
  185. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
  186. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
  187. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
  188. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/join.rs +0 -0
  189. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
  190. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
  191. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
  192. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
  193. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
  194. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/input.rs +0 -0
  195. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
  196. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
  197. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
  198. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/json.rs +0 -0
  199. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/limits.rs +0 -0
  200. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/log.rs +0 -0
  201. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/find.rs +0 -0
  202. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
  203. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
  204. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
  205. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
  206. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
  207. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  208. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  209. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
  210. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/nl.rs +0 -0
  211. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
  212. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
  213. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/paste.rs +0 -0
  214. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/patch.rs +0 -0
  215. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/path.rs +0 -0
  216. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
  217. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/python.rs +0 -0
  218. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/read.rs +0 -0
  219. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/retry.rs +0 -0
  220. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/rg/mod.rs +0 -0
  221. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/runtime_limits.rs +0 -0
  222. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
  223. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sed.rs +0 -0
  224. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/semver.rs +0 -0
  225. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/seq.rs +0 -0
  226. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/shuf.rs +0 -0
  227. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
  228. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
  229. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/source.rs +0 -0
  230. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/split.rs +0 -0
  231. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
  232. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
  233. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
  234. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
  235. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
  236. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
  237. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
  238. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
  239. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
  240. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
  241. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
  242. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
  243. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
  244. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/strings.rs +0 -0
  245. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/system.rs +0 -0
  246. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/template.rs +0 -0
  247. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/test.rs +0 -0
  248. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
  249. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
  250. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
  251. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/trap.rs +0 -0
  252. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/tree.rs +0 -0
  253. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
  254. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
  255. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/vars.rs +0 -0
  256. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/verify.rs +0 -0
  257. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/wait.rs +0 -0
  258. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/wc.rs +0 -0
  259. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/builtins/yes.rs +0 -0
  260. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/credential.rs +0 -0
  261. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/error.rs +0 -0
  262. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/execution_capability.rs +0 -0
  263. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/backend.rs +0 -0
  264. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/limits.rs +0 -0
  265. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/memory.rs +0 -0
  266. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/mod.rs +0 -0
  267. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/mountable.rs +0 -0
  268. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/namespace.rs +0 -0
  269. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/overlay.rs +0 -0
  270. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/readonly.rs +0 -0
  271. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/search.rs +0 -0
  272. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/fs/traits.rs +0 -0
  273. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/hooks.rs +0 -0
  274. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/host_call.rs +0 -0
  275. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interop/fs.rs +0 -0
  276. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interop/mod.rs +0 -0
  277. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
  278. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
  279. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/expansion.rs +0 -0
  280. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
  281. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  282. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/state.rs +0 -0
  283. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/interpreter/time_command.rs +0 -0
  284. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/limits.rs +0 -0
  285. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/logging_impl.rs +0 -0
  286. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/network/allowlist.rs +0 -0
  287. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
  288. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/network/mod.rs +0 -0
  289. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/network/transport.rs +0 -0
  290. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/parser/ast.rs +0 -0
  291. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/parser/budget.rs +0 -0
  292. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/parser/lexer.rs +0 -0
  293. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/parser/mod.rs +0 -0
  294. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/parser/span.rs +0 -0
  295. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/parser/tokens.rs +0 -0
  296. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/profile.rs +0 -0
  297. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
  298. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
  299. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
  300. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
  301. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/capabilities.rs +0 -0
  302. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/chunker.rs +0 -0
  303. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/container.rs +0 -0
  304. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/snapshot/objects.rs +0 -0
  305. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/stream.rs +0 -0
  306. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/tool.rs +0 -0
  307. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/tool_def.rs +0 -0
  308. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/src/trace.rs +0 -0
  309. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/fixtures/competitor-regressions/just-bash-2026-08-05.json +0 -0
  310. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/fixtures/snapshots/v1.snapshot +0 -0
  311. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/fixtures/snapshots/v2.snapshot +0 -0
  312. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
  313. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
  314. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/archive_bzip2_tests.rs +0 -0
  315. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
  316. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
  317. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
  318. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
  319. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
  320. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
  321. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
  322. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
  323. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
  324. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
  325. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
  326. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
  327. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
  328. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
  329. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/competitor_regression_tests.rs +0 -0
  330. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
  331. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
  332. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
  333. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/curl_data_compat_tests.rs +0 -0
  334. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
  335. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
  336. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/date_timezone_differential_tests.rs +0 -0
  337. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/date_timezone_tests.rs +0 -0
  338. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
  339. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
  340. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/execution_budget_tests.rs +0 -0
  341. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/execution_capability_tests.rs +0 -0
  342. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/execution_profile_tests.rs +0 -0
  343. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/filesystem_security_conformance_tests.rs +0 -0
  344. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
  345. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
  346. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
  347. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
  348. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
  349. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
  350. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
  351. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
  352. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/glob_intermediate_component_tests.rs +0 -0
  353. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
  354. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
  355. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/host_call_execution_tests.rs +0 -0
  356. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
  357. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
  358. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
  359. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
  360. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
  361. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
  362. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
  363. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
  364. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
  365. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
  366. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
  367. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
  368. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
  369. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
  370. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
  371. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
  372. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
  373. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
  374. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
  375. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/namespace_fs_tests.rs +0 -0
  376. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
  377. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
  378. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +0 -0
  379. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
  380. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
  381. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
  382. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
  383. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
  384. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/request_lifecycle_contract_tests.rs +0 -0
  385. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/script_analysis.rs +0 -0
  386. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
  387. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
  388. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
  389. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
  390. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
  391. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/snapshot_fixture_tests.rs +0 -0
  392. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/snapshot_history_tests.rs +0 -0
  393. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
  394. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
  395. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
  396. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
  397. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
  398. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
  399. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
  400. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
  401. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
  402. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
  403. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
  404. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +0 -0
  405. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/time_command_tests.rs +0 -0
  406. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
  407. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
  408. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
  409. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
  410. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
  411. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
  412. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
  413. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  414. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/proptest_security.rs +0 -0
  415. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
  416. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  417. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  418. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  419. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  420. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  421. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  422. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  423. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  424. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  425. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  426. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  427. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  428. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  429. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  430. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  431. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  432. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  433. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  434. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
  435. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  436. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
  437. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  438. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  439. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  440. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  441. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  442. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  443. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  444. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  445. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  446. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  447. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  448. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  449. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  450. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
  451. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  452. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  453. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  454. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
  455. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  456. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  457. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  458. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  459. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  460. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  461. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  462. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  463. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  464. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
  465. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  466. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  467. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  468. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  469. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  470. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  471. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  472. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  473. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  474. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  475. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  476. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  477. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  478. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  479. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  480. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  481. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  482. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
  483. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  484. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  485. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  486. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  487. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  488. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  489. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
  490. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  491. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  492. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  493. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  494. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  495. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  496. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  497. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
  498. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  499. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  500. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  501. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  502. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  503. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  504. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  505. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  506. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  507. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  508. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
  509. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  510. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  511. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  512. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  513. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  514. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  515. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
  516. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  517. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
  518. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  519. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  520. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  521. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  522. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  523. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  524. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
  525. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
  526. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  527. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  528. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  529. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  530. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  531. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  532. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  533. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
  534. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  535. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  536. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  537. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  538. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  539. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  540. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  541. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  542. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  543. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
  544. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  545. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  546. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  547. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  548. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  549. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  550. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  551. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  552. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
  553. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  554. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  555. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  556. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  557. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  558. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  559. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  560. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  561. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  562. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  563. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  564. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  565. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  566. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
  567. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
  568. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  569. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  570. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  571. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  572. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/spec_cases/yq/yq.test.sh +0 -0
  573. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  574. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
  575. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit/tests/support/filesystem_security_conformance.rs +0 -0
  576. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/Cargo.toml +0 -0
  577. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
  578. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
  579. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
  580. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
  581. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
  582. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  583. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
  584. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
  585. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/examples/session_history.py +0 -0
  586. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
  587. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
  588. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/_security_core.py +0 -0
  589. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
  590. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_analyze.py +0 -0
  591. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
  592. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_basic.py +0 -0
  593. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
  594. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
  595. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
  596. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
  597. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_execution_profiles.py +0 -0
  598. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
  599. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
  600. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_integration.py +0 -0
  601. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
  602. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
  603. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
  604. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
  605. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
  606. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
  607. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
  608. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_security.py +0 -0
  609. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  610. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_snapshot_history.py +0 -0
  611. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
  612. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
  613. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
  614. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
  615. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
  616. {bashkit-0.16.0 → bashkit-0.17.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
  617. {bashkit-0.16.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,11 +342,11 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
386
342
 
387
343
  [[package]]
388
344
  name = "bashkit"
389
- version = "0.16.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",
396
352
  "bzip2",
@@ -446,7 +402,7 @@ dependencies = [
446
402
 
447
403
  [[package]]
448
404
  name = "bashkit-bench"
449
- version = "0.16.0"
405
+ version = "0.17.0"
450
406
  dependencies = [
451
407
  "anyhow",
452
408
  "bashkit",
@@ -461,7 +417,7 @@ dependencies = [
461
417
 
462
418
  [[package]]
463
419
  name = "bashkit-capi"
464
- version = "0.16.0"
420
+ version = "0.17.0"
465
421
  dependencies = [
466
422
  "bashkit",
467
423
  "serde",
@@ -471,7 +427,7 @@ dependencies = [
471
427
 
472
428
  [[package]]
473
429
  name = "bashkit-cli"
474
- version = "0.16.0"
430
+ version = "0.17.0"
475
431
  dependencies = [
476
432
  "anyhow",
477
433
  "bashkit",
@@ -485,7 +441,7 @@ dependencies = [
485
441
 
486
442
  [[package]]
487
443
  name = "bashkit-coreutils-port"
488
- version = "0.16.0"
444
+ version = "0.17.0"
489
445
  dependencies = [
490
446
  "anyhow",
491
447
  "prettyplease",
@@ -499,7 +455,7 @@ dependencies = [
499
455
 
500
456
  [[package]]
501
457
  name = "bashkit-eval"
502
- version = "0.16.0"
458
+ version = "0.17.0"
503
459
  dependencies = [
504
460
  "anyhow",
505
461
  "async-trait",
@@ -516,7 +472,7 @@ dependencies = [
516
472
 
517
473
  [[package]]
518
474
  name = "bashkit-js"
519
- version = "0.16.0"
475
+ version = "0.17.0"
520
476
  dependencies = [
521
477
  "bashkit",
522
478
  "napi",
@@ -528,7 +484,7 @@ dependencies = [
528
484
 
529
485
  [[package]]
530
486
  name = "bashkit-python"
531
- version = "0.16.0"
487
+ version = "0.17.0"
532
488
  dependencies = [
533
489
  "bashkit",
534
490
  "num-bigint",
@@ -540,7 +496,7 @@ dependencies = [
540
496
 
541
497
  [[package]]
542
498
  name = "bashkit-wasm"
543
- version = "0.16.0"
499
+ version = "0.17.0"
544
500
  dependencies = [
545
501
  "bashkit",
546
502
  "console_error_panic_hook",
@@ -659,18 +615,18 @@ dependencies = [
659
615
 
660
616
  [[package]]
661
617
  name = "branches"
662
- version = "0.4.4"
618
+ version = "0.4.5"
663
619
  source = "registry+https://github.com/rust-lang/crates.io-index"
664
- checksum = "e426eb5cc1900033930ec955317b302e68f19f326cc7bb0c8a86865a826cdf0c"
620
+ checksum = "b8fba76cd916045514e3064707df9ed5282b94419444c2753a6c62ecaf458e56"
665
621
  dependencies = [
666
622
  "rustc_version",
667
623
  ]
668
624
 
669
625
  [[package]]
670
626
  name = "bstr"
671
- version = "1.12.3"
627
+ version = "1.13.1"
672
628
  source = "registry+https://github.com/rust-lang/crates.io-index"
673
- checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
629
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
674
630
  dependencies = [
675
631
  "memchr",
676
632
  "regex-automata",
@@ -691,22 +647,22 @@ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
691
647
 
692
648
  [[package]]
693
649
  name = "bytemuck"
694
- version = "1.25.0"
650
+ version = "1.25.2"
695
651
  source = "registry+https://github.com/rust-lang/crates.io-index"
696
- checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
652
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
697
653
  dependencies = [
698
654
  "bytemuck_derive",
699
655
  ]
700
656
 
701
657
  [[package]]
702
658
  name = "bytemuck_derive"
703
- version = "1.10.2"
659
+ version = "1.12.0"
704
660
  source = "registry+https://github.com/rust-lang/crates.io-index"
705
- checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
661
+ checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
706
662
  dependencies = [
707
663
  "proc-macro2",
708
664
  "quote",
709
- "syn 2.0.119",
665
+ "syn 3.0.3",
710
666
  ]
711
667
 
712
668
  [[package]]
@@ -756,9 +712,9 @@ dependencies = [
756
712
 
757
713
  [[package]]
758
714
  name = "cc"
759
- version = "1.2.66"
715
+ version = "1.4.3"
760
716
  source = "registry+https://github.com/rust-lang/crates.io-index"
761
- checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
717
+ checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
762
718
  dependencies = [
763
719
  "find-msvc-tools",
764
720
  "jobserver",
@@ -774,9 +730,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
774
730
 
775
731
  [[package]]
776
732
  name = "cfg_aliases"
777
- version = "0.2.1"
733
+ version = "0.2.2"
778
734
  source = "registry+https://github.com/rust-lang/crates.io-index"
779
- checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
735
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
780
736
 
781
737
  [[package]]
782
738
  name = "cfg_block"
@@ -872,9 +828,9 @@ dependencies = [
872
828
 
873
829
  [[package]]
874
830
  name = "clap"
875
- version = "4.6.5"
831
+ version = "4.6.6"
876
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
877
- checksum = "301b56658598e48f3648647ac6fc887be7e7108eddfa4e9b63fcf3ec58c0cadf"
833
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
878
834
  dependencies = [
879
835
  "clap_builder",
880
836
  "clap_derive",
@@ -882,14 +838,12 @@ dependencies = [
882
838
 
883
839
  [[package]]
884
840
  name = "clap_builder"
885
- version = "4.6.5"
841
+ version = "4.6.6"
886
842
  source = "registry+https://github.com/rust-lang/crates.io-index"
887
- checksum = "94a65403d1a1bd28f7dc68eb8506e8874808ee5eecb59298de588e2e1407a078"
843
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
888
844
  dependencies = [
889
- "anstream",
890
845
  "anstyle",
891
846
  "clap_lex",
892
- "strsim",
893
847
  ]
894
848
 
895
849
  [[package]]
@@ -949,12 +903,6 @@ version = "1.0.3"
949
903
  source = "registry+https://github.com/rust-lang/crates.io-index"
950
904
  checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
951
905
 
952
- [[package]]
953
- name = "colorchoice"
954
- version = "1.0.5"
955
- source = "registry+https://github.com/rust-lang/crates.io-index"
956
- checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
957
-
958
906
  [[package]]
959
907
  name = "colored"
960
908
  version = "3.1.1"
@@ -976,9 +924,9 @@ dependencies = [
976
924
 
977
925
  [[package]]
978
926
  name = "compact_str"
979
- version = "0.9.0"
927
+ version = "0.9.1"
980
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
981
- checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
929
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
982
930
  dependencies = [
983
931
  "castaway",
984
932
  "cfg-if",
@@ -1221,9 +1169,9 @@ dependencies = [
1221
1169
 
1222
1170
  [[package]]
1223
1171
  name = "ctor"
1224
- version = "1.0.8"
1172
+ version = "1.0.13"
1225
1173
  source = "registry+https://github.com/rust-lang/crates.io-index"
1226
- checksum = "fb22e947478ccf9dc44d8922042c677a63fbb88f2cb468521d1145816e5087cb"
1174
+ checksum = "914a755b7c2d4af2bdcff7ce1739e2db9a1b81a9b07123d8015786ae03c0980d"
1227
1175
 
1228
1176
  [[package]]
1229
1177
  name = "ctr"
@@ -1283,9 +1231,9 @@ dependencies = [
1283
1231
 
1284
1232
  [[package]]
1285
1233
  name = "data-encoding"
1286
- version = "2.11.0"
1234
+ version = "2.11.1"
1287
1235
  source = "registry+https://github.com/rust-lang/crates.io-index"
1288
- checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1236
+ checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
1289
1237
 
1290
1238
  [[package]]
1291
1239
  name = "defmt"
@@ -1331,9 +1279,9 @@ dependencies = [
1331
1279
 
1332
1280
  [[package]]
1333
1281
  name = "der"
1334
- version = "0.8.0"
1282
+ version = "0.8.1"
1335
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
1336
- checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
1284
+ checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
1337
1285
  dependencies = [
1338
1286
  "const-oid",
1339
1287
  "pem-rfc7468",
@@ -1380,13 +1328,13 @@ dependencies = [
1380
1328
 
1381
1329
  [[package]]
1382
1330
  name = "displaydoc"
1383
- version = "0.2.6"
1331
+ version = "0.2.7"
1384
1332
  source = "registry+https://github.com/rust-lang/crates.io-index"
1385
- checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1333
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
1386
1334
  dependencies = [
1387
1335
  "proc-macro2",
1388
1336
  "quote",
1389
- "syn 2.0.119",
1337
+ "syn 3.0.3",
1390
1338
  ]
1391
1339
 
1392
1340
  [[package]]
@@ -1450,9 +1398,9 @@ dependencies = [
1450
1398
 
1451
1399
  [[package]]
1452
1400
  name = "either"
1453
- version = "1.16.0"
1401
+ version = "1.17.0"
1454
1402
  source = "registry+https://github.com/rust-lang/crates.io-index"
1455
- checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1403
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
1456
1404
 
1457
1405
  [[package]]
1458
1406
  name = "elliptic-curve"
@@ -1530,9 +1478,9 @@ dependencies = [
1530
1478
 
1531
1479
  [[package]]
1532
1480
  name = "error-code"
1533
- version = "3.3.2"
1481
+ version = "3.4.0"
1534
1482
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
- checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
1483
+ checksum = "0b5343afd4a8365a643ac588dab4cf234a190c7f6c88c9f6dd6ffe00837661b7"
1536
1484
 
1537
1485
  [[package]]
1538
1486
  name = "fail"
@@ -1542,7 +1490,7 @@ checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c"
1542
1490
  dependencies = [
1543
1491
  "log",
1544
1492
  "once_cell",
1545
- "rand 0.8.6",
1493
+ "rand 0.8.7",
1546
1494
  ]
1547
1495
 
1548
1496
  [[package]]
@@ -1586,9 +1534,9 @@ dependencies = [
1586
1534
 
1587
1535
  [[package]]
1588
1536
  name = "fastrand"
1589
- version = "2.4.1"
1537
+ version = "2.5.0"
1590
1538
  source = "registry+https://github.com/rust-lang/crates.io-index"
1591
- checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1539
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
1592
1540
 
1593
1541
  [[package]]
1594
1542
  name = "ff"
@@ -1608,9 +1556,9 @@ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
1608
1556
 
1609
1557
  [[package]]
1610
1558
  name = "find-msvc-tools"
1611
- version = "0.1.9"
1559
+ version = "0.1.11"
1612
1560
  source = "registry+https://github.com/rust-lang/crates.io-index"
1613
- checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1561
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
1614
1562
 
1615
1563
  [[package]]
1616
1564
  name = "flate2"
@@ -1663,9 +1611,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1663
1611
 
1664
1612
  [[package]]
1665
1613
  name = "futures"
1666
- version = "0.3.32"
1614
+ version = "0.3.34"
1667
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1668
- checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1616
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
1669
1617
  dependencies = [
1670
1618
  "futures-channel",
1671
1619
  "futures-core",
@@ -1678,9 +1626,9 @@ dependencies = [
1678
1626
 
1679
1627
  [[package]]
1680
1628
  name = "futures-channel"
1681
- version = "0.3.32"
1629
+ version = "0.3.34"
1682
1630
  source = "registry+https://github.com/rust-lang/crates.io-index"
1683
- checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1631
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
1684
1632
  dependencies = [
1685
1633
  "futures-core",
1686
1634
  "futures-sink",
@@ -1688,15 +1636,15 @@ dependencies = [
1688
1636
 
1689
1637
  [[package]]
1690
1638
  name = "futures-core"
1691
- version = "0.3.33"
1639
+ version = "0.3.34"
1692
1640
  source = "registry+https://github.com/rust-lang/crates.io-index"
1693
- checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
1641
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
1694
1642
 
1695
1643
  [[package]]
1696
1644
  name = "futures-executor"
1697
- version = "0.3.32"
1645
+ version = "0.3.34"
1698
1646
  source = "registry+https://github.com/rust-lang/crates.io-index"
1699
- checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1647
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
1700
1648
  dependencies = [
1701
1649
  "futures-core",
1702
1650
  "futures-task",
@@ -1705,38 +1653,38 @@ dependencies = [
1705
1653
 
1706
1654
  [[package]]
1707
1655
  name = "futures-io"
1708
- version = "0.3.32"
1656
+ version = "0.3.34"
1709
1657
  source = "registry+https://github.com/rust-lang/crates.io-index"
1710
- checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1658
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
1711
1659
 
1712
1660
  [[package]]
1713
1661
  name = "futures-macro"
1714
- version = "0.3.32"
1662
+ version = "0.3.34"
1715
1663
  source = "registry+https://github.com/rust-lang/crates.io-index"
1716
- checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1664
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
1717
1665
  dependencies = [
1718
1666
  "proc-macro2",
1719
1667
  "quote",
1720
- "syn 2.0.119",
1668
+ "syn 3.0.3",
1721
1669
  ]
1722
1670
 
1723
1671
  [[package]]
1724
1672
  name = "futures-sink"
1725
- version = "0.3.32"
1673
+ version = "0.3.34"
1726
1674
  source = "registry+https://github.com/rust-lang/crates.io-index"
1727
- checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1675
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
1728
1676
 
1729
1677
  [[package]]
1730
1678
  name = "futures-task"
1731
- version = "0.3.32"
1679
+ version = "0.3.34"
1732
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1733
- checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1681
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
1734
1682
 
1735
1683
  [[package]]
1736
1684
  name = "futures-util"
1737
- version = "0.3.32"
1685
+ version = "0.3.34"
1738
1686
  source = "registry+https://github.com/rust-lang/crates.io-index"
1739
- checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1687
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
1740
1688
  dependencies = [
1741
1689
  "futures-channel",
1742
1690
  "futures-core",
@@ -1776,9 +1724,9 @@ dependencies = [
1776
1724
 
1777
1725
  [[package]]
1778
1726
  name = "generic-array"
1779
- version = "1.4.3"
1727
+ version = "1.4.5"
1780
1728
  source = "registry+https://github.com/rust-lang/crates.io-index"
1781
- checksum = "c2e55f16dcf0e9c00efbe2e655ffe45fc98e7066b52bc92f8a79e64060a79351"
1729
+ checksum = "337d46834ee672ab3e48caca2cb0c78cc174fb12b3a68d0d88f99a0519a5e36e"
1782
1730
  dependencies = [
1783
1731
  "generic-array 0.14.7",
1784
1732
  "rustversion",
@@ -1826,8 +1774,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
1774
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1827
1775
  dependencies = [
1828
1776
  "cfg-if",
1777
+ "js-sys",
1829
1778
  "libc",
1830
1779
  "wasi",
1780
+ "wasm-bindgen",
1831
1781
  ]
1832
1782
 
1833
1783
  [[package]]
@@ -1837,9 +1787,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
1787
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1838
1788
  dependencies = [
1839
1789
  "cfg-if",
1790
+ "js-sys",
1840
1791
  "libc",
1841
1792
  "r-efi 5.3.0",
1842
1793
  "wasip2",
1794
+ "wasm-bindgen",
1843
1795
  ]
1844
1796
 
1845
1797
  [[package]]
@@ -1872,14 +1824,14 @@ version = "0.6.0"
1872
1824
  source = "registry+https://github.com/rust-lang/crates.io-index"
1873
1825
  checksum = "2eecf2d5dc9b66b732b97707a0210906b1d30523eb773193ab777c0c84b3e8d5"
1874
1826
  dependencies = [
1875
- "polyval 0.7.1",
1827
+ "polyval 0.7.3",
1876
1828
  ]
1877
1829
 
1878
1830
  [[package]]
1879
1831
  name = "gloo-timers"
1880
- version = "0.3.0"
1832
+ version = "0.4.0"
1881
1833
  source = "registry+https://github.com/rust-lang/crates.io-index"
1882
- checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
1834
+ checksum = "482ce8a491a501da4cd806bd190275363d674f2845005c6ddbd5d3e1dd54495d"
1883
1835
  dependencies = [
1884
1836
  "futures-channel",
1885
1837
  "futures-core",
@@ -2008,9 +1960,9 @@ dependencies = [
2008
1960
 
2009
1961
  [[package]]
2010
1962
  name = "http"
2011
- version = "1.4.2"
1963
+ version = "1.5.0"
2012
1964
  source = "registry+https://github.com/rust-lang/crates.io-index"
2013
- checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1965
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
2014
1966
  dependencies = [
2015
1967
  "bytes",
2016
1968
  "itoa",
@@ -2018,9 +1970,9 @@ dependencies = [
2018
1970
 
2019
1971
  [[package]]
2020
1972
  name = "http-body"
2021
- version = "1.0.1"
1973
+ version = "1.1.0"
2022
1974
  source = "registry+https://github.com/rust-lang/crates.io-index"
2023
- checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1975
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
2024
1976
  dependencies = [
2025
1977
  "bytes",
2026
1978
  "http",
@@ -2028,9 +1980,9 @@ dependencies = [
2028
1980
 
2029
1981
  [[package]]
2030
1982
  name = "http-body-util"
2031
- version = "0.1.3"
1983
+ version = "0.1.5"
2032
1984
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
- checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1985
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
2034
1986
  dependencies = [
2035
1987
  "bytes",
2036
1988
  "futures-core",
@@ -2047,9 +1999,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2047
1999
 
2048
2000
  [[package]]
2049
2001
  name = "hybrid-array"
2050
- version = "0.4.13"
2002
+ version = "0.4.14"
2051
2003
  source = "registry+https://github.com/rust-lang/crates.io-index"
2052
- checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
2004
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
2053
2005
  dependencies = [
2054
2006
  "ctutils",
2055
2007
  "subtle",
@@ -2059,9 +2011,9 @@ dependencies = [
2059
2011
 
2060
2012
  [[package]]
2061
2013
  name = "hyper"
2062
- version = "1.10.1"
2014
+ version = "1.11.0"
2063
2015
  source = "registry+https://github.com/rust-lang/crates.io-index"
2064
- checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
2016
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
2065
2017
  dependencies = [
2066
2018
  "atomic-waker",
2067
2019
  "bytes",
@@ -2141,14 +2093,14 @@ dependencies = [
2141
2093
 
2142
2094
  [[package]]
2143
2095
  name = "icu_collator"
2144
- version = "2.2.1"
2096
+ version = "2.3.0"
2145
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
2146
- checksum = "8bbdf98e5e0aa827770acee171ebb568aaab975a36b56afdb5fd0e2f525750bb"
2098
+ checksum = "59eea194d189ca897bcb960fd2130f9e7d53998460d4d32e85a60b10d5507cf4"
2147
2099
  dependencies = [
2148
2100
  "icu_collator_data",
2149
2101
  "icu_collections",
2150
- "icu_locale",
2151
2102
  "icu_locale_core",
2103
+ "icu_locale_fallback",
2152
2104
  "icu_normalizer",
2153
2105
  "icu_properties",
2154
2106
  "icu_provider",
@@ -2160,15 +2112,15 @@ dependencies = [
2160
2112
 
2161
2113
  [[package]]
2162
2114
  name = "icu_collator_data"
2163
- version = "2.2.0"
2115
+ version = "2.3.0"
2164
2116
  source = "registry+https://github.com/rust-lang/crates.io-index"
2165
- checksum = "038ed8e5817f2059c2f3efb0945ba78d060d3d25e8f1a1bea5139f821a21a2f0"
2117
+ checksum = "f7d7e54efdddeb1208c08dd5d32b53a879ac00d2d3d051b2255fd26821d16368"
2166
2118
 
2167
2119
  [[package]]
2168
2120
  name = "icu_collections"
2169
- version = "2.2.0"
2121
+ version = "2.3.0"
2170
2122
  source = "registry+https://github.com/rust-lang/crates.io-index"
2171
- checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2123
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
2172
2124
  dependencies = [
2173
2125
  "displaydoc",
2174
2126
  "potential_utf",
@@ -2180,24 +2132,24 @@ dependencies = [
2180
2132
 
2181
2133
  [[package]]
2182
2134
  name = "icu_locale"
2183
- version = "2.2.0"
2135
+ version = "2.3.0"
2184
2136
  source = "registry+https://github.com/rust-lang/crates.io-index"
2185
- checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
2137
+ checksum = "250ec6d4ac288584d1d0ba29dbfad7737635b7b0e822441f4026a523e3fdb147"
2186
2138
  dependencies = [
2187
2139
  "icu_collections",
2188
2140
  "icu_locale_core",
2189
2141
  "icu_locale_data",
2142
+ "icu_locale_fallback",
2190
2143
  "icu_provider",
2191
- "potential_utf",
2192
2144
  "tinystr",
2193
2145
  "zerovec",
2194
2146
  ]
2195
2147
 
2196
2148
  [[package]]
2197
2149
  name = "icu_locale_core"
2198
- version = "2.2.0"
2150
+ version = "2.3.0"
2199
2151
  source = "registry+https://github.com/rust-lang/crates.io-index"
2200
- checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2152
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
2201
2153
  dependencies = [
2202
2154
  "displaydoc",
2203
2155
  "litemap",
@@ -2209,15 +2161,35 @@ dependencies = [
2209
2161
 
2210
2162
  [[package]]
2211
2163
  name = "icu_locale_data"
2212
- 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"
2213
2185
  source = "registry+https://github.com/rust-lang/crates.io-index"
2214
- checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
2186
+ checksum = "decf2a22ec8fa68f1a0c1129a3f8583f8f8bc24e8b9ccbe98ead99f62a4dc3a8"
2215
2187
 
2216
2188
  [[package]]
2217
2189
  name = "icu_normalizer"
2218
- version = "2.2.0"
2190
+ version = "2.3.0"
2219
2191
  source = "registry+https://github.com/rust-lang/crates.io-index"
2220
- checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2192
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
2221
2193
  dependencies = [
2222
2194
  "icu_collections",
2223
2195
  "icu_normalizer_data",
@@ -2232,16 +2204,17 @@ dependencies = [
2232
2204
 
2233
2205
  [[package]]
2234
2206
  name = "icu_normalizer_data"
2235
- version = "2.2.0"
2207
+ version = "2.3.0"
2236
2208
  source = "registry+https://github.com/rust-lang/crates.io-index"
2237
- checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2209
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
2238
2210
 
2239
2211
  [[package]]
2240
2212
  name = "icu_properties"
2241
- version = "2.2.0"
2213
+ version = "2.3.0"
2242
2214
  source = "registry+https://github.com/rust-lang/crates.io-index"
2243
- checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2215
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
2244
2216
  dependencies = [
2217
+ "displaydoc",
2245
2218
  "icu_collections",
2246
2219
  "icu_locale_core",
2247
2220
  "icu_properties_data",
@@ -2252,15 +2225,15 @@ dependencies = [
2252
2225
 
2253
2226
  [[package]]
2254
2227
  name = "icu_properties_data"
2255
- version = "2.2.0"
2228
+ version = "2.3.0"
2256
2229
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2230
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
2258
2231
 
2259
2232
  [[package]]
2260
2233
  name = "icu_provider"
2261
- version = "2.2.0"
2234
+ version = "2.3.0"
2262
2235
  source = "registry+https://github.com/rust-lang/crates.io-index"
2263
- checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2236
+ checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
2264
2237
  dependencies = [
2265
2238
  "displaydoc",
2266
2239
  "icu_locale_core",
@@ -2286,13 +2259,9 @@ dependencies = [
2286
2259
 
2287
2260
  [[package]]
2288
2261
  name = "idna_adapter"
2289
- version = "1.2.2"
2262
+ version = "1.0.0"
2290
2263
  source = "registry+https://github.com/rust-lang/crates.io-index"
2291
- checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2292
- dependencies = [
2293
- "icu_normalizer",
2294
- "icu_properties",
2295
- ]
2264
+ checksum = "cfdf4f5d937a025381f5ab13624b1c5f51414bfe5c9885663226eae8d6d39560"
2296
2265
 
2297
2266
  [[package]]
2298
2267
  name = "indexmap"
@@ -2375,9 +2344,9 @@ dependencies = [
2375
2344
 
2376
2345
  [[package]]
2377
2346
  name = "ipnet"
2378
- version = "2.12.0"
2347
+ version = "2.12.1"
2379
2348
  source = "registry+https://github.com/rust-lang/crates.io-index"
2380
- checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2349
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
2381
2350
 
2382
2351
  [[package]]
2383
2352
  name = "is-macro"
@@ -2391,12 +2360,6 @@ dependencies = [
2391
2360
  "syn 2.0.119",
2392
2361
  ]
2393
2362
 
2394
- [[package]]
2395
- name = "is_terminal_polyfill"
2396
- version = "1.70.2"
2397
- source = "registry+https://github.com/rust-lang/crates.io-index"
2398
- checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2399
-
2400
2363
  [[package]]
2401
2364
  name = "itertools"
2402
2365
  version = "0.13.0"
@@ -2443,9 +2406,9 @@ dependencies = [
2443
2406
 
2444
2407
  [[package]]
2445
2408
  name = "jaq-json"
2446
- version = "2.0.1"
2409
+ version = "2.0.2"
2447
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2448
- checksum = "d4ec9aaad7340e6990c6c1878ef3b46dbec624e535d7f786cc9ddcf94f773d33"
2411
+ checksum = "48d801b0b57f10064c4e9f5a4f6c97d0ccf62649b179ff8ac23cd494a3120ee9"
2449
2412
  dependencies = [
2450
2413
  "bstr",
2451
2414
  "bytes",
@@ -2462,9 +2425,9 @@ dependencies = [
2462
2425
 
2463
2426
  [[package]]
2464
2427
  name = "jaq-std"
2465
- version = "3.0.1"
2428
+ version = "3.0.2"
2466
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
2467
- checksum = "8bdc5a74b0feeb5e6a1dc2dd08c34280a61e37668d10a6a3b27ad69d0fb9ce2e"
2430
+ checksum = "7941c8de9c591052050550f228c62ef80d3ecbd84c330f5c454bc8ebb7a04089"
2468
2431
  dependencies = [
2469
2432
  "aho-corasick",
2470
2433
  "base64 0.22.1",
@@ -2479,11 +2442,12 @@ dependencies = [
2479
2442
 
2480
2443
  [[package]]
2481
2444
  name = "jiff"
2482
- version = "0.2.32"
2445
+ version = "0.2.35"
2483
2446
  source = "registry+https://github.com/rust-lang/crates.io-index"
2484
- checksum = "961d16382652bfdd8c6f68b223b26a8c93e0d475c672f414411db31c6c5c900e"
2447
+ checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
2485
2448
  dependencies = [
2486
2449
  "defmt",
2450
+ "jiff-core",
2487
2451
  "jiff-static",
2488
2452
  "jiff-tzdb-platform",
2489
2453
  "log",
@@ -2493,12 +2457,22 @@ dependencies = [
2493
2457
  "windows-link",
2494
2458
  ]
2495
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
+
2496
2469
  [[package]]
2497
2470
  name = "jiff-static"
2498
- version = "0.2.32"
2471
+ version = "0.2.35"
2499
2472
  source = "registry+https://github.com/rust-lang/crates.io-index"
2500
- checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
2473
+ checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
2501
2474
  dependencies = [
2475
+ "jiff-core",
2502
2476
  "proc-macro2",
2503
2477
  "quote",
2504
2478
  "syn 2.0.119",
@@ -2594,9 +2568,9 @@ dependencies = [
2594
2568
 
2595
2569
  [[package]]
2596
2570
  name = "js-sys"
2597
- version = "0.3.103"
2571
+ version = "0.3.104"
2598
2572
  source = "registry+https://github.com/rust-lang/crates.io-index"
2599
- checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
2573
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
2600
2574
  dependencies = [
2601
2575
  "cfg-if",
2602
2576
  "futures-util",
@@ -2605,9 +2579,9 @@ dependencies = [
2605
2579
 
2606
2580
  [[package]]
2607
2581
  name = "keccak"
2608
- version = "0.2.0"
2582
+ version = "0.2.1"
2609
2583
  source = "registry+https://github.com/rust-lang/crates.io-index"
2610
- checksum = "9e24a010dd405bd7ed803e5253182815b41bf2e6a80cc3bfc066658e03a198aa"
2584
+ checksum = "ffd9697dc4a9a62e2da93389f34400b77a28f0287711263cabb203b3ccb9c0e4"
2611
2585
  dependencies = [
2612
2586
  "cfg-if",
2613
2587
  "cpufeatures 0.3.0",
@@ -2662,9 +2636,9 @@ checksum = "34b357333733e8260735ba5894eb928c02ecc69c78715f01a8019e7fa7f2db4c"
2662
2636
 
2663
2637
  [[package]]
2664
2638
  name = "libc"
2665
- version = "0.2.186"
2639
+ version = "0.2.189"
2666
2640
  source = "registry+https://github.com/rust-lang/crates.io-index"
2667
- checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2641
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
2668
2642
 
2669
2643
  [[package]]
2670
2644
  name = "libloading"
@@ -2694,22 +2668,22 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2694
2668
 
2695
2669
  [[package]]
2696
2670
  name = "linkme"
2697
- version = "0.3.36"
2671
+ version = "0.3.37"
2698
2672
  source = "registry+https://github.com/rust-lang/crates.io-index"
2699
- checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
2673
+ checksum = "3045e122bd98aef8ec3ad58ce84f0791f64e70163d1a02710af4aa11a4d54cc5"
2700
2674
  dependencies = [
2701
2675
  "linkme-impl",
2702
2676
  ]
2703
2677
 
2704
2678
  [[package]]
2705
2679
  name = "linkme-impl"
2706
- version = "0.3.36"
2680
+ version = "0.3.37"
2707
2681
  source = "registry+https://github.com/rust-lang/crates.io-index"
2708
- checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
2682
+ checksum = "77060ebe535362c3da75682cd17b0431017b6e7c5661e714fc69a7ad017d1301"
2709
2683
  dependencies = [
2710
2684
  "proc-macro2",
2711
2685
  "quote",
2712
- "syn 2.0.119",
2686
+ "syn 3.0.3",
2713
2687
  ]
2714
2688
 
2715
2689
  [[package]]
@@ -2720,9 +2694,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2720
2694
 
2721
2695
  [[package]]
2722
2696
  name = "litemap"
2723
- version = "0.8.2"
2697
+ version = "0.8.3"
2724
2698
  source = "registry+https://github.com/rust-lang/crates.io-index"
2725
- checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2699
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
2726
2700
 
2727
2701
  [[package]]
2728
2702
  name = "lock_api"
@@ -2796,9 +2770,9 @@ dependencies = [
2796
2770
 
2797
2771
  [[package]]
2798
2772
  name = "md5"
2799
- version = "0.8.0"
2773
+ version = "0.8.1"
2800
2774
  source = "registry+https://github.com/rust-lang/crates.io-index"
2801
- checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
2775
+ checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c"
2802
2776
 
2803
2777
  [[package]]
2804
2778
  name = "memchr"
@@ -2849,9 +2823,9 @@ dependencies = [
2849
2823
 
2850
2824
  [[package]]
2851
2825
  name = "mio"
2852
- version = "1.2.1"
2826
+ version = "1.2.2"
2853
2827
  source = "registry+https://github.com/rust-lang/crates.io-index"
2854
- checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2828
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
2855
2829
  dependencies = [
2856
2830
  "libc",
2857
2831
  "wasi",
@@ -2972,13 +2946,14 @@ dependencies = [
2972
2946
 
2973
2947
  [[package]]
2974
2948
  name = "napi"
2975
- version = "3.12.0"
2949
+ version = "3.12.1"
2976
2950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2977
- checksum = "6f71d6bc097c4a6eb853c3f24991ab8c9f50f57d1f719e305175541482217e36"
2951
+ checksum = "459197f1592f4c3dbbf9c1b13f5a4599a343e4ef66b96bc340e2a518b36a6662"
2978
2952
  dependencies = [
2979
2953
  "bitflags 2.13.1",
2980
2954
  "ctor",
2981
2955
  "futures",
2956
+ "libc",
2982
2957
  "napi-build",
2983
2958
  "napi-sys",
2984
2959
  "nohash-hasher",
@@ -2988,15 +2963,15 @@ dependencies = [
2988
2963
 
2989
2964
  [[package]]
2990
2965
  name = "napi-build"
2991
- version = "2.4.0"
2966
+ version = "2.4.1"
2992
2967
  source = "registry+https://github.com/rust-lang/crates.io-index"
2993
- checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
2968
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
2994
2969
 
2995
2970
  [[package]]
2996
2971
  name = "napi-derive"
2997
- version = "3.6.2"
2972
+ version = "3.6.3"
2998
2973
  source = "registry+https://github.com/rust-lang/crates.io-index"
2999
- checksum = "6d9002b2940f0184444754546e0fcd15182f56948e6f381968b019d549387c42"
2974
+ checksum = "0fa55ea69990c90b888e9e77044410e304ce7f35de599dc6d0b5c1923d2e59af"
3000
2975
  dependencies = [
3001
2976
  "convert_case",
3002
2977
  "ctor",
@@ -3008,9 +2983,9 @@ dependencies = [
3008
2983
 
3009
2984
  [[package]]
3010
2985
  name = "napi-derive-backend"
3011
- version = "6.1.1"
2986
+ version = "6.1.2"
3012
2987
  source = "registry+https://github.com/rust-lang/crates.io-index"
3013
- checksum = "d60b5d773ad46c698c8cc2cd9fde0b283d39cbb7f71c04bee633c7bdba4423bd"
2988
+ checksum = "df4056ac7c18e4438ccf0edaed4340ca0d269278c8ec19284f7b23cb039fd0ae"
3014
2989
  dependencies = [
3015
2990
  "convert_case",
3016
2991
  "proc-macro2",
@@ -3083,9 +3058,9 @@ dependencies = [
3083
3058
 
3084
3059
  [[package]]
3085
3060
  name = "num-integer"
3086
- version = "0.1.46"
3061
+ version = "0.1.47"
3087
3062
  source = "registry+https://github.com/rust-lang/crates.io-index"
3088
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
3063
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
3089
3064
  dependencies = [
3090
3065
  "num-traits",
3091
3066
  ]
@@ -3105,12 +3080,6 @@ version = "1.21.4"
3105
3080
  source = "registry+https://github.com/rust-lang/crates.io-index"
3106
3081
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
3107
3082
 
3108
- [[package]]
3109
- name = "once_cell_polyfill"
3110
- version = "1.70.2"
3111
- source = "registry+https://github.com/rust-lang/crates.io-index"
3112
- checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
3113
-
3114
3083
  [[package]]
3115
3084
  name = "oorandom"
3116
3085
  version = "11.1.5"
@@ -3421,9 +3390,9 @@ dependencies = [
3421
3390
 
3422
3391
  [[package]]
3423
3392
  name = "pageant"
3424
- version = "0.2.1"
3393
+ version = "0.2.2"
3425
3394
  source = "registry+https://github.com/rust-lang/crates.io-index"
3426
- checksum = "4f3a5ae18f65a85c67a77d18d42d3606c07948e3c17c1e5f74852b26589e88a5"
3395
+ checksum = "3adadc44070da6f464b0918655a12f5792c156e088d8c4082d13e27d94c3e791"
3427
3396
  dependencies = [
3428
3397
  "base16ct",
3429
3398
  "byteorder",
@@ -3569,7 +3538,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
3538
  checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
3570
3539
  dependencies = [
3571
3540
  "phf_shared 0.11.3",
3572
- "rand 0.8.6",
3541
+ "rand 0.8.7",
3573
3542
  ]
3574
3543
 
3575
3544
  [[package]]
@@ -3644,7 +3613,7 @@ version = "0.8.1"
3644
3613
  source = "registry+https://github.com/rust-lang/crates.io-index"
3645
3614
  checksum = "63d440a804ec8d6fafbb6b84471e013286658d373248927692ab3366686220ca"
3646
3615
  dependencies = [
3647
- "aes 0.9.1",
3616
+ "aes 0.9.2",
3648
3617
  "aes-gcm 0.11.0",
3649
3618
  "cbc",
3650
3619
  "der",
@@ -3669,9 +3638,9 @@ dependencies = [
3669
3638
 
3670
3639
  [[package]]
3671
3640
  name = "pkg-config"
3672
- version = "0.3.33"
3641
+ version = "0.3.34"
3673
3642
  source = "registry+https://github.com/rust-lang/crates.io-index"
3674
- checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
3643
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
3675
3644
 
3676
3645
  [[package]]
3677
3646
  name = "plotters"
@@ -3740,9 +3709,9 @@ dependencies = [
3740
3709
 
3741
3710
  [[package]]
3742
3711
  name = "polyval"
3743
- version = "0.7.1"
3712
+ version = "0.7.3"
3744
3713
  source = "registry+https://github.com/rust-lang/crates.io-index"
3745
- checksum = "7dfc63250416fea14f5749b90725916a6c903f599d51cb635aa7a52bfd03eede"
3714
+ checksum = "f0fa31d631f2b2cb2a544d0aa321ce847a94764d701ca2becc411138b93d49cd"
3746
3715
  dependencies = [
3747
3716
  "cpubits",
3748
3717
  "cpufeatures 0.3.0",
@@ -3751,9 +3720,9 @@ dependencies = [
3751
3720
 
3752
3721
  [[package]]
3753
3722
  name = "portable-atomic"
3754
- version = "1.13.1"
3723
+ version = "1.15.0"
3755
3724
  source = "registry+https://github.com/rust-lang/crates.io-index"
3756
- checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
3725
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
3757
3726
 
3758
3727
  [[package]]
3759
3728
  name = "portable-atomic-util"
@@ -3779,9 +3748,9 @@ dependencies = [
3779
3748
 
3780
3749
  [[package]]
3781
3750
  name = "potential_utf"
3782
- version = "0.1.5"
3751
+ version = "0.1.6"
3783
3752
  source = "registry+https://github.com/rust-lang/crates.io-index"
3784
- checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
3753
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
3785
3754
  dependencies = [
3786
3755
  "serde_core",
3787
3756
  "writeable",
@@ -3896,7 +3865,7 @@ dependencies = [
3896
3865
  "bit-vec",
3897
3866
  "bitflags 2.13.1",
3898
3867
  "num-traits",
3899
- "rand 0.9.4",
3868
+ "rand 0.9.5",
3900
3869
  "rand_chacha 0.9.0",
3901
3870
  "rand_xorshift",
3902
3871
  "regex-syntax",
@@ -3907,9 +3876,9 @@ dependencies = [
3907
3876
 
3908
3877
  [[package]]
3909
3878
  name = "pyo3"
3910
- version = "0.29.0"
3879
+ version = "0.29.2"
3911
3880
  source = "registry+https://github.com/rust-lang/crates.io-index"
3912
- checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
3881
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
3913
3882
  dependencies = [
3914
3883
  "libc",
3915
3884
  "num-bigint",
@@ -3937,18 +3906,18 @@ dependencies = [
3937
3906
 
3938
3907
  [[package]]
3939
3908
  name = "pyo3-build-config"
3940
- version = "0.29.0"
3909
+ version = "0.29.2"
3941
3910
  source = "registry+https://github.com/rust-lang/crates.io-index"
3942
- checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
3911
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
3943
3912
  dependencies = [
3944
3913
  "target-lexicon",
3945
3914
  ]
3946
3915
 
3947
3916
  [[package]]
3948
3917
  name = "pyo3-ffi"
3949
- version = "0.29.0"
3918
+ version = "0.29.2"
3950
3919
  source = "registry+https://github.com/rust-lang/crates.io-index"
3951
- checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
3920
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
3952
3921
  dependencies = [
3953
3922
  "libc",
3954
3923
  "pyo3-build-config",
@@ -3956,9 +3925,9 @@ dependencies = [
3956
3925
 
3957
3926
  [[package]]
3958
3927
  name = "pyo3-macros"
3959
- version = "0.29.0"
3928
+ version = "0.29.2"
3960
3929
  source = "registry+https://github.com/rust-lang/crates.io-index"
3961
- checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
3930
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
3962
3931
  dependencies = [
3963
3932
  "proc-macro2",
3964
3933
  "pyo3-macros-backend",
@@ -3968,9 +3937,9 @@ dependencies = [
3968
3937
 
3969
3938
  [[package]]
3970
3939
  name = "pyo3-macros-backend"
3971
- version = "0.29.0"
3940
+ version = "0.29.2"
3972
3941
  source = "registry+https://github.com/rust-lang/crates.io-index"
3973
- checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
3942
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
3974
3943
  dependencies = [
3975
3944
  "heck",
3976
3945
  "proc-macro2",
@@ -4045,9 +4014,9 @@ dependencies = [
4045
4014
 
4046
4015
  [[package]]
4047
4016
  name = "rand"
4048
- version = "0.8.6"
4017
+ version = "0.8.7"
4049
4018
  source = "registry+https://github.com/rust-lang/crates.io-index"
4050
- checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
4019
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
4051
4020
  dependencies = [
4052
4021
  "libc",
4053
4022
  "rand_chacha 0.3.1",
@@ -4056,9 +4025,9 @@ dependencies = [
4056
4025
 
4057
4026
  [[package]]
4058
4027
  name = "rand"
4059
- version = "0.9.4"
4028
+ version = "0.9.5"
4060
4029
  source = "registry+https://github.com/rust-lang/crates.io-index"
4061
- checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
4030
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
4062
4031
  dependencies = [
4063
4032
  "rand_chacha 0.9.0",
4064
4033
  "rand_core 0.9.5",
@@ -4177,9 +4146,9 @@ dependencies = [
4177
4146
 
4178
4147
  [[package]]
4179
4148
  name = "regex"
4180
- version = "1.13.0"
4149
+ version = "1.13.1"
4181
4150
  source = "registry+https://github.com/rust-lang/crates.io-index"
4182
- checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
4151
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
4183
4152
  dependencies = [
4184
4153
  "aho-corasick",
4185
4154
  "memchr",
@@ -4189,9 +4158,9 @@ dependencies = [
4189
4158
 
4190
4159
  [[package]]
4191
4160
  name = "regex-automata"
4192
- version = "0.4.16"
4161
+ version = "0.4.18"
4193
4162
  source = "registry+https://github.com/rust-lang/crates.io-index"
4194
- checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
4163
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
4195
4164
  dependencies = [
4196
4165
  "aho-corasick",
4197
4166
  "memchr",
@@ -4275,9 +4244,9 @@ dependencies = [
4275
4244
 
4276
4245
  [[package]]
4277
4246
  name = "roaring"
4278
- version = "0.11.4"
4247
+ version = "0.11.5"
4279
4248
  source = "registry+https://github.com/rust-lang/crates.io-index"
4280
- checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9"
4249
+ checksum = "18bd8a37d17a58532776dcdf6041ce64929adca78e8489d5cacbafe99229d3e1"
4281
4250
  dependencies = [
4282
4251
  "bytemuck",
4283
4252
  "byteorder",
@@ -4388,11 +4357,11 @@ dependencies = [
4388
4357
 
4389
4358
  [[package]]
4390
4359
  name = "russh"
4391
- version = "0.62.5"
4360
+ version = "0.62.7"
4392
4361
  source = "registry+https://github.com/rust-lang/crates.io-index"
4393
- checksum = "da7c230e0ed9cbeb92fbad6c8848985d6df2a1464c0dc247a021abd666e9005e"
4362
+ checksum = "9decb68e4e44e1079700e54f17c8f23806ec53d7e0db73ab1c71d9dabc666812"
4394
4363
  dependencies = [
4395
- "aes 0.9.1",
4364
+ "aes 0.9.2",
4396
4365
  "aws-lc-rs",
4397
4366
  "bitflags 2.13.1",
4398
4367
  "block-padding",
@@ -4413,7 +4382,7 @@ dependencies = [
4413
4382
  "enum_dispatch",
4414
4383
  "flate2",
4415
4384
  "futures",
4416
- "generic-array 1.4.3",
4385
+ "generic-array 1.4.5",
4417
4386
  "getrandom 0.4.3",
4418
4387
  "ghash 0.6.0",
4419
4388
  "hex-literal",
@@ -4434,7 +4403,7 @@ dependencies = [
4434
4403
  "pkcs1",
4435
4404
  "pkcs5",
4436
4405
  "pkcs8",
4437
- "polyval 0.7.1",
4406
+ "polyval 0.7.3",
4438
4407
  "rand 0.10.2",
4439
4408
  "rand_core 0.10.1",
4440
4409
  "rsa",
@@ -4526,6 +4495,7 @@ version = "0.23.43"
4526
4495
  source = "registry+https://github.com/rust-lang/crates.io-index"
4527
4496
  checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
4528
4497
  dependencies = [
4498
+ "aws-lc-rs",
4529
4499
  "log",
4530
4500
  "once_cell",
4531
4501
  "ring",
@@ -4549,9 +4519,9 @@ dependencies = [
4549
4519
 
4550
4520
  [[package]]
4551
4521
  name = "rustls-pki-types"
4552
- version = "1.15.0"
4522
+ version = "1.15.1"
4553
4523
  source = "registry+https://github.com/rust-lang/crates.io-index"
4554
- checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
4524
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
4555
4525
  dependencies = [
4556
4526
  "zeroize",
4557
4527
  ]
@@ -4585,10 +4555,11 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
4585
4555
 
4586
4556
  [[package]]
4587
4557
  name = "rustls-webpki"
4588
- version = "0.103.13"
4558
+ version = "0.103.14"
4589
4559
  source = "registry+https://github.com/rust-lang/crates.io-index"
4590
- checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
4560
+ checksum = "0527518605e68109d875e248ea259b6758801cf165e4b2c2733ae3b51f12535a"
4591
4561
  dependencies = [
4562
+ "aws-lc-rs",
4592
4563
  "ring",
4593
4564
  "rustls-pki-types",
4594
4565
  "untrusted 0.9.0",
@@ -4730,9 +4701,9 @@ dependencies = [
4730
4701
 
4731
4702
  [[package]]
4732
4703
  name = "self_cell"
4733
- version = "1.2.2"
4704
+ version = "1.3.0"
4734
4705
  source = "registry+https://github.com/rust-lang/crates.io-index"
4735
- checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
4706
+ checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
4736
4707
 
4737
4708
  [[package]]
4738
4709
  name = "semver"
@@ -4942,7 +4913,7 @@ dependencies = [
4942
4913
  "generator",
4943
4914
  "hex",
4944
4915
  "owo-colors 3.5.0",
4945
- "rand 0.8.6",
4916
+ "rand 0.8.7",
4946
4917
  "rand_core 0.6.4",
4947
4918
  "rand_pcg",
4948
4919
  "scoped-tls",
@@ -4982,15 +4953,15 @@ dependencies = [
4982
4953
 
4983
4954
  [[package]]
4984
4955
  name = "simd-adler32"
4985
- version = "0.3.9"
4956
+ version = "0.3.10"
4986
4957
  source = "registry+https://github.com/rust-lang/crates.io-index"
4987
- checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
4958
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
4988
4959
 
4989
4960
  [[package]]
4990
4961
  name = "simd_cesu8"
4991
- version = "1.1.1"
4962
+ version = "1.2.0"
4992
4963
  source = "registry+https://github.com/rust-lang/crates.io-index"
4993
- checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
4964
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
4994
4965
  dependencies = [
4995
4966
  "rustc_version",
4996
4967
  "simdutf8",
@@ -5046,9 +5017,9 @@ checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
5046
5017
 
5047
5018
  [[package]]
5048
5019
  name = "socket2"
5049
- version = "0.6.4"
5020
+ version = "0.6.5"
5050
5021
  source = "registry+https://github.com/rust-lang/crates.io-index"
5051
- checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
5022
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
5052
5023
  dependencies = [
5053
5024
  "libc",
5054
5025
  "windows-sys 0.61.2",
@@ -5073,9 +5044,9 @@ dependencies = [
5073
5044
 
5074
5045
  [[package]]
5075
5046
  name = "spin"
5076
- version = "0.9.8"
5047
+ version = "0.9.9"
5077
5048
  source = "registry+https://github.com/rust-lang/crates.io-index"
5078
- checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
5049
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
5079
5050
  dependencies = [
5080
5051
  "lock_api",
5081
5052
  ]
@@ -5103,7 +5074,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5103
5074
  checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
5104
5075
  dependencies = [
5105
5076
  "aead 0.6.1",
5106
- "aes 0.9.1",
5077
+ "aes 0.9.2",
5107
5078
  "aes-gcm 0.11.0",
5108
5079
  "chacha20",
5109
5080
  "cipher 0.5.2",
@@ -5167,12 +5138,6 @@ version = "1.1.0"
5167
5138
  source = "registry+https://github.com/rust-lang/crates.io-index"
5168
5139
  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
5169
5140
 
5170
- [[package]]
5171
- name = "strsim"
5172
- version = "0.11.1"
5173
- source = "registry+https://github.com/rust-lang/crates.io-index"
5174
- checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
5175
-
5176
5141
  [[package]]
5177
5142
  name = "strum"
5178
5143
  version = "0.26.3"
@@ -5345,24 +5310,24 @@ dependencies = [
5345
5310
 
5346
5311
  [[package]]
5347
5312
  name = "thin-vec"
5348
- version = "0.2.18"
5313
+ version = "0.2.19"
5349
5314
  source = "registry+https://github.com/rust-lang/crates.io-index"
5350
- checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
5315
+ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
5351
5316
 
5352
5317
  [[package]]
5353
5318
  name = "thiserror"
5354
- version = "2.0.19"
5319
+ version = "2.0.20"
5355
5320
  source = "registry+https://github.com/rust-lang/crates.io-index"
5356
- checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
5321
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
5357
5322
  dependencies = [
5358
5323
  "thiserror-impl",
5359
5324
  ]
5360
5325
 
5361
5326
  [[package]]
5362
5327
  name = "thiserror-impl"
5363
- version = "2.0.19"
5328
+ version = "2.0.20"
5364
5329
  source = "registry+https://github.com/rust-lang/crates.io-index"
5365
- checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
5330
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
5366
5331
  dependencies = [
5367
5332
  "proc-macro2",
5368
5333
  "quote",
@@ -5371,18 +5336,18 @@ dependencies = [
5371
5336
 
5372
5337
  [[package]]
5373
5338
  name = "thread_local"
5374
- version = "1.1.9"
5339
+ version = "1.1.10"
5375
5340
  source = "registry+https://github.com/rust-lang/crates.io-index"
5376
- checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
5341
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
5377
5342
  dependencies = [
5378
5343
  "cfg-if",
5379
5344
  ]
5380
5345
 
5381
5346
  [[package]]
5382
5347
  name = "tinystr"
5383
- version = "0.8.3"
5348
+ version = "0.8.4"
5384
5349
  source = "registry+https://github.com/rust-lang/crates.io-index"
5385
- checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
5350
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
5386
5351
  dependencies = [
5387
5352
  "displaydoc",
5388
5353
  "serde_core",
@@ -5401,9 +5366,9 @@ dependencies = [
5401
5366
 
5402
5367
  [[package]]
5403
5368
  name = "tinyvec"
5404
- version = "1.11.0"
5369
+ version = "1.12.0"
5405
5370
  source = "registry+https://github.com/rust-lang/crates.io-index"
5406
- checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
5371
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
5407
5372
  dependencies = [
5408
5373
  "tinyvec_macros",
5409
5374
  ]
@@ -5432,13 +5397,13 @@ dependencies = [
5432
5397
 
5433
5398
  [[package]]
5434
5399
  name = "tokio-macros"
5435
- version = "2.7.0"
5400
+ version = "2.7.2"
5436
5401
  source = "registry+https://github.com/rust-lang/crates.io-index"
5437
- checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
5402
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
5438
5403
  dependencies = [
5439
5404
  "proc-macro2",
5440
5405
  "quote",
5441
- "syn 2.0.119",
5406
+ "syn 3.0.3",
5442
5407
  ]
5443
5408
 
5444
5409
  [[package]]
@@ -5453,9 +5418,9 @@ dependencies = [
5453
5418
 
5454
5419
  [[package]]
5455
5420
  name = "tokio-stream"
5456
- version = "0.1.18"
5421
+ version = "0.1.19"
5457
5422
  source = "registry+https://github.com/rust-lang/crates.io-index"
5458
- checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
5423
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
5459
5424
  dependencies = [
5460
5425
  "futures-core",
5461
5426
  "pin-project-lite",
@@ -5475,9 +5440,9 @@ dependencies = [
5475
5440
 
5476
5441
  [[package]]
5477
5442
  name = "tokio-util"
5478
- version = "0.7.18"
5443
+ version = "0.7.19"
5479
5444
  source = "registry+https://github.com/rust-lang/crates.io-index"
5480
- checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
5445
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
5481
5446
  dependencies = [
5482
5447
  "bytes",
5483
5448
  "futures-core",
@@ -5639,9 +5604,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
5639
5604
 
5640
5605
  [[package]]
5641
5606
  name = "turso_core"
5642
- version = "0.8.0-pre.2"
5607
+ version = "0.8.0-pre.4"
5643
5608
  source = "registry+https://github.com/rust-lang/crates.io-index"
5644
- checksum = "126a369027e3f8d5736f871267e9a79fe18e081cf4023b520d3a45097bc9e841"
5609
+ checksum = "91d21d176e7cc7dc607778f33b186ad981003969451ca0e3dca7494ea5ebb08a"
5645
5610
  dependencies = [
5646
5611
  "aegis",
5647
5612
  "aes 0.8.4",
@@ -5664,6 +5629,8 @@ dependencies = [
5664
5629
  "either",
5665
5630
  "fallible-iterator",
5666
5631
  "fastbloom",
5632
+ "getrandom 0.2.17",
5633
+ "getrandom 0.3.4",
5667
5634
  "hex",
5668
5635
  "icu_collator",
5669
5636
  "icu_locale",
@@ -5679,7 +5646,7 @@ dependencies = [
5679
5646
  "parking_lot",
5680
5647
  "pastey",
5681
5648
  "polling",
5682
- "rand 0.9.4",
5649
+ "rand 0.9.5",
5683
5650
  "rapidhash",
5684
5651
  "regex",
5685
5652
  "regex-syntax",
@@ -5689,6 +5656,7 @@ dependencies = [
5689
5656
  "ryu",
5690
5657
  "serde_json",
5691
5658
  "shuttle",
5659
+ "simdutf8",
5692
5660
  "simsimd",
5693
5661
  "smallvec",
5694
5662
  "strum 0.26.3",
@@ -5708,9 +5676,9 @@ dependencies = [
5708
5676
 
5709
5677
  [[package]]
5710
5678
  name = "turso_ext"
5711
- version = "0.8.0-pre.2"
5679
+ version = "0.8.0-pre.4"
5712
5680
  source = "registry+https://github.com/rust-lang/crates.io-index"
5713
- checksum = "2cca983d5255440f8074a017c1bebe4bb387f079a43fedc179f3de1e6f3e3def"
5681
+ checksum = "d9c1d40548fd1ddfa1e9486b864de3e625658a9c9013031a0d7f69ffbcab2773"
5714
5682
  dependencies = [
5715
5683
  "chrono",
5716
5684
  "getrandom 0.4.3",
@@ -5719,9 +5687,9 @@ dependencies = [
5719
5687
 
5720
5688
  [[package]]
5721
5689
  name = "turso_macros"
5722
- version = "0.8.0-pre.2"
5690
+ version = "0.8.0-pre.4"
5723
5691
  source = "registry+https://github.com/rust-lang/crates.io-index"
5724
- checksum = "0cd0d06b919b0c6a517451c05a855368fecf101eeb87b4eaf299a3daa97ad2e2"
5692
+ checksum = "20622919c832ac37fb4f784e450f5dfe10598ffbd42c735aa9b2e756c4044137"
5725
5693
  dependencies = [
5726
5694
  "proc-macro2",
5727
5695
  "quote",
@@ -5730,9 +5698,9 @@ dependencies = [
5730
5698
 
5731
5699
  [[package]]
5732
5700
  name = "turso_parser"
5733
- version = "0.8.0-pre.2"
5701
+ version = "0.8.0-pre.4"
5734
5702
  source = "registry+https://github.com/rust-lang/crates.io-index"
5735
- checksum = "d6c143277cc1387ba02aed82856a20c43108f8aaa4caf55201f73b229db08fcf"
5703
+ checksum = "5aad14b801fcb7ec1970f51c135e9ddcbbd79d7bce99b16eeb6a2213e536d478"
5736
5704
  dependencies = [
5737
5705
  "bitflags 2.13.1",
5738
5706
  "memchr",
@@ -5745,11 +5713,11 @@ dependencies = [
5745
5713
 
5746
5714
  [[package]]
5747
5715
  name = "twox-hash"
5748
- version = "2.1.2"
5716
+ version = "2.1.3"
5749
5717
  source = "registry+https://github.com/rust-lang/crates.io-index"
5750
- checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
5718
+ checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
5751
5719
  dependencies = [
5752
- "rand 0.9.4",
5720
+ "rand 0.10.2",
5753
5721
  ]
5754
5722
 
5755
5723
  [[package]]
@@ -5849,7 +5817,7 @@ dependencies = [
5849
5817
  "getopts",
5850
5818
  "log",
5851
5819
  "phf_codegen",
5852
- "rand 0.8.6",
5820
+ "rand 0.8.7",
5853
5821
  ]
5854
5822
 
5855
5823
  [[package]]
@@ -5934,9 +5902,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5934
5902
 
5935
5903
  [[package]]
5936
5904
  name = "uuid"
5937
- version = "1.23.4"
5905
+ version = "1.24.1"
5938
5906
  source = "registry+https://github.com/rust-lang/crates.io-index"
5939
- checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
5907
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
5940
5908
  dependencies = [
5941
5909
  "getrandom 0.4.3",
5942
5910
  "js-sys",
@@ -6001,9 +5969,9 @@ dependencies = [
6001
5969
 
6002
5970
  [[package]]
6003
5971
  name = "wasm-bindgen"
6004
- version = "0.2.126"
5972
+ version = "0.2.127"
6005
5973
  source = "registry+https://github.com/rust-lang/crates.io-index"
6006
- checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
5974
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
6007
5975
  dependencies = [
6008
5976
  "cfg-if",
6009
5977
  "once_cell",
@@ -6014,9 +5982,9 @@ dependencies = [
6014
5982
 
6015
5983
  [[package]]
6016
5984
  name = "wasm-bindgen-futures"
6017
- version = "0.4.76"
5985
+ version = "0.4.77"
6018
5986
  source = "registry+https://github.com/rust-lang/crates.io-index"
6019
- checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
5987
+ checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
6020
5988
  dependencies = [
6021
5989
  "js-sys",
6022
5990
  "wasm-bindgen",
@@ -6024,9 +5992,9 @@ dependencies = [
6024
5992
 
6025
5993
  [[package]]
6026
5994
  name = "wasm-bindgen-macro"
6027
- version = "0.2.126"
5995
+ version = "0.2.127"
6028
5996
  source = "registry+https://github.com/rust-lang/crates.io-index"
6029
- checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
5997
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
6030
5998
  dependencies = [
6031
5999
  "quote",
6032
6000
  "wasm-bindgen-macro-support",
@@ -6034,9 +6002,9 @@ dependencies = [
6034
6002
 
6035
6003
  [[package]]
6036
6004
  name = "wasm-bindgen-macro-support"
6037
- version = "0.2.126"
6005
+ version = "0.2.127"
6038
6006
  source = "registry+https://github.com/rust-lang/crates.io-index"
6039
- checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
6007
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
6040
6008
  dependencies = [
6041
6009
  "bumpalo",
6042
6010
  "proc-macro2",
@@ -6047,9 +6015,9 @@ dependencies = [
6047
6015
 
6048
6016
  [[package]]
6049
6017
  name = "wasm-bindgen-shared"
6050
- version = "0.2.126"
6018
+ version = "0.2.127"
6051
6019
  source = "registry+https://github.com/rust-lang/crates.io-index"
6052
- checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
6020
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
6053
6021
  dependencies = [
6054
6022
  "unicode-ident",
6055
6023
  ]
@@ -6069,9 +6037,9 @@ dependencies = [
6069
6037
 
6070
6038
  [[package]]
6071
6039
  name = "web-sys"
6072
- version = "0.3.103"
6040
+ version = "0.3.104"
6073
6041
  source = "registry+https://github.com/rust-lang/crates.io-index"
6074
- checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
6042
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
6075
6043
  dependencies = [
6076
6044
  "js-sys",
6077
6045
  "wasm-bindgen",
@@ -6089,9 +6057,9 @@ dependencies = [
6089
6057
 
6090
6058
  [[package]]
6091
6059
  name = "webpki-root-certs"
6092
- version = "1.0.8"
6060
+ version = "1.0.9"
6093
6061
  source = "registry+https://github.com/rust-lang/crates.io-index"
6094
- checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
6062
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
6095
6063
  dependencies = [
6096
6064
  "rustls-pki-types",
6097
6065
  ]
@@ -6321,9 +6289,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
6321
6289
 
6322
6290
  [[package]]
6323
6291
  name = "winnow"
6324
- version = "1.0.3"
6292
+ version = "1.0.4"
6325
6293
  source = "registry+https://github.com/rust-lang/crates.io-index"
6326
- checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
6294
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
6327
6295
 
6328
6296
  [[package]]
6329
6297
  name = "wit-bindgen"
@@ -6350,9 +6318,9 @@ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
6350
6318
 
6351
6319
  [[package]]
6352
6320
  name = "writeable"
6353
- version = "0.6.3"
6321
+ version = "0.6.4"
6354
6322
  source = "registry+https://github.com/rust-lang/crates.io-index"
6355
- checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
6323
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
6356
6324
 
6357
6325
  [[package]]
6358
6326
  name = "wyz"
@@ -6411,18 +6379,18 @@ dependencies = [
6411
6379
 
6412
6380
  [[package]]
6413
6381
  name = "zerocopy"
6414
- version = "0.8.54"
6382
+ version = "0.8.56"
6415
6383
  source = "registry+https://github.com/rust-lang/crates.io-index"
6416
- checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
6384
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
6417
6385
  dependencies = [
6418
6386
  "zerocopy-derive",
6419
6387
  ]
6420
6388
 
6421
6389
  [[package]]
6422
6390
  name = "zerocopy-derive"
6423
- version = "0.8.54"
6391
+ version = "0.8.56"
6424
6392
  source = "registry+https://github.com/rust-lang/crates.io-index"
6425
- checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
6393
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
6426
6394
  dependencies = [
6427
6395
  "proc-macro2",
6428
6396
  "quote",
@@ -6458,9 +6426,9 @@ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
6458
6426
 
6459
6427
  [[package]]
6460
6428
  name = "zerotrie"
6461
- version = "0.2.4"
6429
+ version = "0.2.5"
6462
6430
  source = "registry+https://github.com/rust-lang/crates.io-index"
6463
- checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
6431
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
6464
6432
  dependencies = [
6465
6433
  "displaydoc",
6466
6434
  "yoke",
@@ -6470,9 +6438,9 @@ dependencies = [
6470
6438
 
6471
6439
  [[package]]
6472
6440
  name = "zerovec"
6473
- version = "0.11.6"
6441
+ version = "0.11.7"
6474
6442
  source = "registry+https://github.com/rust-lang/crates.io-index"
6475
- checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
6443
+ checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
6476
6444
  dependencies = [
6477
6445
  "serde",
6478
6446
  "yoke",
@@ -6482,17 +6450,17 @@ dependencies = [
6482
6450
 
6483
6451
  [[package]]
6484
6452
  name = "zerovec-derive"
6485
- version = "0.11.3"
6453
+ version = "0.11.4"
6486
6454
  source = "registry+https://github.com/rust-lang/crates.io-index"
6487
- checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
6455
+ checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
6488
6456
  dependencies = [
6489
6457
  "proc-macro2",
6490
6458
  "quote",
6491
- "syn 2.0.119",
6459
+ "syn 3.0.3",
6492
6460
  ]
6493
6461
 
6494
6462
  [[package]]
6495
6463
  name = "zmij"
6496
- version = "1.0.21"
6464
+ version = "1.0.23"
6497
6465
  source = "registry+https://github.com/rust-lang/crates.io-index"
6498
- checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
6466
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"