nucleation 0.1.138__tar.gz → 0.1.141__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 (474) hide show
  1. {nucleation-0.1.138 → nucleation-0.1.141}/Cargo.lock +527 -176
  2. {nucleation-0.1.138 → nucleation-0.1.141}/Cargo.toml +3 -1
  3. {nucleation-0.1.138 → nucleation-0.1.141}/PKG-INFO +1 -1
  4. nucleation-0.1.141/WARP.md +53 -0
  5. {nucleation-0.1.138 → nucleation-0.1.141}/docs/README.md +1 -1
  6. nucleation-0.1.141/docs/building/README.md +122 -0
  7. {nucleation-0.1.138 → nucleation-0.1.141}/docs/javascript/README.md +102 -1
  8. {nucleation-0.1.138 → nucleation-0.1.141}/docs/python/README.md +81 -1
  9. {nucleation-0.1.138 → nucleation-0.1.141}/docs/rust/README.md +3 -3
  10. {nucleation-0.1.138 → nucleation-0.1.141}/examples/bracket_notation.rs +1 -1
  11. {nucleation-0.1.138 → nucleation-0.1.141}/examples/build_adder.rs +2 -2
  12. nucleation-0.1.141/examples/building_benchmark.rs +217 -0
  13. {nucleation-0.1.138 → nucleation-0.1.141}/examples/custom_io_signals.rs +1 -1
  14. nucleation-0.1.141/examples/generate_gradient_samples.rs +93 -0
  15. nucleation-0.1.141/examples/generate_nice_gradients.rs +82 -0
  16. nucleation-0.1.141/examples/generate_solid_color_tests.rs +207 -0
  17. nucleation-0.1.141/examples/inspect_blockpedia.rs +16 -0
  18. nucleation-0.1.141/examples/python_benchmark.py +103 -0
  19. {nucleation-0.1.138 → nucleation-0.1.141}/examples/rust.md +1 -1
  20. {nucleation-0.1.138 → nucleation-0.1.141}/examples/universal_schematic_overhead.rs +4 -4
  21. {nucleation-0.1.138 → nucleation-0.1.141}/pyproject.toml +1 -1
  22. nucleation-0.1.141/release-artifacts/libnucleation-macos-arm64.dylib +0 -0
  23. nucleation-0.1.141/release-artifacts/libnucleation-macos-x64.dylib +0 -0
  24. nucleation-0.1.141/release-artifacts/libnucleation.d +1 -0
  25. nucleation-0.1.141/release-artifacts/libnucleation.rlib +0 -0
  26. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/nucleation-original.js +661 -330
  27. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/nucleation.d.ts +205 -99
  28. nucleation-0.1.141/release-artifacts/nucleation_bg.wasm +0 -0
  29. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/nucleation_bg.wasm.d.ts +81 -56
  30. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/package.json +1 -1
  31. nucleation-0.1.141/simple_cube.litematic +0 -0
  32. nucleation-0.1.141/src/building/brushes.rs +804 -0
  33. nucleation-0.1.141/src/building/enums.rs +84 -0
  34. nucleation-0.1.141/src/building/mod.rs +34 -0
  35. nucleation-0.1.141/src/building/shapes.rs +135 -0
  36. {nucleation-0.1.138 → nucleation-0.1.141}/src/definition_region.rs +1 -1
  37. {nucleation-0.1.138 → nucleation-0.1.141}/src/ffi.rs +5 -5
  38. {nucleation-0.1.138 → nucleation-0.1.141}/src/formats/litematic.rs +12 -13
  39. {nucleation-0.1.138 → nucleation-0.1.141}/src/formats/mcstructure.rs +104 -49
  40. {nucleation-0.1.138 → nucleation-0.1.141}/src/formats/schematic.rs +5 -5
  41. {nucleation-0.1.138 → nucleation-0.1.141}/src/insign.rs +1 -1
  42. {nucleation-0.1.138 → nucleation-0.1.141}/src/lib.rs +1 -0
  43. {nucleation-0.1.138 → nucleation-0.1.141}/src/nbt/mod.rs +1 -1
  44. {nucleation-0.1.138 → nucleation-0.1.141}/src/print_utils.rs +5 -5
  45. nucleation-0.1.141/src/python/building.rs +245 -0
  46. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/definition_region.rs +1 -1
  47. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/mod.rs +4 -0
  48. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/schematic.rs +31 -2
  49. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/typed_executor.rs +1 -1
  50. {nucleation-0.1.138 → nucleation-0.1.141}/src/region.rs +153 -99
  51. {nucleation-0.1.138 → nucleation-0.1.141}/src/schematic_builder.rs +8 -3
  52. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/circuit_builder.rs +1 -1
  53. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/mchprs_world.rs +1 -1
  54. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/tests.rs +31 -31
  55. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/executor.rs +1 -1
  56. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/insign_io.rs +2 -2
  57. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/integration_tests.rs +2 -2
  58. {nucleation-0.1.138 → nucleation-0.1.141}/src/universal_schematic.rs +215 -52
  59. nucleation-0.1.141/src/wasm/building.rs +211 -0
  60. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/mod.rs +4 -0
  61. nucleation-0.1.141/src/wasm/palettes.rs +53 -0
  62. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/schematic.rs +32 -1
  63. nucleation-0.1.141/test_schematic.schem +0 -0
  64. nucleation-0.1.141/tests/building_tests.rs +285 -0
  65. {nucleation-0.1.138 → nucleation-0.1.141}/tests/debug_flip.rs +2 -2
  66. {nucleation-0.1.138 → nucleation-0.1.141}/tests/definition_regions_test.rs +3 -3
  67. {nucleation-0.1.138 → nucleation-0.1.141}/tests/integration_tests.rs +4 -5
  68. {nucleation-0.1.138 → nucleation-0.1.141}/tests/mcstructure_tests.rs +4 -4
  69. {nucleation-0.1.138 → nucleation-0.1.141}/tests/property_transformation_demo.rs +14 -14
  70. nucleation-0.1.141/tests/samples/flip-flop.mcstructure +0 -0
  71. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_chunk_bounds_bug.rs +10 -10
  72. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_custom_io_adjacent_bug.rs +7 -7
  73. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_region_expansion_bugs.rs +16 -16
  74. {nucleation-0.1.138 → nucleation-0.1.141}/tests/transformation_tests.rs +32 -32
  75. nucleation-0.1.138/release-artifacts/libnucleation-macos-arm64.dylib +0 -0
  76. nucleation-0.1.138/release-artifacts/libnucleation-macos-x64.dylib +0 -0
  77. nucleation-0.1.138/release-artifacts/libnucleation.d +0 -1
  78. nucleation-0.1.138/release-artifacts/libnucleation.rlib +0 -0
  79. nucleation-0.1.138/release-artifacts/nucleation_bg.wasm +0 -0
  80. nucleation-0.1.138/simple_cube.litematic +0 -0
  81. nucleation-0.1.138/test_schematic.schem +0 -0
  82. {nucleation-0.1.138 → nucleation-0.1.141}/.DS_Store +0 -0
  83. {nucleation-0.1.138 → nucleation-0.1.141}/.cargo/config.toml +0 -0
  84. {nucleation-0.1.138 → nucleation-0.1.141}/.github/workflows/ci.yml +0 -0
  85. {nucleation-0.1.138 → nucleation-0.1.141}/.gitignore +0 -0
  86. {nucleation-0.1.138 → nucleation-0.1.141}/.idea/.gitignore +0 -0
  87. {nucleation-0.1.138 → nucleation-0.1.141}/.idea/minecraft_schematic_utils.iml +0 -0
  88. {nucleation-0.1.138 → nucleation-0.1.141}/.idea/misc.xml +0 -0
  89. {nucleation-0.1.138 → nucleation-0.1.141}/.idea/modules.xml +0 -0
  90. {nucleation-0.1.138 → nucleation-0.1.141}/.idea/vcs.xml +0 -0
  91. {nucleation-0.1.138 → nucleation-0.1.141}/4bit_adder.litematic +0 -0
  92. {nucleation-0.1.138 → nucleation-0.1.141}/Dockerfile +0 -0
  93. {nucleation-0.1.138 → nucleation-0.1.141}/LICENSE +0 -0
  94. {nucleation-0.1.138 → nucleation-0.1.141}/README.md +0 -0
  95. {nucleation-0.1.138 → nucleation-0.1.141}/benches/performance_test.rs +0 -0
  96. {nucleation-0.1.138 → nucleation-0.1.141}/benches/schematic_bench.rs +0 -0
  97. {nucleation-0.1.138 → nucleation-0.1.141}/build-ffi.sh +0 -0
  98. {nucleation-0.1.138 → nucleation-0.1.141}/build-wasm.sh +0 -0
  99. {nucleation-0.1.138 → nucleation-0.1.141}/docs/insign-io-integration.md +0 -0
  100. {nucleation-0.1.138 → nucleation-0.1.141}/docs/shared/guide/circuit-api.md +0 -0
  101. {nucleation-0.1.138 → nucleation-0.1.141}/docs/shared/guide/definition-region.md +0 -0
  102. {nucleation-0.1.138 → nucleation-0.1.141}/docs/shared/guide/schematic-builder.md +0 -0
  103. {nucleation-0.1.138 → nucleation-0.1.141}/docs/shared/guide/typed-executor.md +0 -0
  104. {nucleation-0.1.138 → nucleation-0.1.141}/docs/shared/unicode-palette.md +0 -0
  105. {nucleation-0.1.138 → nucleation-0.1.141}/examples/build_test_adder.rs +0 -0
  106. {nucleation-0.1.138 → nucleation-0.1.141}/examples/check_adder_dims.rs +0 -0
  107. {nucleation-0.1.138 → nucleation-0.1.141}/examples/connect4_battle_setup.rs +0 -0
  108. {nucleation-0.1.138 → nucleation-0.1.141}/examples/create_simple_litematic.rs +0 -0
  109. {nucleation-0.1.138 → nucleation-0.1.141}/examples/ffi.md +0 -0
  110. {nucleation-0.1.138 → nucleation-0.1.141}/examples/python.md +0 -0
  111. {nucleation-0.1.138 → nucleation-0.1.141}/examples/python_simulation.py +0 -0
  112. {nucleation-0.1.138 → nucleation-0.1.141}/examples/rust_fluent_api.rs +0 -0
  113. {nucleation-0.1.138 → nucleation-0.1.141}/examples/test_asymmetric_cubes.rs +0 -0
  114. {nucleation-0.1.138 → nucleation-0.1.141}/examples/test_checkerboard.rs +0 -0
  115. {nucleation-0.1.138 → nucleation-0.1.141}/examples/test_unicode_circuit.rs +0 -0
  116. {nucleation-0.1.138 → nucleation-0.1.141}/examples/wasm.md +0 -0
  117. {nucleation-0.1.138 → nucleation-0.1.141}/helf_adder.litematic +0 -0
  118. {nucleation-0.1.138 → nucleation-0.1.141}/insign.d.ts +0 -0
  119. {nucleation-0.1.138 → nucleation-0.1.141}/nucleation-stubs.php +0 -0
  120. {nucleation-0.1.138 → nucleation-0.1.141}/nucleation.pyi +0 -0
  121. {nucleation-0.1.138 → nucleation-0.1.141}/output/.DS_Store +0 -0
  122. {nucleation-0.1.138 → nucleation-0.1.141}/output/full_adder.litematic +0 -0
  123. {nucleation-0.1.138 → nucleation-0.1.141}/pre-push.sh +0 -0
  124. {nucleation-0.1.138 → nucleation-0.1.141}/py.typed +0 -0
  125. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/LICENSE +0 -0
  126. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/README.md +0 -0
  127. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/nucleation-cdn-loader.js +0 -0
  128. {nucleation-0.1.138 → nucleation-0.1.141}/release-artifacts/nucleation.js +0 -0
  129. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/generated/d_latch.litematic +0 -0
  130. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/generated/xor.schem +0 -0
  131. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/comparator_subtract_bug1.txt +0 -0
  132. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/comparator_subtract_bug2.txt +0 -0
  133. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/comparator_subtract_simple.txt +0 -0
  134. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/comparator_subtract_with_signs.txt +0 -0
  135. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/d_latch.txt +0 -0
  136. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/failing_case.txt +0 -0
  137. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/full_adder.txt +0 -0
  138. {nucleation-0.1.138 → nucleation-0.1.141}/schematic_builder/templates/xor.txt +0 -0
  139. {nucleation-0.1.138 → nucleation-0.1.141}/scripts/update-stubs.sh +0 -0
  140. {nucleation-0.1.138 → nucleation-0.1.141}/src/bin/schematic-builder.rs +0 -0
  141. {nucleation-0.1.138 → nucleation-0.1.141}/src/block_entity/generic.rs +0 -0
  142. {nucleation-0.1.138 → nucleation-0.1.141}/src/block_entity/mod.rs +0 -0
  143. {nucleation-0.1.138 → nucleation-0.1.141}/src/block_position.rs +0 -0
  144. {nucleation-0.1.138 → nucleation-0.1.141}/src/block_state.rs +0 -0
  145. {nucleation-0.1.138 → nucleation-0.1.141}/src/bounding_box.rs +0 -0
  146. {nucleation-0.1.138 → nucleation-0.1.141}/src/chunk.rs +0 -0
  147. {nucleation-0.1.138 → nucleation-0.1.141}/src/entity.rs +0 -0
  148. {nucleation-0.1.138 → nucleation-0.1.141}/src/formats/manager.rs +0 -0
  149. {nucleation-0.1.138 → nucleation-0.1.141}/src/formats/mod.rs +0 -0
  150. {nucleation-0.1.138 → nucleation-0.1.141}/src/formats/sponge_schematic_v3.md +0 -0
  151. {nucleation-0.1.138 → nucleation-0.1.141}/src/item/mod.rs +0 -0
  152. {nucleation-0.1.138 → nucleation-0.1.141}/src/item/stack.rs +0 -0
  153. {nucleation-0.1.138 → nucleation-0.1.141}/src/metadata.rs +0 -0
  154. {nucleation-0.1.138 → nucleation-0.1.141}/src/php.rs +0 -0
  155. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/circuit_builder.rs +0 -0
  156. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/schematic_builder.rs +0 -0
  157. {nucleation-0.1.138 → nucleation-0.1.141}/src/python/simulation.rs +0 -0
  158. {nucleation-0.1.138 → nucleation-0.1.141}/src/schematic_builder/palettes.rs +0 -0
  159. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/mod.rs +0 -0
  160. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/truth_table.rs +0 -0
  161. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/io_layout_builder.rs +0 -0
  162. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/io_mapping.rs +0 -0
  163. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/io_type.rs +0 -0
  164. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/layout_function.rs +0 -0
  165. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/mod.rs +0 -0
  166. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/sort_strategy.rs +0 -0
  167. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/tests.rs +0 -0
  168. {nucleation-0.1.138 → nucleation-0.1.141}/src/simulation/typed_executor/value.rs +0 -0
  169. {nucleation-0.1.138 → nucleation-0.1.141}/src/transforms.rs +0 -0
  170. {nucleation-0.1.138 → nucleation-0.1.141}/src/utils/block_string.rs +0 -0
  171. {nucleation-0.1.138 → nucleation-0.1.141}/src/utils/container_spec.rs +0 -0
  172. {nucleation-0.1.138 → nucleation-0.1.141}/src/utils/enhanced_nbt_parser.rs +0 -0
  173. {nucleation-0.1.138 → nucleation-0.1.141}/src/utils/mod.rs +0 -0
  174. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/circuit_builder.rs +0 -0
  175. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/definition_region.rs +0 -0
  176. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/schematic_builder.rs +0 -0
  177. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/simulation.rs +0 -0
  178. {nucleation-0.1.138 → nucleation-0.1.141}/src/wasm/typed_executor.rs +0 -0
  179. {nucleation-0.1.138 → nucleation-0.1.141}/test-wasm.sh +0 -0
  180. {nucleation-0.1.138 → nucleation-0.1.141}/test_adder.litematic +0 -0
  181. {nucleation-0.1.138 → nucleation-0.1.141}/test_circuit.txt +0 -0
  182. {nucleation-0.1.138 → nucleation-0.1.141}/test_cli_output.litematic +0 -0
  183. {nucleation-0.1.138 → nucleation-0.1.141}/test_count_format.schem +0 -0
  184. {nucleation-0.1.138 → nucleation-0.1.141}/test_enhanced.schem +0 -0
  185. {nucleation-0.1.138 → nucleation-0.1.141}/test_fixed.schem +0 -0
  186. {nucleation-0.1.138 → nucleation-0.1.141}/tests/.DS_Store +0 -0
  187. {nucleation-0.1.138 → nucleation-0.1.141}/tests/barrel_nbt_test.rs +0 -0
  188. {nucleation-0.1.138 → nucleation-0.1.141}/tests/connect4_test.js +0 -0
  189. {nucleation-0.1.138 → nucleation-0.1.141}/tests/executor_config_test.js +0 -0
  190. {nucleation-0.1.138 → nucleation-0.1.141}/tests/mchprs_state_test.rs +0 -0
  191. {nucleation-0.1.138 → nucleation-0.1.141}/tests/nbt_parsing_test.rs +0 -0
  192. {nucleation-0.1.138 → nucleation-0.1.141}/tests/node_fluent_api_test.mjs +0 -0
  193. {nucleation-0.1.138 → nucleation-0.1.141}/tests/node_simple_circuit_test.js +0 -0
  194. {nucleation-0.1.138 → nucleation-0.1.141}/tests/node_simple_circuit_test.mjs +0 -0
  195. {nucleation-0.1.138 → nucleation-0.1.141}/tests/node_wasm_test.js +0 -0
  196. {nucleation-0.1.138 → nucleation-0.1.141}/tests/package.json +0 -0
  197. {nucleation-0.1.138 → nucleation-0.1.141}/tests/php-stubs-test.php +0 -0
  198. {nucleation-0.1.138 → nucleation-0.1.141}/tests/python_simple_circuit_test.py +0 -0
  199. {nucleation-0.1.138 → nucleation-0.1.141}/tests/python_test.py +0 -0
  200. {nucleation-0.1.138 → nucleation-0.1.141}/tests/registry_tests.rs +0 -0
  201. {nucleation-0.1.138 → nucleation-0.1.141}/tests/reproduce_bug.rs +0 -0
  202. {nucleation-0.1.138 → nucleation-0.1.141}/tests/rust_fluent_api_test.rs +0 -0
  203. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/16-bit_divider.mcstructure +0 -0
  204. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/1x1.litematic +0 -0
  205. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/3x2x3.litematic +0 -0
  206. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/3x3.litematic +0 -0
  207. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/4x2x4.litematic +0 -0
  208. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/4x4x4+1.litematic +0 -0
  209. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/8-bit_alu.mcstructure +0 -0
  210. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/Evaluator.schem +0 -0
  211. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/all_items.litematic +0 -0
  212. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/and.schem +0 -0
  213. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/brewer.litematic +0 -0
  214. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/c4_ai_last_played.schem +0 -0
  215. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/c4_ai_left_most.schem +0 -0
  216. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/cutecounter.schem +0 -0
  217. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/door_plot.litematic +0 -0
  218. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/file.litematic.l +0 -0
  219. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/gol.litematic +0 -0
  220. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/large_schematic.schem +0 -0
  221. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/linear_plotter.litematic +0 -0
  222. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/litematic-rose-farm.litematic +0 -0
  223. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/new_chest_test.schem +0 -0
  224. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/quarry.litematic +0 -0
  225. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/sample.litematic +0 -0
  226. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/sample.schem +0 -0
  227. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/spinny.litematic +0 -0
  228. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/ss-sorter.litematic +0 -0
  229. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/storage_thingy.litematic +0 -0
  230. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/test_coordinate_thingy.litematic +0 -0
  231. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/test_cube.schem +0 -0
  232. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/trencher.litematic +0 -0
  233. {nucleation-0.1.138 → nucleation-0.1.141}/tests/samples/wool_palette.litematic +0 -0
  234. {nucleation-0.1.138 → nucleation-0.1.141}/tests/simple_wasm_test.rs +0 -0
  235. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_barrel_hopper_simulation.rs +0 -0
  236. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_comparator_diagonal_bug.rs +0 -0
  237. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_comparator_subtract_bug.rs +0 -0
  238. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_comparator_subtract_executor.rs +0 -0
  239. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_custom_io_no_power_bug.rs +0 -0
  240. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_intermediate_wire_sync.rs +0 -0
  241. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_long_wire.rs +0 -0
  242. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_nibble_signal_strength.rs +0 -0
  243. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_repeater_chain_sync.rs +0 -0
  244. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_repeater_custom_io_bug.rs +0 -0
  245. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_simulation_with_tight_bounds.rs +0 -0
  246. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_two_inputs_exact_topology.rs +0 -0
  247. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_two_inputs_no_output_bug.rs +0 -0
  248. {nucleation-0.1.138 → nucleation-0.1.141}/tests/test_typed_executor_sync_output_bug.rs +0 -0
  249. {nucleation-0.1.138 → nucleation-0.1.141}/tests/wasm_node_tests.rs +0 -0
  250. {nucleation-0.1.138 → nucleation-0.1.141}/tests/wasm_tests.rs +0 -0
  251. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/bun.lockb +0 -0
  252. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/index.html +0 -0
  253. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/index.js +0 -0
  254. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/minecraft_schematic_utils.js +0 -0
  255. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/minecraft_schematic_utils_bg.wasm +0 -0
  256. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/LICENSE +0 -0
  257. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/README.md +0 -0
  258. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/assert/strict.d.ts +0 -0
  259. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/assert.d.ts +0 -0
  260. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/async_hooks.d.ts +0 -0
  261. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/buffer.d.ts +0 -0
  262. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/child_process.d.ts +0 -0
  263. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/cluster.d.ts +0 -0
  264. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/console.d.ts +0 -0
  265. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/constants.d.ts +0 -0
  266. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/crypto.d.ts +0 -0
  267. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/dgram.d.ts +0 -0
  268. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/diagnostics_channel.d.ts +0 -0
  269. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/dns/promises.d.ts +0 -0
  270. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/dns.d.ts +0 -0
  271. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/dom-events.d.ts +0 -0
  272. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/domain.d.ts +0 -0
  273. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/events.d.ts +0 -0
  274. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/fs/promises.d.ts +0 -0
  275. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/fs.d.ts +0 -0
  276. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/globals.d.ts +0 -0
  277. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/globals.global.d.ts +0 -0
  278. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/http.d.ts +0 -0
  279. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/http2.d.ts +0 -0
  280. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/https.d.ts +0 -0
  281. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/index.d.ts +0 -0
  282. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/inspector.d.ts +0 -0
  283. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/module.d.ts +0 -0
  284. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/net.d.ts +0 -0
  285. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/os.d.ts +0 -0
  286. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/package.json +0 -0
  287. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/path.d.ts +0 -0
  288. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/perf_hooks.d.ts +0 -0
  289. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/process.d.ts +0 -0
  290. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/punycode.d.ts +0 -0
  291. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/querystring.d.ts +0 -0
  292. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/readline/promises.d.ts +0 -0
  293. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/readline.d.ts +0 -0
  294. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/repl.d.ts +0 -0
  295. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/sea.d.ts +0 -0
  296. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/stream/consumers.d.ts +0 -0
  297. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/stream/promises.d.ts +0 -0
  298. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/stream/web.d.ts +0 -0
  299. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/stream.d.ts +0 -0
  300. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/string_decoder.d.ts +0 -0
  301. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/test.d.ts +0 -0
  302. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/timers/promises.d.ts +0 -0
  303. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/timers.d.ts +0 -0
  304. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/tls.d.ts +0 -0
  305. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/trace_events.d.ts +0 -0
  306. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/tty.d.ts +0 -0
  307. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/url.d.ts +0 -0
  308. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/util.d.ts +0 -0
  309. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/v8.d.ts +0 -0
  310. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/vm.d.ts +0 -0
  311. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/wasi.d.ts +0 -0
  312. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/worker_threads.d.ts +0 -0
  313. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/node/zlib.d.ts +0 -0
  314. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/LICENSE +0 -0
  315. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/README.md +0 -0
  316. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/index.d.mts +0 -0
  317. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/index.d.ts +0 -0
  318. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/LICENSE +0 -0
  319. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/README.md +0 -0
  320. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/assert/strict.d.ts +0 -0
  321. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/assert.d.ts +0 -0
  322. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/async_hooks.d.ts +0 -0
  323. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/buffer.d.ts +0 -0
  324. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/child_process.d.ts +0 -0
  325. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/cluster.d.ts +0 -0
  326. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/console.d.ts +0 -0
  327. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/constants.d.ts +0 -0
  328. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/crypto.d.ts +0 -0
  329. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dgram.d.ts +0 -0
  330. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/diagnostics_channel.d.ts +0 -0
  331. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dns/promises.d.ts +0 -0
  332. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dns.d.ts +0 -0
  333. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dom-events.d.ts +0 -0
  334. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/domain.d.ts +0 -0
  335. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/events.d.ts +0 -0
  336. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/fs/promises.d.ts +0 -0
  337. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/fs.d.ts +0 -0
  338. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/globals.d.ts +0 -0
  339. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/globals.global.d.ts +0 -0
  340. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/http.d.ts +0 -0
  341. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/http2.d.ts +0 -0
  342. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/https.d.ts +0 -0
  343. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/index.d.ts +0 -0
  344. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/inspector.d.ts +0 -0
  345. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/module.d.ts +0 -0
  346. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/net.d.ts +0 -0
  347. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/LICENSE +0 -0
  348. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/README.md +0 -0
  349. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/agent.d.ts +0 -0
  350. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/api.d.ts +0 -0
  351. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/balanced-pool.d.ts +0 -0
  352. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/cache.d.ts +0 -0
  353. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/client.d.ts +0 -0
  354. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/connector.d.ts +0 -0
  355. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/content-type.d.ts +0 -0
  356. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/cookies.d.ts +0 -0
  357. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/diagnostics-channel.d.ts +0 -0
  358. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/dispatcher.d.ts +0 -0
  359. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -0
  360. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/errors.d.ts +0 -0
  361. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/eventsource.d.ts +0 -0
  362. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/fetch.d.ts +0 -0
  363. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/file.d.ts +0 -0
  364. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/filereader.d.ts +0 -0
  365. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/formdata.d.ts +0 -0
  366. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/global-dispatcher.d.ts +0 -0
  367. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/global-origin.d.ts +0 -0
  368. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/handlers.d.ts +0 -0
  369. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/header.d.ts +0 -0
  370. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/index.d.ts +0 -0
  371. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/interceptors.d.ts +0 -0
  372. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-agent.d.ts +0 -0
  373. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-client.d.ts +0 -0
  374. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-errors.d.ts +0 -0
  375. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-interceptor.d.ts +0 -0
  376. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-pool.d.ts +0 -0
  377. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/package.json +0 -0
  378. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/patch.d.ts +0 -0
  379. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/pool-stats.d.ts +0 -0
  380. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/pool.d.ts +0 -0
  381. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/proxy-agent.d.ts +0 -0
  382. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/readable.d.ts +0 -0
  383. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/retry-agent.d.ts +0 -0
  384. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/retry-handler.d.ts +0 -0
  385. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/util.d.ts +0 -0
  386. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/webidl.d.ts +0 -0
  387. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/websocket.d.ts +0 -0
  388. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/os.d.ts +0 -0
  389. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/package.json +0 -0
  390. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/path.d.ts +0 -0
  391. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/perf_hooks.d.ts +0 -0
  392. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/process.d.ts +0 -0
  393. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/punycode.d.ts +0 -0
  394. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/querystring.d.ts +0 -0
  395. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/readline/promises.d.ts +0 -0
  396. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/readline.d.ts +0 -0
  397. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/repl.d.ts +0 -0
  398. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/sea.d.ts +0 -0
  399. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/sqlite.d.ts +0 -0
  400. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream/consumers.d.ts +0 -0
  401. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream/promises.d.ts +0 -0
  402. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream/web.d.ts +0 -0
  403. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream.d.ts +0 -0
  404. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/string_decoder.d.ts +0 -0
  405. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/test.d.ts +0 -0
  406. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/timers/promises.d.ts +0 -0
  407. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/timers.d.ts +0 -0
  408. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/tls.d.ts +0 -0
  409. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/trace_events.d.ts +0 -0
  410. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/tty.d.ts +0 -0
  411. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/url.d.ts +0 -0
  412. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/util.d.ts +0 -0
  413. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/v8.d.ts +0 -0
  414. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/vm.d.ts +0 -0
  415. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/wasi.d.ts +0 -0
  416. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/worker_threads.d.ts +0 -0
  417. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/node_modules/@types/node/zlib.d.ts +0 -0
  418. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/@types/ws/package.json +0 -0
  419. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/README.md +0 -0
  420. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/bun.d.ts +0 -0
  421. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/deprecated.d.ts +0 -0
  422. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/fetch.d.ts +0 -0
  423. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/ffi.d.ts +0 -0
  424. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/globals.d.ts +0 -0
  425. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/html-rewriter.d.ts +0 -0
  426. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/index.d.ts +0 -0
  427. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/jsc.d.ts +0 -0
  428. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/overrides.d.ts +0 -0
  429. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/package.json +0 -0
  430. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/sqlite.d.ts +0 -0
  431. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/test.d.ts +0 -0
  432. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/bun-types/wasm.d.ts +0 -0
  433. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/README.md +0 -0
  434. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/agent.d.ts +0 -0
  435. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/api.d.ts +0 -0
  436. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/balanced-pool.d.ts +0 -0
  437. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/cache.d.ts +0 -0
  438. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/client.d.ts +0 -0
  439. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/connector.d.ts +0 -0
  440. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/content-type.d.ts +0 -0
  441. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/cookies.d.ts +0 -0
  442. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/diagnostics-channel.d.ts +0 -0
  443. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/dispatcher.d.ts +0 -0
  444. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/errors.d.ts +0 -0
  445. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/fetch.d.ts +0 -0
  446. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/file.d.ts +0 -0
  447. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/filereader.d.ts +0 -0
  448. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/formdata.d.ts +0 -0
  449. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/global-dispatcher.d.ts +0 -0
  450. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/global-origin.d.ts +0 -0
  451. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/handlers.d.ts +0 -0
  452. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/header.d.ts +0 -0
  453. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/index.d.ts +0 -0
  454. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/interceptors.d.ts +0 -0
  455. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/mock-agent.d.ts +0 -0
  456. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/mock-client.d.ts +0 -0
  457. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/mock-errors.d.ts +0 -0
  458. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/mock-interceptor.d.ts +0 -0
  459. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/mock-pool.d.ts +0 -0
  460. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/package.json +0 -0
  461. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/patch.d.ts +0 -0
  462. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/pool-stats.d.ts +0 -0
  463. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/pool.d.ts +0 -0
  464. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/proxy-agent.d.ts +0 -0
  465. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/readable.d.ts +0 -0
  466. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/webidl.d.ts +0 -0
  467. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/node_modules/undici-types/websocket.d.ts +0 -0
  468. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/nucleation-web.js +0 -0
  469. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/nucleation-web_bg.wasm +0 -0
  470. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/nucleation.js +0 -0
  471. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/nucleation_bg.js +0 -0
  472. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/nucleation_bg.wasm +0 -0
  473. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/package.json +0 -0
  474. {nucleation-0.1.138 → nucleation-0.1.141}/wasm-test/server.js +0 -0
@@ -14,7 +14,7 @@ version = "0.8.4"
14
14
  source = "registry+https://github.com/rust-lang/crates.io-index"
15
15
  checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
16
  dependencies = [
17
- "cfg-if",
17
+ "cfg-if 1.0.4",
18
18
  "cipher",
19
19
  "cpufeatures",
20
20
  ]
@@ -25,7 +25,7 @@ version = "0.8.12"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
26
  checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
27
27
  dependencies = [
28
- "cfg-if",
28
+ "cfg-if 1.0.4",
29
29
  "once_cell",
30
30
  "version_check",
31
31
  "zerocopy",
@@ -117,6 +117,15 @@ version = "1.0.100"
117
117
  source = "registry+https://github.com/rust-lang/crates.io-index"
118
118
  checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
119
119
 
120
+ [[package]]
121
+ name = "approx"
122
+ version = "0.5.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
125
+ dependencies = [
126
+ "num-traits",
127
+ ]
128
+
120
129
  [[package]]
121
130
  name = "ar_archive_writer"
122
131
  version = "0.2.0"
@@ -135,6 +144,17 @@ dependencies = [
135
144
  "derive_arbitrary",
136
145
  ]
137
146
 
147
+ [[package]]
148
+ name = "async-trait"
149
+ version = "0.1.89"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
152
+ dependencies = [
153
+ "proc-macro2",
154
+ "quote",
155
+ "syn 2.0.111",
156
+ ]
157
+
138
158
  [[package]]
139
159
  name = "autocfg"
140
160
  version = "1.5.0"
@@ -149,9 +169,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
149
169
 
150
170
  [[package]]
151
171
  name = "base64ct"
152
- version = "1.8.0"
172
+ version = "1.8.1"
153
173
  source = "registry+https://github.com/rust-lang/crates.io-index"
154
- checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
174
+ checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
155
175
 
156
176
  [[package]]
157
177
  name = "bincode"
@@ -168,7 +188,7 @@ version = "0.68.1"
168
188
  source = "registry+https://github.com/rust-lang/crates.io-index"
169
189
  checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078"
170
190
  dependencies = [
171
- "bitflags",
191
+ "bitflags 2.10.0",
172
192
  "cexpr",
173
193
  "clang-sys",
174
194
  "lazy_static",
@@ -181,10 +201,22 @@ dependencies = [
181
201
  "regex",
182
202
  "rustc-hash 1.1.0",
183
203
  "shlex",
184
- "syn 2.0.110",
204
+ "syn 2.0.111",
185
205
  "which",
186
206
  ]
187
207
 
208
+ [[package]]
209
+ name = "bit_field"
210
+ version = "0.10.3"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
213
+
214
+ [[package]]
215
+ name = "bitflags"
216
+ version = "1.3.2"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
219
+
188
220
  [[package]]
189
221
  name = "bitflags"
190
222
  version = "2.10.0"
@@ -200,6 +232,29 @@ dependencies = [
200
232
  "generic-array",
201
233
  ]
202
234
 
235
+ [[package]]
236
+ name = "blockpedia"
237
+ version = "0.1.7"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "9fd332d4a740078986617b2989e8d285b8e7b5e113b86732dbfd0fe168a0f878"
240
+ dependencies = [
241
+ "anyhow",
242
+ "console_error_panic_hook",
243
+ "image",
244
+ "js-sys",
245
+ "palette",
246
+ "phf",
247
+ "phf_codegen",
248
+ "serde",
249
+ "serde-wasm-bindgen 0.6.5",
250
+ "serde_json",
251
+ "thiserror 1.0.69",
252
+ "tokio",
253
+ "wasm-bindgen",
254
+ "web-sys",
255
+ "wee_alloc",
256
+ ]
257
+
203
258
  [[package]]
204
259
  name = "boxcar"
205
260
  version = "0.2.14"
@@ -218,9 +273,15 @@ dependencies = [
218
273
 
219
274
  [[package]]
220
275
  name = "bumpalo"
221
- version = "3.19.0"
276
+ version = "3.19.1"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
279
+
280
+ [[package]]
281
+ name = "by_address"
282
+ version = "1.2.1"
222
283
  source = "registry+https://github.com/rust-lang/crates.io-index"
223
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
284
+ checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
224
285
 
225
286
  [[package]]
226
287
  name = "bytecount"
@@ -271,9 +332,9 @@ dependencies = [
271
332
 
272
333
  [[package]]
273
334
  name = "camino"
274
- version = "1.2.1"
335
+ version = "1.2.2"
275
336
  source = "registry+https://github.com/rust-lang/crates.io-index"
276
- checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
337
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
277
338
  dependencies = [
278
339
  "serde_core",
279
340
  ]
@@ -286,7 +347,7 @@ checksum = "3795d3a48839a46854805f56c8fe9c558f10804bcf57df53925ca843d87c788f"
286
347
  dependencies = [
287
348
  "serde",
288
349
  "serde_derive",
289
- "toml 0.9.8",
350
+ "toml 0.9.10+spec-1.1.0",
290
351
  "windows-sys 0.61.2",
291
352
  ]
292
353
 
@@ -355,16 +416,16 @@ dependencies = [
355
416
  "quote",
356
417
  "serde",
357
418
  "serde_json",
358
- "syn 2.0.110",
419
+ "syn 2.0.111",
359
420
  "tempfile",
360
- "toml 0.9.8",
421
+ "toml 0.9.10+spec-1.1.0",
361
422
  ]
362
423
 
363
424
  [[package]]
364
425
  name = "cc"
365
- version = "1.2.45"
426
+ version = "1.2.50"
366
427
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
428
+ checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
368
429
  dependencies = [
369
430
  "find-msvc-tools",
370
431
  "jobserver",
@@ -387,6 +448,12 @@ dependencies = [
387
448
  "nom",
388
449
  ]
389
450
 
451
+ [[package]]
452
+ name = "cfg-if"
453
+ version = "0.1.10"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
456
+
390
457
  [[package]]
391
458
  name = "cfg-if"
392
459
  version = "1.0.4"
@@ -477,9 +544,9 @@ dependencies = [
477
544
 
478
545
  [[package]]
479
546
  name = "clap"
480
- version = "4.5.51"
547
+ version = "4.5.53"
481
548
  source = "registry+https://github.com/rust-lang/crates.io-index"
482
- checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
549
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
483
550
  dependencies = [
484
551
  "clap_builder",
485
552
  "clap_derive",
@@ -487,9 +554,9 @@ dependencies = [
487
554
 
488
555
  [[package]]
489
556
  name = "clap_builder"
490
- version = "4.5.51"
557
+ version = "4.5.53"
491
558
  source = "registry+https://github.com/rust-lang/crates.io-index"
492
- checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
559
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
493
560
  dependencies = [
494
561
  "anstream",
495
562
  "anstyle",
@@ -507,7 +574,7 @@ dependencies = [
507
574
  "heck",
508
575
  "proc-macro2",
509
576
  "quote",
510
- "syn 2.0.110",
577
+ "syn 2.0.111",
511
578
  ]
512
579
 
513
580
  [[package]]
@@ -516,6 +583,12 @@ version = "0.7.6"
516
583
  source = "registry+https://github.com/rust-lang/crates.io-index"
517
584
  checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
518
585
 
586
+ [[package]]
587
+ name = "color_quant"
588
+ version = "1.1.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
591
+
519
592
  [[package]]
520
593
  name = "colorchoice"
521
594
  version = "1.0.4"
@@ -541,7 +614,7 @@ version = "0.1.7"
541
614
  source = "registry+https://github.com/rust-lang/crates.io-index"
542
615
  checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
543
616
  dependencies = [
544
- "cfg-if",
617
+ "cfg-if 1.0.4",
545
618
  "wasm-bindgen",
546
619
  ]
547
620
 
@@ -578,9 +651,9 @@ dependencies = [
578
651
 
579
652
  [[package]]
580
653
  name = "crc"
581
- version = "3.3.0"
654
+ version = "3.4.0"
582
655
  source = "registry+https://github.com/rust-lang/crates.io-index"
583
- checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
656
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
584
657
  dependencies = [
585
658
  "crc-catalog",
586
659
  ]
@@ -597,7 +670,7 @@ version = "1.5.0"
597
670
  source = "registry+https://github.com/rust-lang/crates.io-index"
598
671
  checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
599
672
  dependencies = [
600
- "cfg-if",
673
+ "cfg-if 1.0.4",
601
674
  ]
602
675
 
603
676
  [[package]]
@@ -735,7 +808,7 @@ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
735
808
  dependencies = [
736
809
  "proc-macro2",
737
810
  "quote",
738
- "syn 2.0.110",
811
+ "syn 2.0.111",
739
812
  ]
740
813
 
741
814
  [[package]]
@@ -757,7 +830,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
757
830
  dependencies = [
758
831
  "proc-macro2",
759
832
  "quote",
760
- "syn 2.0.110",
833
+ "syn 2.0.111",
761
834
  ]
762
835
 
763
836
  [[package]]
@@ -784,7 +857,7 @@ version = "0.8.35"
784
857
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
858
  checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
786
859
  dependencies = [
787
- "cfg-if",
860
+ "cfg-if 1.0.4",
788
861
  ]
789
862
 
790
863
  [[package]]
@@ -796,7 +869,7 @@ dependencies = [
796
869
  "once_cell",
797
870
  "proc-macro2",
798
871
  "quote",
799
- "syn 2.0.110",
872
+ "syn 2.0.111",
800
873
  ]
801
874
 
802
875
  [[package]]
@@ -824,6 +897,21 @@ dependencies = [
824
897
  "version_check",
825
898
  ]
826
899
 
900
+ [[package]]
901
+ name = "exr"
902
+ version = "1.74.0"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
905
+ dependencies = [
906
+ "bit_field",
907
+ "half",
908
+ "lebe",
909
+ "miniz_oxide",
910
+ "rayon-core",
911
+ "smallvec",
912
+ "zune-inflate",
913
+ ]
914
+
827
915
  [[package]]
828
916
  name = "ext-php-rs"
829
917
  version = "0.13.1"
@@ -832,9 +920,9 @@ checksum = "85ebc08b233139f41c0aa0c9005510a5988f5524e215eec8fd5f97a96fb3aac2"
832
920
  dependencies = [
833
921
  "anyhow",
834
922
  "bindgen",
835
- "bitflags",
923
+ "bitflags 2.10.0",
836
924
  "cc",
837
- "cfg-if",
925
+ "cfg-if 1.0.4",
838
926
  "ext-php-rs-derive",
839
927
  "native-tls",
840
928
  "once_cell",
@@ -859,6 +947,12 @@ dependencies = [
859
947
  "syn 1.0.109",
860
948
  ]
861
949
 
950
+ [[package]]
951
+ name = "fast-srgb8"
952
+ version = "1.0.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
955
+
862
956
  [[package]]
863
957
  name = "fastrand"
864
958
  version = "2.3.0"
@@ -871,7 +965,16 @@ version = "0.4.10"
871
965
  source = "registry+https://github.com/rust-lang/crates.io-index"
872
966
  checksum = "a64465b99fa411ca36a47048e9b1deec20f609b072711e3949e6d135403ea16d"
873
967
  dependencies = [
874
- "goblin 0.10.3",
968
+ "goblin 0.10.4",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "fdeflate"
973
+ version = "0.3.7"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
976
+ dependencies = [
977
+ "simd-adler32",
875
978
  ]
876
979
 
877
980
  [[package]]
@@ -880,7 +983,7 @@ version = "0.2.26"
880
983
  source = "registry+https://github.com/rust-lang/crates.io-index"
881
984
  checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
882
985
  dependencies = [
883
- "cfg-if",
986
+ "cfg-if 1.0.4",
884
987
  "libc",
885
988
  "libredox",
886
989
  "windows-sys 0.60.2",
@@ -888,9 +991,9 @@ dependencies = [
888
991
 
889
992
  [[package]]
890
993
  name = "find-msvc-tools"
891
- version = "0.1.4"
994
+ version = "0.1.5"
892
995
  source = "registry+https://github.com/rust-lang/crates.io-index"
893
- checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
996
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
894
997
 
895
998
  [[package]]
896
999
  name = "fixedbitset"
@@ -941,9 +1044,9 @@ dependencies = [
941
1044
 
942
1045
  [[package]]
943
1046
  name = "fs-err"
944
- version = "3.1.3"
1047
+ version = "3.2.2"
945
1048
  source = "registry+https://github.com/rust-lang/crates.io-index"
946
- checksum = "6ad492b2cf1d89d568a43508ab24f98501fe03f2f31c01e1d0fe7366a71745d2"
1049
+ checksum = "baf68cef89750956493a66a10f512b9e58d9db21f2a573c079c0bdf1207a54a7"
947
1050
  dependencies = [
948
1051
  "autocfg",
949
1052
  ]
@@ -964,7 +1067,7 @@ version = "0.2.16"
964
1067
  source = "registry+https://github.com/rust-lang/crates.io-index"
965
1068
  checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
966
1069
  dependencies = [
967
- "cfg-if",
1070
+ "cfg-if 1.0.4",
968
1071
  "js-sys",
969
1072
  "libc",
970
1073
  "wasi",
@@ -977,12 +1080,22 @@ version = "0.3.4"
977
1080
  source = "registry+https://github.com/rust-lang/crates.io-index"
978
1081
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
979
1082
  dependencies = [
980
- "cfg-if",
1083
+ "cfg-if 1.0.4",
981
1084
  "libc",
982
1085
  "r-efi",
983
1086
  "wasip2",
984
1087
  ]
985
1088
 
1089
+ [[package]]
1090
+ name = "gif"
1091
+ version = "0.13.3"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
1094
+ dependencies = [
1095
+ "color_quant",
1096
+ "weezl",
1097
+ ]
1098
+
986
1099
  [[package]]
987
1100
  name = "glob"
988
1101
  version = "0.3.3"
@@ -1015,9 +1128,9 @@ dependencies = [
1015
1128
 
1016
1129
  [[package]]
1017
1130
  name = "goblin"
1018
- version = "0.10.3"
1131
+ version = "0.10.4"
1019
1132
  source = "registry+https://github.com/rust-lang/crates.io-index"
1020
- checksum = "51876e3748c4a347fe65b906f2b1ae46a1e55a497b22c94c1f4f2c469ff7673a"
1133
+ checksum = "4db6758c546e6f81f265638c980e5e84dfbda80cfd8e89e02f83454c8e8124bd"
1021
1134
  dependencies = [
1022
1135
  "log",
1023
1136
  "plain",
@@ -1030,7 +1143,7 @@ version = "2.7.1"
1030
1143
  source = "registry+https://github.com/rust-lang/crates.io-index"
1031
1144
  checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1032
1145
  dependencies = [
1033
- "cfg-if",
1146
+ "cfg-if 1.0.4",
1034
1147
  "crunchy",
1035
1148
  "zerocopy",
1036
1149
  ]
@@ -1047,9 +1160,9 @@ dependencies = [
1047
1160
 
1048
1161
  [[package]]
1049
1162
  name = "hashbrown"
1050
- version = "0.16.0"
1163
+ version = "0.16.1"
1051
1164
  source = "registry+https://github.com/rust-lang/crates.io-index"
1052
- checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1165
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1053
1166
 
1054
1167
  [[package]]
1055
1168
  name = "heck"
@@ -1164,9 +1277,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1164
1277
 
1165
1278
  [[package]]
1166
1279
  name = "icu_properties"
1167
- version = "2.1.1"
1280
+ version = "2.1.2"
1168
1281
  source = "registry+https://github.com/rust-lang/crates.io-index"
1169
- checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
1282
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1170
1283
  dependencies = [
1171
1284
  "icu_collections",
1172
1285
  "icu_locale_core",
@@ -1178,9 +1291,9 @@ dependencies = [
1178
1291
 
1179
1292
  [[package]]
1180
1293
  name = "icu_properties_data"
1181
- version = "2.1.1"
1294
+ version = "2.1.2"
1182
1295
  source = "registry+https://github.com/rust-lang/crates.io-index"
1183
- checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
1296
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1184
1297
 
1185
1298
  [[package]]
1186
1299
  name = "icu_provider"
@@ -1240,14 +1353,32 @@ dependencies = [
1240
1353
  "winapi-util",
1241
1354
  ]
1242
1355
 
1356
+ [[package]]
1357
+ name = "image"
1358
+ version = "0.24.9"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
1361
+ dependencies = [
1362
+ "bytemuck",
1363
+ "byteorder",
1364
+ "color_quant",
1365
+ "exr",
1366
+ "gif",
1367
+ "jpeg-decoder",
1368
+ "num-traits",
1369
+ "png",
1370
+ "qoi",
1371
+ "tiff",
1372
+ ]
1373
+
1243
1374
  [[package]]
1244
1375
  name = "indexmap"
1245
- version = "2.12.0"
1376
+ version = "2.12.1"
1246
1377
  source = "registry+https://github.com/rust-lang/crates.io-index"
1247
- checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1378
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1248
1379
  dependencies = [
1249
1380
  "equivalent",
1250
- "hashbrown 0.16.0",
1381
+ "hashbrown 0.16.1",
1251
1382
  "serde",
1252
1383
  "serde_core",
1253
1384
  ]
@@ -1328,9 +1459,9 @@ dependencies = [
1328
1459
 
1329
1460
  [[package]]
1330
1461
  name = "itoa"
1331
- version = "1.0.15"
1462
+ version = "1.0.16"
1332
1463
  source = "registry+https://github.com/rust-lang/crates.io-index"
1333
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1464
+ checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
1334
1465
 
1335
1466
  [[package]]
1336
1467
  name = "jobserver"
@@ -1342,11 +1473,20 @@ dependencies = [
1342
1473
  "libc",
1343
1474
  ]
1344
1475
 
1476
+ [[package]]
1477
+ name = "jpeg-decoder"
1478
+ version = "0.3.2"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
1481
+ dependencies = [
1482
+ "rayon",
1483
+ ]
1484
+
1345
1485
  [[package]]
1346
1486
  name = "js-sys"
1347
- version = "0.3.82"
1487
+ version = "0.3.83"
1348
1488
  source = "registry+https://github.com/rust-lang/crates.io-index"
1349
- checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
1489
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1350
1490
  dependencies = [
1351
1491
  "once_cell",
1352
1492
  "wasm-bindgen",
@@ -1372,9 +1512,15 @@ checksum = "547a362ad16dead8837d5b30402a81b05bb57c352044389f8748f4f2dbd51914"
1372
1512
  dependencies = [
1373
1513
  "fs-err",
1374
1514
  "glob",
1375
- "goblin 0.10.3",
1515
+ "goblin 0.10.4",
1376
1516
  ]
1377
1517
 
1518
+ [[package]]
1519
+ name = "lebe"
1520
+ version = "0.5.3"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1523
+
1378
1524
  [[package]]
1379
1525
  name = "libbz2-rs-sys"
1380
1526
  version = "0.2.2"
@@ -1383,9 +1529,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
1383
1529
 
1384
1530
  [[package]]
1385
1531
  name = "libc"
1386
- version = "0.2.177"
1532
+ version = "0.2.178"
1387
1533
  source = "registry+https://github.com/rust-lang/crates.io-index"
1388
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1534
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1389
1535
 
1390
1536
  [[package]]
1391
1537
  name = "libloading"
@@ -1393,26 +1539,32 @@ version = "0.8.9"
1393
1539
  source = "registry+https://github.com/rust-lang/crates.io-index"
1394
1540
  checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1395
1541
  dependencies = [
1396
- "cfg-if",
1542
+ "cfg-if 1.0.4",
1397
1543
  "windows-link",
1398
1544
  ]
1399
1545
 
1546
+ [[package]]
1547
+ name = "libm"
1548
+ version = "0.2.15"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1551
+
1400
1552
  [[package]]
1401
1553
  name = "libredox"
1402
- version = "0.1.10"
1554
+ version = "0.1.11"
1403
1555
  source = "registry+https://github.com/rust-lang/crates.io-index"
1404
- checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
1556
+ checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
1405
1557
  dependencies = [
1406
- "bitflags",
1558
+ "bitflags 2.10.0",
1407
1559
  "libc",
1408
- "redox_syscall",
1560
+ "redox_syscall 0.6.0",
1409
1561
  ]
1410
1562
 
1411
1563
  [[package]]
1412
1564
  name = "libz-rs-sys"
1413
- version = "0.5.2"
1565
+ version = "0.5.5"
1414
1566
  source = "registry+https://github.com/rust-lang/crates.io-index"
1415
- checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
1567
+ checksum = "c10501e7805cee23da17c7790e59df2870c0d4043ec6d03f67d31e2b53e77415"
1416
1568
  dependencies = [
1417
1569
  "zlib-rs",
1418
1570
  ]
@@ -1446,9 +1598,9 @@ dependencies = [
1446
1598
 
1447
1599
  [[package]]
1448
1600
  name = "log"
1449
- version = "0.4.28"
1601
+ version = "0.4.29"
1450
1602
  source = "registry+https://github.com/rust-lang/crates.io-index"
1451
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1603
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1452
1604
 
1453
1605
  [[package]]
1454
1606
  name = "lzma-rust2"
@@ -1482,9 +1634,9 @@ dependencies = [
1482
1634
 
1483
1635
  [[package]]
1484
1636
  name = "maturin"
1485
- version = "1.10.1"
1637
+ version = "1.10.2"
1486
1638
  source = "registry+https://github.com/rust-lang/crates.io-index"
1487
- checksum = "90005166904e3686b6f791c5160fb265517c14f6a192652765f1c656230e0168"
1639
+ checksum = "c39fcd0f19d45cd804007b0ba49c42989e8e9edee42fe26029485a21bca07ed4"
1488
1640
  dependencies = [
1489
1641
  "anyhow",
1490
1642
  "base64",
@@ -1551,7 +1703,7 @@ version = "0.4.1"
1551
1703
  source = "git+https://github.com/Nano112/MCHPRS.git?rev=541c0b2e96857a6abaa567755c3fbb6c7f5be971#541c0b2e96857a6abaa567755c3fbb6c7f5be971"
1552
1704
  dependencies = [
1553
1705
  "quote",
1554
- "syn 2.0.110",
1706
+ "syn 2.0.111",
1555
1707
  ]
1556
1708
 
1557
1709
  [[package]]
@@ -1614,11 +1766,17 @@ dependencies = [
1614
1766
  "autocfg",
1615
1767
  ]
1616
1768
 
1769
+ [[package]]
1770
+ name = "memory_units"
1771
+ version = "0.4.0"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
1774
+
1617
1775
  [[package]]
1618
1776
  name = "minicov"
1619
- version = "0.3.7"
1777
+ version = "0.3.8"
1620
1778
  source = "registry+https://github.com/rust-lang/crates.io-index"
1621
- checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
1779
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1622
1780
  dependencies = [
1623
1781
  "cc",
1624
1782
  "walkdir",
@@ -1687,9 +1845,10 @@ dependencies = [
1687
1845
 
1688
1846
  [[package]]
1689
1847
  name = "nucleation"
1690
- version = "0.1.138"
1848
+ version = "0.1.141"
1691
1849
  dependencies = [
1692
1850
  "base64",
1851
+ "blockpedia",
1693
1852
  "bytemuck",
1694
1853
  "chrono",
1695
1854
  "console",
@@ -1712,7 +1871,7 @@ dependencies = [
1712
1871
  "quartz_nbt",
1713
1872
  "rand",
1714
1873
  "serde",
1715
- "serde-wasm-bindgen",
1874
+ "serde-wasm-bindgen 0.4.5",
1716
1875
  "serde_json",
1717
1876
  "thiserror 1.0.69",
1718
1877
  "tracing",
@@ -1744,6 +1903,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
1903
  checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1745
1904
  dependencies = [
1746
1905
  "autocfg",
1906
+ "libm",
1747
1907
  ]
1748
1908
 
1749
1909
  [[package]]
@@ -1779,8 +1939,8 @@ version = "0.10.75"
1779
1939
  source = "registry+https://github.com/rust-lang/crates.io-index"
1780
1940
  checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1781
1941
  dependencies = [
1782
- "bitflags",
1783
- "cfg-if",
1942
+ "bitflags 2.10.0",
1943
+ "cfg-if 1.0.4",
1784
1944
  "foreign-types",
1785
1945
  "libc",
1786
1946
  "once_cell",
@@ -1796,7 +1956,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1796
1956
  dependencies = [
1797
1957
  "proc-macro2",
1798
1958
  "quote",
1799
- "syn 2.0.110",
1959
+ "syn 2.0.111",
1800
1960
  ]
1801
1961
 
1802
1962
  [[package]]
@@ -1817,6 +1977,30 @@ dependencies = [
1817
1977
  "vcpkg",
1818
1978
  ]
1819
1979
 
1980
+ [[package]]
1981
+ name = "palette"
1982
+ version = "0.7.6"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
1985
+ dependencies = [
1986
+ "approx",
1987
+ "fast-srgb8",
1988
+ "palette_derive",
1989
+ "phf",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "palette_derive"
1994
+ version = "0.7.6"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
1997
+ dependencies = [
1998
+ "by_address",
1999
+ "proc-macro2",
2000
+ "quote",
2001
+ "syn 2.0.111",
2002
+ ]
2003
+
1820
2004
  [[package]]
1821
2005
  name = "parking_lot"
1822
2006
  version = "0.12.5"
@@ -1833,9 +2017,9 @@ version = "0.9.12"
1833
2017
  source = "registry+https://github.com/rust-lang/crates.io-index"
1834
2018
  checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1835
2019
  dependencies = [
1836
- "cfg-if",
2020
+ "cfg-if 1.0.4",
1837
2021
  "libc",
1838
- "redox_syscall",
2022
+ "redox_syscall 0.5.18",
1839
2023
  "smallvec",
1840
2024
  "windows-link",
1841
2025
  ]
@@ -1928,6 +2112,58 @@ dependencies = [
1928
2112
  "indexmap",
1929
2113
  ]
1930
2114
 
2115
+ [[package]]
2116
+ name = "phf"
2117
+ version = "0.11.3"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2120
+ dependencies = [
2121
+ "phf_macros",
2122
+ "phf_shared",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "phf_codegen"
2127
+ version = "0.11.3"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2130
+ dependencies = [
2131
+ "phf_generator",
2132
+ "phf_shared",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "phf_generator"
2137
+ version = "0.11.3"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2140
+ dependencies = [
2141
+ "phf_shared",
2142
+ "rand",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "phf_macros"
2147
+ version = "0.11.3"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2150
+ dependencies = [
2151
+ "phf_generator",
2152
+ "phf_shared",
2153
+ "proc-macro2",
2154
+ "quote",
2155
+ "syn 2.0.111",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "phf_shared"
2160
+ version = "0.11.3"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2163
+ dependencies = [
2164
+ "siphasher",
2165
+ ]
2166
+
1931
2167
  [[package]]
1932
2168
  name = "pin-project-lite"
1933
2169
  version = "0.2.16"
@@ -1984,11 +2220,24 @@ dependencies = [
1984
2220
  "plotters-backend",
1985
2221
  ]
1986
2222
 
2223
+ [[package]]
2224
+ name = "png"
2225
+ version = "0.17.16"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
2228
+ dependencies = [
2229
+ "bitflags 1.3.2",
2230
+ "crc32fast",
2231
+ "fdeflate",
2232
+ "flate2",
2233
+ "miniz_oxide",
2234
+ ]
2235
+
1987
2236
  [[package]]
1988
2237
  name = "portable-atomic"
1989
- version = "1.11.1"
2238
+ version = "1.12.0"
1990
2239
  source = "registry+https://github.com/rust-lang/crates.io-index"
1991
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2240
+ checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
1992
2241
 
1993
2242
  [[package]]
1994
2243
  name = "potential_utf"
@@ -2021,7 +2270,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
2270
  checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2022
2271
  dependencies = [
2023
2272
  "proc-macro2",
2024
- "syn 2.0.110",
2273
+ "syn 2.0.111",
2025
2274
  ]
2026
2275
 
2027
2276
  [[package]]
@@ -2049,7 +2298,7 @@ version = "0.9.6"
2049
2298
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
2299
  checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
2051
2300
  dependencies = [
2052
- "bitflags",
2301
+ "bitflags 2.10.0",
2053
2302
  "memchr",
2054
2303
  "unicase",
2055
2304
  ]
@@ -2100,7 +2349,7 @@ dependencies = [
2100
2349
  "proc-macro2",
2101
2350
  "pyo3-macros-backend",
2102
2351
  "quote",
2103
- "syn 2.0.110",
2352
+ "syn 2.0.111",
2104
2353
  ]
2105
2354
 
2106
2355
  [[package]]
@@ -2113,7 +2362,7 @@ dependencies = [
2113
2362
  "proc-macro2",
2114
2363
  "pyo3-build-config",
2115
2364
  "quote",
2116
- "syn 2.0.110",
2365
+ "syn 2.0.111",
2117
2366
  ]
2118
2367
 
2119
2368
  [[package]]
@@ -2128,7 +2377,7 @@ dependencies = [
2128
2377
  "pep508_rs",
2129
2378
  "serde",
2130
2379
  "thiserror 2.0.17",
2131
- "toml 0.9.8",
2380
+ "toml 0.9.10+spec-1.1.0",
2132
2381
  ]
2133
2382
 
2134
2383
  [[package]]
@@ -2146,6 +2395,15 @@ dependencies = [
2146
2395
  "zip 6.0.0",
2147
2396
  ]
2148
2397
 
2398
+ [[package]]
2399
+ name = "qoi"
2400
+ version = "0.4.1"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2403
+ dependencies = [
2404
+ "bytemuck",
2405
+ ]
2406
+
2149
2407
  [[package]]
2150
2408
  name = "quartz_nbt"
2151
2409
  version = "0.2.9"
@@ -2247,7 +2505,16 @@ version = "0.5.18"
2247
2505
  source = "registry+https://github.com/rust-lang/crates.io-index"
2248
2506
  checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2249
2507
  dependencies = [
2250
- "bitflags",
2508
+ "bitflags 2.10.0",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "redox_syscall"
2513
+ version = "0.6.0"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
2516
+ dependencies = [
2517
+ "bitflags 2.10.0",
2251
2518
  ]
2252
2519
 
2253
2520
  [[package]]
@@ -2335,7 +2602,7 @@ version = "0.38.44"
2335
2602
  source = "registry+https://github.com/rust-lang/crates.io-index"
2336
2603
  checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2337
2604
  dependencies = [
2338
- "bitflags",
2605
+ "bitflags 2.10.0",
2339
2606
  "errno",
2340
2607
  "libc",
2341
2608
  "linux-raw-sys 0.4.15",
@@ -2344,11 +2611,11 @@ dependencies = [
2344
2611
 
2345
2612
  [[package]]
2346
2613
  name = "rustix"
2347
- version = "1.1.2"
2614
+ version = "1.1.3"
2348
2615
  source = "registry+https://github.com/rust-lang/crates.io-index"
2349
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2616
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2350
2617
  dependencies = [
2351
- "bitflags",
2618
+ "bitflags 2.10.0",
2352
2619
  "errno",
2353
2620
  "libc",
2354
2621
  "linux-raw-sys 0.11.0",
@@ -2361,12 +2628,6 @@ version = "1.0.22"
2361
2628
  source = "registry+https://github.com/rust-lang/crates.io-index"
2362
2629
  checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2363
2630
 
2364
- [[package]]
2365
- name = "ryu"
2366
- version = "1.0.20"
2367
- source = "registry+https://github.com/rust-lang/crates.io-index"
2368
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2369
-
2370
2631
  [[package]]
2371
2632
  name = "same-file"
2372
2633
  version = "1.0.6"
@@ -2417,7 +2678,7 @@ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
2417
2678
  dependencies = [
2418
2679
  "proc-macro2",
2419
2680
  "quote",
2420
- "syn 2.0.110",
2681
+ "syn 2.0.111",
2421
2682
  ]
2422
2683
 
2423
2684
  [[package]]
@@ -2428,7 +2689,7 @@ checksum = "ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d"
2428
2689
  dependencies = [
2429
2690
  "proc-macro2",
2430
2691
  "quote",
2431
- "syn 2.0.110",
2692
+ "syn 2.0.111",
2432
2693
  ]
2433
2694
 
2434
2695
  [[package]]
@@ -2437,7 +2698,7 @@ version = "2.11.1"
2437
2698
  source = "registry+https://github.com/rust-lang/crates.io-index"
2438
2699
  checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2439
2700
  dependencies = [
2440
- "bitflags",
2701
+ "bitflags 2.10.0",
2441
2702
  "core-foundation",
2442
2703
  "core-foundation-sys",
2443
2704
  "libc",
@@ -2485,6 +2746,17 @@ dependencies = [
2485
2746
  "wasm-bindgen",
2486
2747
  ]
2487
2748
 
2749
+ [[package]]
2750
+ name = "serde-wasm-bindgen"
2751
+ version = "0.6.5"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2754
+ dependencies = [
2755
+ "js-sys",
2756
+ "serde",
2757
+ "wasm-bindgen",
2758
+ ]
2759
+
2488
2760
  [[package]]
2489
2761
  name = "serde_core"
2490
2762
  version = "1.0.228"
@@ -2502,20 +2774,20 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2502
2774
  dependencies = [
2503
2775
  "proc-macro2",
2504
2776
  "quote",
2505
- "syn 2.0.110",
2777
+ "syn 2.0.111",
2506
2778
  ]
2507
2779
 
2508
2780
  [[package]]
2509
2781
  name = "serde_json"
2510
- version = "1.0.145"
2782
+ version = "1.0.147"
2511
2783
  source = "registry+https://github.com/rust-lang/crates.io-index"
2512
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2784
+ checksum = "6af14725505314343e673e9ecb7cd7e8a36aa9791eb936235a3567cc31447ae4"
2513
2785
  dependencies = [
2514
2786
  "itoa",
2515
2787
  "memchr",
2516
- "ryu",
2517
2788
  "serde",
2518
2789
  "serde_core",
2790
+ "zmij",
2519
2791
  ]
2520
2792
 
2521
2793
  [[package]]
@@ -2529,9 +2801,9 @@ dependencies = [
2529
2801
 
2530
2802
  [[package]]
2531
2803
  name = "serde_spanned"
2532
- version = "1.0.3"
2804
+ version = "1.0.4"
2533
2805
  source = "registry+https://github.com/rust-lang/crates.io-index"
2534
- checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
2806
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2535
2807
  dependencies = [
2536
2808
  "serde_core",
2537
2809
  ]
@@ -2542,7 +2814,7 @@ version = "0.10.6"
2542
2814
  source = "registry+https://github.com/rust-lang/crates.io-index"
2543
2815
  checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2544
2816
  dependencies = [
2545
- "cfg-if",
2817
+ "cfg-if 1.0.4",
2546
2818
  "cpufeatures",
2547
2819
  "digest",
2548
2820
  ]
@@ -2553,7 +2825,7 @@ version = "0.10.9"
2553
2825
  source = "registry+https://github.com/rust-lang/crates.io-index"
2554
2826
  checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2555
2827
  dependencies = [
2556
- "cfg-if",
2828
+ "cfg-if 1.0.4",
2557
2829
  "cpufeatures",
2558
2830
  "digest",
2559
2831
  ]
@@ -2575,9 +2847,15 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2575
2847
 
2576
2848
  [[package]]
2577
2849
  name = "simd-adler32"
2578
- version = "0.3.7"
2850
+ version = "0.3.8"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2853
+
2854
+ [[package]]
2855
+ name = "siphasher"
2856
+ version = "1.0.1"
2579
2857
  source = "registry+https://github.com/rust-lang/crates.io-index"
2580
- checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2858
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2581
2859
 
2582
2860
  [[package]]
2583
2861
  name = "skeptic"
@@ -2619,7 +2897,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
2897
  checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
2620
2898
  dependencies = [
2621
2899
  "cc",
2622
- "cfg-if",
2900
+ "cfg-if 1.0.4",
2623
2901
  "libc",
2624
2902
  "psm",
2625
2903
  "windows-sys 0.59.0",
@@ -2656,9 +2934,9 @@ dependencies = [
2656
2934
 
2657
2935
  [[package]]
2658
2936
  name = "syn"
2659
- version = "2.0.110"
2937
+ version = "2.0.111"
2660
2938
  source = "registry+https://github.com/rust-lang/crates.io-index"
2661
- checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
2939
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2662
2940
  dependencies = [
2663
2941
  "proc-macro2",
2664
2942
  "quote",
@@ -2673,7 +2951,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2673
2951
  dependencies = [
2674
2952
  "proc-macro2",
2675
2953
  "quote",
2676
- "syn 2.0.110",
2954
+ "syn 2.0.111",
2677
2955
  ]
2678
2956
 
2679
2957
  [[package]]
@@ -2689,20 +2967,20 @@ dependencies = [
2689
2967
 
2690
2968
  [[package]]
2691
2969
  name = "target-lexicon"
2692
- version = "0.13.3"
2970
+ version = "0.13.4"
2693
2971
  source = "registry+https://github.com/rust-lang/crates.io-index"
2694
- checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2972
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
2695
2973
 
2696
2974
  [[package]]
2697
2975
  name = "tempfile"
2698
- version = "3.23.0"
2976
+ version = "3.24.0"
2699
2977
  source = "registry+https://github.com/rust-lang/crates.io-index"
2700
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2978
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
2701
2979
  dependencies = [
2702
2980
  "fastrand",
2703
2981
  "getrandom 0.3.4",
2704
2982
  "once_cell",
2705
- "rustix 1.1.2",
2983
+ "rustix 1.1.3",
2706
2984
  "windows-sys 0.61.2",
2707
2985
  ]
2708
2986
 
@@ -2712,7 +2990,7 @@ version = "0.4.3"
2712
2990
  source = "registry+https://github.com/rust-lang/crates.io-index"
2713
2991
  checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
2714
2992
  dependencies = [
2715
- "rustix 1.1.2",
2993
+ "rustix 1.1.3",
2716
2994
  "windows-sys 0.60.2",
2717
2995
  ]
2718
2996
 
@@ -2753,7 +3031,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2753
3031
  dependencies = [
2754
3032
  "proc-macro2",
2755
3033
  "quote",
2756
- "syn 2.0.110",
3034
+ "syn 2.0.111",
2757
3035
  ]
2758
3036
 
2759
3037
  [[package]]
@@ -2764,7 +3042,7 @@ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2764
3042
  dependencies = [
2765
3043
  "proc-macro2",
2766
3044
  "quote",
2767
- "syn 2.0.110",
3045
+ "syn 2.0.111",
2768
3046
  ]
2769
3047
 
2770
3048
  [[package]]
@@ -2773,7 +3051,18 @@ version = "1.1.9"
2773
3051
  source = "registry+https://github.com/rust-lang/crates.io-index"
2774
3052
  checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2775
3053
  dependencies = [
2776
- "cfg-if",
3054
+ "cfg-if 1.0.4",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "tiff"
3059
+ version = "0.9.1"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
3062
+ dependencies = [
3063
+ "flate2",
3064
+ "jpeg-decoder",
3065
+ "weezl",
2777
3066
  ]
2778
3067
 
2779
3068
  [[package]]
@@ -2815,6 +3104,27 @@ dependencies = [
2815
3104
  "serde_json",
2816
3105
  ]
2817
3106
 
3107
+ [[package]]
3108
+ name = "tokio"
3109
+ version = "1.48.0"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3112
+ dependencies = [
3113
+ "pin-project-lite",
3114
+ "tokio-macros",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "tokio-macros"
3119
+ version = "2.6.0"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3122
+ dependencies = [
3123
+ "proc-macro2",
3124
+ "quote",
3125
+ "syn 2.0.111",
3126
+ ]
3127
+
2818
3128
  [[package]]
2819
3129
  name = "toml"
2820
3130
  version = "0.8.23"
@@ -2829,14 +3139,14 @@ dependencies = [
2829
3139
 
2830
3140
  [[package]]
2831
3141
  name = "toml"
2832
- version = "0.9.8"
3142
+ version = "0.9.10+spec-1.1.0"
2833
3143
  source = "registry+https://github.com/rust-lang/crates.io-index"
2834
- checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
3144
+ checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48"
2835
3145
  dependencies = [
2836
3146
  "indexmap",
2837
3147
  "serde_core",
2838
- "serde_spanned 1.0.3",
2839
- "toml_datetime 0.7.3",
3148
+ "serde_spanned 1.0.4",
3149
+ "toml_datetime 0.7.5+spec-1.1.0",
2840
3150
  "toml_parser",
2841
3151
  "toml_writer",
2842
3152
  "winnow",
@@ -2853,9 +3163,9 @@ dependencies = [
2853
3163
 
2854
3164
  [[package]]
2855
3165
  name = "toml_datetime"
2856
- version = "0.7.3"
3166
+ version = "0.7.5+spec-1.1.0"
2857
3167
  source = "registry+https://github.com/rust-lang/crates.io-index"
2858
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
3168
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2859
3169
  dependencies = [
2860
3170
  "serde_core",
2861
3171
  ]
@@ -2876,9 +3186,9 @@ dependencies = [
2876
3186
 
2877
3187
  [[package]]
2878
3188
  name = "toml_parser"
2879
- version = "1.0.4"
3189
+ version = "1.0.6+spec-1.1.0"
2880
3190
  source = "registry+https://github.com/rust-lang/crates.io-index"
2881
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
3191
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2882
3192
  dependencies = [
2883
3193
  "winnow",
2884
3194
  ]
@@ -2891,15 +3201,15 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2891
3201
 
2892
3202
  [[package]]
2893
3203
  name = "toml_writer"
2894
- version = "1.0.4"
3204
+ version = "1.0.6+spec-1.1.0"
2895
3205
  source = "registry+https://github.com/rust-lang/crates.io-index"
2896
- checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
3206
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
2897
3207
 
2898
3208
  [[package]]
2899
3209
  name = "tracing"
2900
- version = "0.1.41"
3210
+ version = "0.1.44"
2901
3211
  source = "registry+https://github.com/rust-lang/crates.io-index"
2902
- checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3212
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2903
3213
  dependencies = [
2904
3214
  "pin-project-lite",
2905
3215
  "tracing-attributes",
@@ -2908,20 +3218,20 @@ dependencies = [
2908
3218
 
2909
3219
  [[package]]
2910
3220
  name = "tracing-attributes"
2911
- version = "0.1.30"
3221
+ version = "0.1.31"
2912
3222
  source = "registry+https://github.com/rust-lang/crates.io-index"
2913
- checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3223
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2914
3224
  dependencies = [
2915
3225
  "proc-macro2",
2916
3226
  "quote",
2917
- "syn 2.0.110",
3227
+ "syn 2.0.111",
2918
3228
  ]
2919
3229
 
2920
3230
  [[package]]
2921
3231
  name = "tracing-core"
2922
- version = "0.1.34"
3232
+ version = "0.1.36"
2923
3233
  source = "registry+https://github.com/rust-lang/crates.io-index"
2924
- checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3234
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2925
3235
  dependencies = [
2926
3236
  "once_cell",
2927
3237
  "valuable",
@@ -2940,9 +3250,9 @@ dependencies = [
2940
3250
 
2941
3251
  [[package]]
2942
3252
  name = "tracing-subscriber"
2943
- version = "0.3.20"
3253
+ version = "0.3.22"
2944
3254
  source = "registry+https://github.com/rust-lang/crates.io-index"
2945
- checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
3255
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2946
3256
  dependencies = [
2947
3257
  "matchers",
2948
3258
  "nu-ansi-term",
@@ -3096,11 +3406,11 @@ dependencies = [
3096
3406
 
3097
3407
  [[package]]
3098
3408
  name = "wasm-bindgen"
3099
- version = "0.2.105"
3409
+ version = "0.2.106"
3100
3410
  source = "registry+https://github.com/rust-lang/crates.io-index"
3101
- checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
3411
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3102
3412
  dependencies = [
3103
- "cfg-if",
3413
+ "cfg-if 1.0.4",
3104
3414
  "once_cell",
3105
3415
  "rustversion",
3106
3416
  "serde",
@@ -3111,11 +3421,11 @@ dependencies = [
3111
3421
 
3112
3422
  [[package]]
3113
3423
  name = "wasm-bindgen-futures"
3114
- version = "0.4.55"
3424
+ version = "0.4.56"
3115
3425
  source = "registry+https://github.com/rust-lang/crates.io-index"
3116
- checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
3426
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3117
3427
  dependencies = [
3118
- "cfg-if",
3428
+ "cfg-if 1.0.4",
3119
3429
  "js-sys",
3120
3430
  "once_cell",
3121
3431
  "wasm-bindgen",
@@ -3124,9 +3434,9 @@ dependencies = [
3124
3434
 
3125
3435
  [[package]]
3126
3436
  name = "wasm-bindgen-macro"
3127
- version = "0.2.105"
3437
+ version = "0.2.106"
3128
3438
  source = "registry+https://github.com/rust-lang/crates.io-index"
3129
- checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
3439
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3130
3440
  dependencies = [
3131
3441
  "quote",
3132
3442
  "wasm-bindgen-macro-support",
@@ -3134,34 +3444,42 @@ dependencies = [
3134
3444
 
3135
3445
  [[package]]
3136
3446
  name = "wasm-bindgen-macro-support"
3137
- version = "0.2.105"
3447
+ version = "0.2.106"
3138
3448
  source = "registry+https://github.com/rust-lang/crates.io-index"
3139
- checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
3449
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3140
3450
  dependencies = [
3141
3451
  "bumpalo",
3142
3452
  "proc-macro2",
3143
3453
  "quote",
3144
- "syn 2.0.110",
3454
+ "syn 2.0.111",
3145
3455
  "wasm-bindgen-shared",
3146
3456
  ]
3147
3457
 
3148
3458
  [[package]]
3149
3459
  name = "wasm-bindgen-shared"
3150
- version = "0.2.105"
3460
+ version = "0.2.106"
3151
3461
  source = "registry+https://github.com/rust-lang/crates.io-index"
3152
- checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
3462
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3153
3463
  dependencies = [
3154
3464
  "unicode-ident",
3155
3465
  ]
3156
3466
 
3157
3467
  [[package]]
3158
3468
  name = "wasm-bindgen-test"
3159
- version = "0.3.55"
3469
+ version = "0.3.56"
3160
3470
  source = "registry+https://github.com/rust-lang/crates.io-index"
3161
- checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
3471
+ checksum = "25e90e66d265d3a1efc0e72a54809ab90b9c0c515915c67cdf658689d2c22c6c"
3162
3472
  dependencies = [
3473
+ "async-trait",
3474
+ "cast",
3163
3475
  "js-sys",
3476
+ "libm",
3164
3477
  "minicov",
3478
+ "nu-ansi-term",
3479
+ "num-traits",
3480
+ "oorandom",
3481
+ "serde",
3482
+ "serde_json",
3165
3483
  "wasm-bindgen",
3166
3484
  "wasm-bindgen-futures",
3167
3485
  "wasm-bindgen-test-macro",
@@ -3169,25 +3487,43 @@ dependencies = [
3169
3487
 
3170
3488
  [[package]]
3171
3489
  name = "wasm-bindgen-test-macro"
3172
- version = "0.3.55"
3490
+ version = "0.3.56"
3173
3491
  source = "registry+https://github.com/rust-lang/crates.io-index"
3174
- checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
3492
+ checksum = "7150335716dce6028bead2b848e72f47b45e7b9422f64cccdc23bedca89affc1"
3175
3493
  dependencies = [
3176
3494
  "proc-macro2",
3177
3495
  "quote",
3178
- "syn 2.0.110",
3496
+ "syn 2.0.111",
3179
3497
  ]
3180
3498
 
3181
3499
  [[package]]
3182
3500
  name = "web-sys"
3183
- version = "0.3.82"
3501
+ version = "0.3.83"
3184
3502
  source = "registry+https://github.com/rust-lang/crates.io-index"
3185
- checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
3503
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3186
3504
  dependencies = [
3187
3505
  "js-sys",
3188
3506
  "wasm-bindgen",
3189
3507
  ]
3190
3508
 
3509
+ [[package]]
3510
+ name = "wee_alloc"
3511
+ version = "0.4.5"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
3514
+ dependencies = [
3515
+ "cfg-if 0.1.10",
3516
+ "libc",
3517
+ "memory_units",
3518
+ "winapi",
3519
+ ]
3520
+
3521
+ [[package]]
3522
+ name = "weezl"
3523
+ version = "0.1.12"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
3526
+
3191
3527
  [[package]]
3192
3528
  name = "which"
3193
3529
  version = "4.4.2"
@@ -3252,7 +3588,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3252
3588
  dependencies = [
3253
3589
  "proc-macro2",
3254
3590
  "quote",
3255
- "syn 2.0.110",
3591
+ "syn 2.0.111",
3256
3592
  ]
3257
3593
 
3258
3594
  [[package]]
@@ -3263,7 +3599,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3263
3599
  dependencies = [
3264
3600
  "proc-macro2",
3265
3601
  "quote",
3266
- "syn 2.0.110",
3602
+ "syn 2.0.111",
3267
3603
  ]
3268
3604
 
3269
3605
  [[package]]
@@ -3448,9 +3784,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3448
3784
 
3449
3785
  [[package]]
3450
3786
  name = "winnow"
3451
- version = "0.7.13"
3787
+ version = "0.7.14"
3452
3788
  source = "registry+https://github.com/rust-lang/crates.io-index"
3453
- checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
3789
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3454
3790
  dependencies = [
3455
3791
  "memchr",
3456
3792
  ]
@@ -3474,7 +3810,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
3810
  checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3475
3811
  dependencies = [
3476
3812
  "libc",
3477
- "rustix 1.1.2",
3813
+ "rustix 1.1.3",
3478
3814
  ]
3479
3815
 
3480
3816
  [[package]]
@@ -3496,28 +3832,28 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3496
3832
  dependencies = [
3497
3833
  "proc-macro2",
3498
3834
  "quote",
3499
- "syn 2.0.110",
3835
+ "syn 2.0.111",
3500
3836
  "synstructure",
3501
3837
  ]
3502
3838
 
3503
3839
  [[package]]
3504
3840
  name = "zerocopy"
3505
- version = "0.8.27"
3841
+ version = "0.8.31"
3506
3842
  source = "registry+https://github.com/rust-lang/crates.io-index"
3507
- checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
3843
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3508
3844
  dependencies = [
3509
3845
  "zerocopy-derive",
3510
3846
  ]
3511
3847
 
3512
3848
  [[package]]
3513
3849
  name = "zerocopy-derive"
3514
- version = "0.8.27"
3850
+ version = "0.8.31"
3515
3851
  source = "registry+https://github.com/rust-lang/crates.io-index"
3516
- checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
3852
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3517
3853
  dependencies = [
3518
3854
  "proc-macro2",
3519
3855
  "quote",
3520
- "syn 2.0.110",
3856
+ "syn 2.0.111",
3521
3857
  ]
3522
3858
 
3523
3859
  [[package]]
@@ -3537,7 +3873,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3537
3873
  dependencies = [
3538
3874
  "proc-macro2",
3539
3875
  "quote",
3540
- "syn 2.0.110",
3876
+ "syn 2.0.111",
3541
3877
  "synstructure",
3542
3878
  ]
3543
3879
 
@@ -3571,7 +3907,7 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3571
3907
  dependencies = [
3572
3908
  "proc-macro2",
3573
3909
  "quote",
3574
- "syn 2.0.110",
3910
+ "syn 2.0.111",
3575
3911
  ]
3576
3912
 
3577
3913
  [[package]]
@@ -3614,9 +3950,15 @@ dependencies = [
3614
3950
 
3615
3951
  [[package]]
3616
3952
  name = "zlib-rs"
3617
- version = "0.5.2"
3953
+ version = "0.5.5"
3618
3954
  source = "registry+https://github.com/rust-lang/crates.io-index"
3619
- checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
3955
+ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
3956
+
3957
+ [[package]]
3958
+ name = "zmij"
3959
+ version = "0.1.7"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "9e404bcd8afdaf006e529269d3e85a743f9480c3cef60034d77860d02964f3ba"
3620
3962
 
3621
3963
  [[package]]
3622
3964
  name = "zopfli"
@@ -3676,3 +4018,12 @@ dependencies = [
3676
4018
  "cc",
3677
4019
  "pkg-config",
3678
4020
  ]
4021
+
4022
+ [[package]]
4023
+ name = "zune-inflate"
4024
+ version = "0.2.54"
4025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4026
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
4027
+ dependencies = [
4028
+ "simd-adler32",
4029
+ ]