nucleation 0.1.142__tar.gz → 0.1.144__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 (483) hide show
  1. {nucleation-0.1.142 → nucleation-0.1.144}/Cargo.lock +123 -3
  2. {nucleation-0.1.142 → nucleation-0.1.144}/Cargo.toml +7 -1
  3. {nucleation-0.1.142 → nucleation-0.1.144}/PKG-INFO +1 -1
  4. nucleation-0.1.144/nucleation.h +515 -0
  5. nucleation-0.1.144/nucleation.pyi +1698 -0
  6. {nucleation-0.1.142 → nucleation-0.1.144}/pre-push.sh +20 -0
  7. {nucleation-0.1.142 → nucleation-0.1.144}/pyproject.toml +1 -1
  8. nucleation-0.1.144/release-artifacts/libnucleation-macos-arm64.dylib +0 -0
  9. nucleation-0.1.144/release-artifacts/libnucleation-macos-x64.dylib +0 -0
  10. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/libnucleation.rlib +0 -0
  11. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/nucleation-original.js +76 -0
  12. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/nucleation.d.ts +36 -22
  13. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/nucleation_bg.wasm +0 -0
  14. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/nucleation_bg.wasm.d.ts +26 -22
  15. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/package.json +1 -1
  16. nucleation-0.1.144/simple_cube.litematic +0 -0
  17. nucleation-0.1.144/src/ffi.rs +3099 -0
  18. {nucleation-0.1.142 → nucleation-0.1.144}/src/lib.rs +2 -0
  19. nucleation-0.1.144/src/meshing/mod.rs +618 -0
  20. nucleation-0.1.144/src/python/meshing.rs +504 -0
  21. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/mod.rs +16 -0
  22. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/schematic.rs +153 -0
  23. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/building.rs +54 -0
  24. nucleation-0.1.144/src/wasm/meshing.rs +393 -0
  25. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/mod.rs +8 -0
  26. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/schematic.rs +25 -0
  27. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/schematic_builder.rs +34 -0
  28. nucleation-0.1.144/test_schematic.schem +0 -0
  29. nucleation-0.1.144/tests/samples/auto_register.schem +0 -0
  30. nucleation-0.1.144/tools/api_parity_exclusions.txt +126 -0
  31. nucleation-0.1.144/tools/check_api_parity.rs +1524 -0
  32. nucleation-0.1.142/examples/bracket_notation.rs +0 -60
  33. nucleation-0.1.142/examples/build_adder.rs +0 -276
  34. nucleation-0.1.142/examples/build_test_adder.rs +0 -87
  35. nucleation-0.1.142/examples/building_benchmark.rs +0 -217
  36. nucleation-0.1.142/examples/check_adder_dims.rs +0 -72
  37. nucleation-0.1.142/examples/connect4_battle_setup.rs +0 -204
  38. nucleation-0.1.142/examples/create_simple_litematic.rs +0 -41
  39. nucleation-0.1.142/examples/custom_io_signals.rs +0 -119
  40. nucleation-0.1.142/examples/ffi.md +0 -76
  41. nucleation-0.1.142/examples/generate_gradient_samples.rs +0 -93
  42. nucleation-0.1.142/examples/generate_nice_gradients.rs +0 -82
  43. nucleation-0.1.142/examples/generate_solid_color_tests.rs +0 -207
  44. nucleation-0.1.142/examples/inspect_blockpedia.rs +0 -16
  45. nucleation-0.1.142/examples/python.md +0 -108
  46. nucleation-0.1.142/examples/python_benchmark.py +0 -103
  47. nucleation-0.1.142/examples/python_simulation.py +0 -55
  48. nucleation-0.1.142/examples/rust.md +0 -162
  49. nucleation-0.1.142/examples/rust_fluent_api.rs +0 -50
  50. nucleation-0.1.142/examples/test_asymmetric_cubes.rs +0 -169
  51. nucleation-0.1.142/examples/test_checkerboard.rs +0 -118
  52. nucleation-0.1.142/examples/test_unicode_circuit.rs +0 -133
  53. nucleation-0.1.142/examples/universal_schematic_overhead.rs +0 -244
  54. nucleation-0.1.142/examples/wasm.md +0 -228
  55. nucleation-0.1.142/nucleation.pyi +0 -504
  56. nucleation-0.1.142/release-artifacts/libnucleation-macos-arm64.dylib +0 -0
  57. nucleation-0.1.142/release-artifacts/libnucleation-macos-x64.dylib +0 -0
  58. nucleation-0.1.142/simple_cube.litematic +0 -0
  59. nucleation-0.1.142/src/ffi.rs +0 -991
  60. nucleation-0.1.142/test_schematic.schem +0 -0
  61. nucleation-0.1.142/tests/samples/auto_register.schem +0 -0
  62. {nucleation-0.1.142 → nucleation-0.1.144}/.DS_Store +0 -0
  63. {nucleation-0.1.142 → nucleation-0.1.144}/.cargo/config.toml +0 -0
  64. {nucleation-0.1.142 → nucleation-0.1.144}/.github/workflows/ci.yml +0 -0
  65. {nucleation-0.1.142 → nucleation-0.1.144}/.gitignore +0 -0
  66. {nucleation-0.1.142 → nucleation-0.1.144}/.idea/.gitignore +0 -0
  67. {nucleation-0.1.142 → nucleation-0.1.144}/.idea/minecraft_schematic_utils.iml +0 -0
  68. {nucleation-0.1.142 → nucleation-0.1.144}/.idea/misc.xml +0 -0
  69. {nucleation-0.1.142 → nucleation-0.1.144}/.idea/modules.xml +0 -0
  70. {nucleation-0.1.142 → nucleation-0.1.144}/.idea/vcs.xml +0 -0
  71. {nucleation-0.1.142 → nucleation-0.1.144}/4bit_adder.litematic +0 -0
  72. {nucleation-0.1.142 → nucleation-0.1.144}/Dockerfile +0 -0
  73. {nucleation-0.1.142 → nucleation-0.1.144}/LICENSE +0 -0
  74. {nucleation-0.1.142 → nucleation-0.1.144}/README.md +0 -0
  75. {nucleation-0.1.142 → nucleation-0.1.144}/WARP.md +0 -0
  76. {nucleation-0.1.142 → nucleation-0.1.144}/benches/performance_test.rs +0 -0
  77. {nucleation-0.1.142 → nucleation-0.1.144}/benches/schematic_bench.rs +0 -0
  78. {nucleation-0.1.142 → nucleation-0.1.144}/build-ffi.sh +0 -0
  79. {nucleation-0.1.142 → nucleation-0.1.144}/build-wasm.sh +0 -0
  80. {nucleation-0.1.142 → nucleation-0.1.144}/docs/README.md +0 -0
  81. {nucleation-0.1.142 → nucleation-0.1.144}/docs/building/README.md +0 -0
  82. {nucleation-0.1.142 → nucleation-0.1.144}/docs/insign-io-integration.md +0 -0
  83. {nucleation-0.1.142 → nucleation-0.1.144}/docs/javascript/README.md +0 -0
  84. {nucleation-0.1.142 → nucleation-0.1.144}/docs/python/README.md +0 -0
  85. {nucleation-0.1.142 → nucleation-0.1.144}/docs/rust/README.md +0 -0
  86. {nucleation-0.1.142 → nucleation-0.1.144}/docs/shared/guide/circuit-api.md +0 -0
  87. {nucleation-0.1.142 → nucleation-0.1.144}/docs/shared/guide/definition-region.md +0 -0
  88. {nucleation-0.1.142 → nucleation-0.1.144}/docs/shared/guide/schematic-builder.md +0 -0
  89. {nucleation-0.1.142 → nucleation-0.1.144}/docs/shared/guide/typed-executor.md +0 -0
  90. {nucleation-0.1.142 → nucleation-0.1.144}/docs/shared/unicode-palette.md +0 -0
  91. {nucleation-0.1.142 → nucleation-0.1.144}/helf_adder.litematic +0 -0
  92. {nucleation-0.1.142 → nucleation-0.1.144}/insign.d.ts +0 -0
  93. {nucleation-0.1.142 → nucleation-0.1.144}/nucleation-stubs.php +0 -0
  94. {nucleation-0.1.142 → nucleation-0.1.144}/output/.DS_Store +0 -0
  95. {nucleation-0.1.142 → nucleation-0.1.144}/output/full_adder.litematic +0 -0
  96. {nucleation-0.1.142 → nucleation-0.1.144}/py.typed +0 -0
  97. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/LICENSE +0 -0
  98. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/README.md +0 -0
  99. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/libnucleation.d +0 -0
  100. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/nucleation-cdn-loader.js +0 -0
  101. {nucleation-0.1.142 → nucleation-0.1.144}/release-artifacts/nucleation.js +0 -0
  102. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/generated/d_latch.litematic +0 -0
  103. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/generated/xor.schem +0 -0
  104. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/comparator_subtract_bug1.txt +0 -0
  105. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/comparator_subtract_bug2.txt +0 -0
  106. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/comparator_subtract_simple.txt +0 -0
  107. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/comparator_subtract_with_signs.txt +0 -0
  108. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/d_latch.txt +0 -0
  109. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/failing_case.txt +0 -0
  110. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/full_adder.txt +0 -0
  111. {nucleation-0.1.142 → nucleation-0.1.144}/schematic_builder/templates/xor.txt +0 -0
  112. {nucleation-0.1.142 → nucleation-0.1.144}/scripts/update-stubs.sh +0 -0
  113. {nucleation-0.1.142 → nucleation-0.1.144}/src/bin/schematic-builder.rs +0 -0
  114. {nucleation-0.1.142 → nucleation-0.1.144}/src/block_entity/generic.rs +0 -0
  115. {nucleation-0.1.142 → nucleation-0.1.144}/src/block_entity/mod.rs +0 -0
  116. {nucleation-0.1.142 → nucleation-0.1.144}/src/block_position.rs +0 -0
  117. {nucleation-0.1.142 → nucleation-0.1.144}/src/block_state.rs +0 -0
  118. {nucleation-0.1.142 → nucleation-0.1.144}/src/bounding_box.rs +0 -0
  119. {nucleation-0.1.142 → nucleation-0.1.144}/src/building/brushes.rs +0 -0
  120. {nucleation-0.1.142 → nucleation-0.1.144}/src/building/enums.rs +0 -0
  121. {nucleation-0.1.142 → nucleation-0.1.144}/src/building/mod.rs +0 -0
  122. {nucleation-0.1.142 → nucleation-0.1.144}/src/building/shapes.rs +0 -0
  123. {nucleation-0.1.142 → nucleation-0.1.144}/src/chunk.rs +0 -0
  124. {nucleation-0.1.142 → nucleation-0.1.144}/src/definition_region.rs +0 -0
  125. {nucleation-0.1.142 → nucleation-0.1.144}/src/entity.rs +0 -0
  126. {nucleation-0.1.142 → nucleation-0.1.144}/src/formats/litematic.rs +0 -0
  127. {nucleation-0.1.142 → nucleation-0.1.144}/src/formats/manager.rs +0 -0
  128. {nucleation-0.1.142 → nucleation-0.1.144}/src/formats/mcstructure.rs +0 -0
  129. {nucleation-0.1.142 → nucleation-0.1.144}/src/formats/mod.rs +0 -0
  130. {nucleation-0.1.142 → nucleation-0.1.144}/src/formats/schematic.rs +0 -0
  131. {nucleation-0.1.142 → nucleation-0.1.144}/src/formats/sponge_schematic_v3.md +0 -0
  132. {nucleation-0.1.142 → nucleation-0.1.144}/src/insign.rs +0 -0
  133. {nucleation-0.1.142 → nucleation-0.1.144}/src/item/mod.rs +0 -0
  134. {nucleation-0.1.142 → nucleation-0.1.144}/src/item/stack.rs +0 -0
  135. {nucleation-0.1.142 → nucleation-0.1.144}/src/metadata.rs +0 -0
  136. {nucleation-0.1.142 → nucleation-0.1.144}/src/nbt/mod.rs +0 -0
  137. {nucleation-0.1.142 → nucleation-0.1.144}/src/php.rs +0 -0
  138. {nucleation-0.1.142 → nucleation-0.1.144}/src/print_utils.rs +0 -0
  139. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/building.rs +0 -0
  140. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/circuit_builder.rs +0 -0
  141. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/definition_region.rs +0 -0
  142. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/schematic_builder.rs +0 -0
  143. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/simulation.rs +0 -0
  144. {nucleation-0.1.142 → nucleation-0.1.144}/src/python/typed_executor.rs +0 -0
  145. {nucleation-0.1.142 → nucleation-0.1.144}/src/region.rs +0 -0
  146. {nucleation-0.1.142 → nucleation-0.1.144}/src/schematic_builder/palettes.rs +0 -0
  147. {nucleation-0.1.142 → nucleation-0.1.144}/src/schematic_builder.rs +0 -0
  148. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/circuit_builder.rs +0 -0
  149. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/mchprs_world.rs +0 -0
  150. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/mod.rs +0 -0
  151. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/tests.rs +0 -0
  152. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/truth_table.rs +0 -0
  153. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/executor.rs +0 -0
  154. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/insign_io.rs +0 -0
  155. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/integration_tests.rs +0 -0
  156. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/io_layout_builder.rs +0 -0
  157. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/io_mapping.rs +0 -0
  158. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/io_type.rs +0 -0
  159. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/layout_function.rs +0 -0
  160. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/mod.rs +0 -0
  161. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/sort_strategy.rs +0 -0
  162. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/tests.rs +0 -0
  163. {nucleation-0.1.142 → nucleation-0.1.144}/src/simulation/typed_executor/value.rs +0 -0
  164. {nucleation-0.1.142 → nucleation-0.1.144}/src/transforms.rs +0 -0
  165. {nucleation-0.1.142 → nucleation-0.1.144}/src/universal_schematic.rs +0 -0
  166. {nucleation-0.1.142 → nucleation-0.1.144}/src/utils/block_string.rs +0 -0
  167. {nucleation-0.1.142 → nucleation-0.1.144}/src/utils/container_spec.rs +0 -0
  168. {nucleation-0.1.142 → nucleation-0.1.144}/src/utils/enhanced_nbt_parser.rs +0 -0
  169. {nucleation-0.1.142 → nucleation-0.1.144}/src/utils/mod.rs +0 -0
  170. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/circuit_builder.rs +0 -0
  171. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/definition_region.rs +0 -0
  172. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/palettes.rs +0 -0
  173. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/simulation.rs +0 -0
  174. {nucleation-0.1.142 → nucleation-0.1.144}/src/wasm/typed_executor.rs +0 -0
  175. {nucleation-0.1.142 → nucleation-0.1.144}/test-wasm.sh +0 -0
  176. {nucleation-0.1.142 → nucleation-0.1.144}/test_adder.litematic +0 -0
  177. {nucleation-0.1.142 → nucleation-0.1.144}/test_circuit.txt +0 -0
  178. {nucleation-0.1.142 → nucleation-0.1.144}/test_cli_output.litematic +0 -0
  179. {nucleation-0.1.142 → nucleation-0.1.144}/test_count_format.schem +0 -0
  180. {nucleation-0.1.142 → nucleation-0.1.144}/test_enhanced.schem +0 -0
  181. {nucleation-0.1.142 → nucleation-0.1.144}/test_fixed.schem +0 -0
  182. {nucleation-0.1.142 → nucleation-0.1.144}/tests/.DS_Store +0 -0
  183. {nucleation-0.1.142 → nucleation-0.1.144}/tests/barrel_nbt_test.rs +0 -0
  184. {nucleation-0.1.142 → nucleation-0.1.144}/tests/bedrock_conversion_tests.rs +0 -0
  185. {nucleation-0.1.142 → nucleation-0.1.144}/tests/building_tests.rs +0 -0
  186. {nucleation-0.1.142 → nucleation-0.1.144}/tests/connect4_test.js +0 -0
  187. {nucleation-0.1.142 → nucleation-0.1.144}/tests/debug_flip.rs +0 -0
  188. {nucleation-0.1.142 → nucleation-0.1.144}/tests/definition_regions_test.rs +0 -0
  189. {nucleation-0.1.142 → nucleation-0.1.144}/tests/executor_config_test.js +0 -0
  190. {nucleation-0.1.142 → nucleation-0.1.144}/tests/integration_tests.rs +0 -0
  191. {nucleation-0.1.142 → nucleation-0.1.144}/tests/mchprs_state_test.rs +0 -0
  192. {nucleation-0.1.142 → nucleation-0.1.144}/tests/mcstructure_tests.rs +0 -0
  193. {nucleation-0.1.142 → nucleation-0.1.144}/tests/nbt_parsing_test.rs +0 -0
  194. {nucleation-0.1.142 → nucleation-0.1.144}/tests/node_fluent_api_test.mjs +0 -0
  195. {nucleation-0.1.142 → nucleation-0.1.144}/tests/node_simple_circuit_test.js +0 -0
  196. {nucleation-0.1.142 → nucleation-0.1.144}/tests/node_simple_circuit_test.mjs +0 -0
  197. {nucleation-0.1.142 → nucleation-0.1.144}/tests/node_wasm_test.js +0 -0
  198. {nucleation-0.1.142 → nucleation-0.1.144}/tests/package.json +0 -0
  199. {nucleation-0.1.142 → nucleation-0.1.144}/tests/php-stubs-test.php +0 -0
  200. {nucleation-0.1.142 → nucleation-0.1.144}/tests/property_transformation_demo.rs +0 -0
  201. {nucleation-0.1.142 → nucleation-0.1.144}/tests/python_simple_circuit_test.py +0 -0
  202. {nucleation-0.1.142 → nucleation-0.1.144}/tests/python_test.py +0 -0
  203. {nucleation-0.1.142 → nucleation-0.1.144}/tests/registry_tests.rs +0 -0
  204. {nucleation-0.1.142 → nucleation-0.1.144}/tests/reproduce_bug.rs +0 -0
  205. {nucleation-0.1.142 → nucleation-0.1.144}/tests/rust_fluent_api_test.rs +0 -0
  206. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/16-bit_divider.mcstructure +0 -0
  207. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/1x1.litematic +0 -0
  208. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/3x2x3.litematic +0 -0
  209. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/3x3.litematic +0 -0
  210. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/4x2x4.litematic +0 -0
  211. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/4x4x4+1.litematic +0 -0
  212. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/8-bit_alu.mcstructure +0 -0
  213. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/Evaluator.schem +0 -0
  214. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/all_items.litematic +0 -0
  215. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/and.schem +0 -0
  216. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/auto_register.mcstructure +0 -0
  217. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/brewer.litematic +0 -0
  218. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/c4_ai_last_played.schem +0 -0
  219. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/c4_ai_left_most.schem +0 -0
  220. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/cutecounter.schem +0 -0
  221. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/door_plot.litematic +0 -0
  222. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/file.litematic.l +0 -0
  223. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/flip-flop.mcstructure +0 -0
  224. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/gol.litematic +0 -0
  225. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/large_schematic.schem +0 -0
  226. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/linear_plotter.litematic +0 -0
  227. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/litematic-rose-farm.litematic +0 -0
  228. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/new_chest_test.schem +0 -0
  229. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/quarry.litematic +0 -0
  230. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/sample.litematic +0 -0
  231. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/sample.schem +0 -0
  232. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/spinny.litematic +0 -0
  233. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/ss-sorter.litematic +0 -0
  234. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/storage_thingy.litematic +0 -0
  235. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/test_coordinate_thingy.litematic +0 -0
  236. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/test_cube.schem +0 -0
  237. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/trencher.litematic +0 -0
  238. {nucleation-0.1.142 → nucleation-0.1.144}/tests/samples/wool_palette.litematic +0 -0
  239. {nucleation-0.1.142 → nucleation-0.1.144}/tests/simple_wasm_test.rs +0 -0
  240. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_barrel_hopper_simulation.rs +0 -0
  241. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_chunk_bounds_bug.rs +0 -0
  242. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_comparator_diagonal_bug.rs +0 -0
  243. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_comparator_subtract_bug.rs +0 -0
  244. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_comparator_subtract_executor.rs +0 -0
  245. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_custom_io_adjacent_bug.rs +0 -0
  246. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_custom_io_no_power_bug.rs +0 -0
  247. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_intermediate_wire_sync.rs +0 -0
  248. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_long_wire.rs +0 -0
  249. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_nibble_signal_strength.rs +0 -0
  250. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_region_expansion_bugs.rs +0 -0
  251. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_repeater_chain_sync.rs +0 -0
  252. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_repeater_custom_io_bug.rs +0 -0
  253. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_simulation_with_tight_bounds.rs +0 -0
  254. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_two_inputs_exact_topology.rs +0 -0
  255. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_two_inputs_no_output_bug.rs +0 -0
  256. {nucleation-0.1.142 → nucleation-0.1.144}/tests/test_typed_executor_sync_output_bug.rs +0 -0
  257. {nucleation-0.1.142 → nucleation-0.1.144}/tests/transformation_tests.rs +0 -0
  258. {nucleation-0.1.142 → nucleation-0.1.144}/tests/wasm_node_tests.rs +0 -0
  259. {nucleation-0.1.142 → nucleation-0.1.144}/tests/wasm_tests.rs +0 -0
  260. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/bun.lockb +0 -0
  261. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/index.html +0 -0
  262. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/index.js +0 -0
  263. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/minecraft_schematic_utils.js +0 -0
  264. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/minecraft_schematic_utils_bg.wasm +0 -0
  265. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/LICENSE +0 -0
  266. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/README.md +0 -0
  267. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/assert/strict.d.ts +0 -0
  268. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/assert.d.ts +0 -0
  269. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/async_hooks.d.ts +0 -0
  270. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/buffer.d.ts +0 -0
  271. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/child_process.d.ts +0 -0
  272. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/cluster.d.ts +0 -0
  273. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/console.d.ts +0 -0
  274. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/constants.d.ts +0 -0
  275. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/crypto.d.ts +0 -0
  276. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/dgram.d.ts +0 -0
  277. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/diagnostics_channel.d.ts +0 -0
  278. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/dns/promises.d.ts +0 -0
  279. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/dns.d.ts +0 -0
  280. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/dom-events.d.ts +0 -0
  281. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/domain.d.ts +0 -0
  282. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/events.d.ts +0 -0
  283. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/fs/promises.d.ts +0 -0
  284. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/fs.d.ts +0 -0
  285. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/globals.d.ts +0 -0
  286. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/globals.global.d.ts +0 -0
  287. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/http.d.ts +0 -0
  288. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/http2.d.ts +0 -0
  289. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/https.d.ts +0 -0
  290. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/index.d.ts +0 -0
  291. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/inspector.d.ts +0 -0
  292. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/module.d.ts +0 -0
  293. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/net.d.ts +0 -0
  294. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/os.d.ts +0 -0
  295. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/package.json +0 -0
  296. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/path.d.ts +0 -0
  297. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/perf_hooks.d.ts +0 -0
  298. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/process.d.ts +0 -0
  299. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/punycode.d.ts +0 -0
  300. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/querystring.d.ts +0 -0
  301. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/readline/promises.d.ts +0 -0
  302. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/readline.d.ts +0 -0
  303. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/repl.d.ts +0 -0
  304. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/sea.d.ts +0 -0
  305. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/stream/consumers.d.ts +0 -0
  306. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/stream/promises.d.ts +0 -0
  307. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/stream/web.d.ts +0 -0
  308. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/stream.d.ts +0 -0
  309. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/string_decoder.d.ts +0 -0
  310. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/test.d.ts +0 -0
  311. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/timers/promises.d.ts +0 -0
  312. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/timers.d.ts +0 -0
  313. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/tls.d.ts +0 -0
  314. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/trace_events.d.ts +0 -0
  315. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/tty.d.ts +0 -0
  316. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/url.d.ts +0 -0
  317. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/util.d.ts +0 -0
  318. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/v8.d.ts +0 -0
  319. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/vm.d.ts +0 -0
  320. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/wasi.d.ts +0 -0
  321. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/worker_threads.d.ts +0 -0
  322. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/node/zlib.d.ts +0 -0
  323. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/LICENSE +0 -0
  324. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/README.md +0 -0
  325. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/index.d.mts +0 -0
  326. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/index.d.ts +0 -0
  327. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/LICENSE +0 -0
  328. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/README.md +0 -0
  329. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/assert/strict.d.ts +0 -0
  330. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/assert.d.ts +0 -0
  331. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/async_hooks.d.ts +0 -0
  332. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/buffer.d.ts +0 -0
  333. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/child_process.d.ts +0 -0
  334. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/cluster.d.ts +0 -0
  335. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/console.d.ts +0 -0
  336. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/constants.d.ts +0 -0
  337. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/crypto.d.ts +0 -0
  338. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dgram.d.ts +0 -0
  339. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/diagnostics_channel.d.ts +0 -0
  340. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dns/promises.d.ts +0 -0
  341. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dns.d.ts +0 -0
  342. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/dom-events.d.ts +0 -0
  343. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/domain.d.ts +0 -0
  344. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/events.d.ts +0 -0
  345. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/fs/promises.d.ts +0 -0
  346. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/fs.d.ts +0 -0
  347. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/globals.d.ts +0 -0
  348. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/globals.global.d.ts +0 -0
  349. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/http.d.ts +0 -0
  350. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/http2.d.ts +0 -0
  351. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/https.d.ts +0 -0
  352. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/index.d.ts +0 -0
  353. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/inspector.d.ts +0 -0
  354. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/module.d.ts +0 -0
  355. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/net.d.ts +0 -0
  356. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/LICENSE +0 -0
  357. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/README.md +0 -0
  358. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/agent.d.ts +0 -0
  359. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/api.d.ts +0 -0
  360. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/balanced-pool.d.ts +0 -0
  361. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/cache.d.ts +0 -0
  362. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/client.d.ts +0 -0
  363. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/connector.d.ts +0 -0
  364. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/content-type.d.ts +0 -0
  365. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/cookies.d.ts +0 -0
  366. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/diagnostics-channel.d.ts +0 -0
  367. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/dispatcher.d.ts +0 -0
  368. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -0
  369. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/errors.d.ts +0 -0
  370. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/eventsource.d.ts +0 -0
  371. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/fetch.d.ts +0 -0
  372. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/file.d.ts +0 -0
  373. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/filereader.d.ts +0 -0
  374. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/formdata.d.ts +0 -0
  375. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/global-dispatcher.d.ts +0 -0
  376. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/global-origin.d.ts +0 -0
  377. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/handlers.d.ts +0 -0
  378. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/header.d.ts +0 -0
  379. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/index.d.ts +0 -0
  380. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/interceptors.d.ts +0 -0
  381. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-agent.d.ts +0 -0
  382. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-client.d.ts +0 -0
  383. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-errors.d.ts +0 -0
  384. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-interceptor.d.ts +0 -0
  385. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/mock-pool.d.ts +0 -0
  386. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/package.json +0 -0
  387. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/patch.d.ts +0 -0
  388. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/pool-stats.d.ts +0 -0
  389. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/pool.d.ts +0 -0
  390. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/proxy-agent.d.ts +0 -0
  391. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/readable.d.ts +0 -0
  392. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/retry-agent.d.ts +0 -0
  393. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/retry-handler.d.ts +0 -0
  394. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/util.d.ts +0 -0
  395. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/webidl.d.ts +0 -0
  396. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/node_modules/undici-types/websocket.d.ts +0 -0
  397. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/os.d.ts +0 -0
  398. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/package.json +0 -0
  399. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/path.d.ts +0 -0
  400. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/perf_hooks.d.ts +0 -0
  401. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/process.d.ts +0 -0
  402. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/punycode.d.ts +0 -0
  403. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/querystring.d.ts +0 -0
  404. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/readline/promises.d.ts +0 -0
  405. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/readline.d.ts +0 -0
  406. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/repl.d.ts +0 -0
  407. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/sea.d.ts +0 -0
  408. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/sqlite.d.ts +0 -0
  409. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream/consumers.d.ts +0 -0
  410. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream/promises.d.ts +0 -0
  411. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream/web.d.ts +0 -0
  412. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/stream.d.ts +0 -0
  413. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/string_decoder.d.ts +0 -0
  414. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/test.d.ts +0 -0
  415. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/timers/promises.d.ts +0 -0
  416. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/timers.d.ts +0 -0
  417. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/tls.d.ts +0 -0
  418. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/trace_events.d.ts +0 -0
  419. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/tty.d.ts +0 -0
  420. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/url.d.ts +0 -0
  421. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/util.d.ts +0 -0
  422. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/v8.d.ts +0 -0
  423. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/vm.d.ts +0 -0
  424. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/wasi.d.ts +0 -0
  425. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/worker_threads.d.ts +0 -0
  426. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/node_modules/@types/node/zlib.d.ts +0 -0
  427. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/@types/ws/package.json +0 -0
  428. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/README.md +0 -0
  429. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/bun.d.ts +0 -0
  430. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/deprecated.d.ts +0 -0
  431. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/fetch.d.ts +0 -0
  432. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/ffi.d.ts +0 -0
  433. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/globals.d.ts +0 -0
  434. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/html-rewriter.d.ts +0 -0
  435. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/index.d.ts +0 -0
  436. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/jsc.d.ts +0 -0
  437. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/overrides.d.ts +0 -0
  438. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/package.json +0 -0
  439. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/sqlite.d.ts +0 -0
  440. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/test.d.ts +0 -0
  441. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/bun-types/wasm.d.ts +0 -0
  442. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/README.md +0 -0
  443. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/agent.d.ts +0 -0
  444. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/api.d.ts +0 -0
  445. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/balanced-pool.d.ts +0 -0
  446. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/cache.d.ts +0 -0
  447. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/client.d.ts +0 -0
  448. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/connector.d.ts +0 -0
  449. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/content-type.d.ts +0 -0
  450. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/cookies.d.ts +0 -0
  451. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/diagnostics-channel.d.ts +0 -0
  452. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/dispatcher.d.ts +0 -0
  453. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/errors.d.ts +0 -0
  454. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/fetch.d.ts +0 -0
  455. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/file.d.ts +0 -0
  456. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/filereader.d.ts +0 -0
  457. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/formdata.d.ts +0 -0
  458. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/global-dispatcher.d.ts +0 -0
  459. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/global-origin.d.ts +0 -0
  460. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/handlers.d.ts +0 -0
  461. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/header.d.ts +0 -0
  462. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/index.d.ts +0 -0
  463. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/interceptors.d.ts +0 -0
  464. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/mock-agent.d.ts +0 -0
  465. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/mock-client.d.ts +0 -0
  466. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/mock-errors.d.ts +0 -0
  467. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/mock-interceptor.d.ts +0 -0
  468. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/mock-pool.d.ts +0 -0
  469. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/package.json +0 -0
  470. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/patch.d.ts +0 -0
  471. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/pool-stats.d.ts +0 -0
  472. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/pool.d.ts +0 -0
  473. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/proxy-agent.d.ts +0 -0
  474. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/readable.d.ts +0 -0
  475. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/webidl.d.ts +0 -0
  476. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/node_modules/undici-types/websocket.d.ts +0 -0
  477. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/nucleation-web.js +0 -0
  478. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/nucleation-web_bg.wasm +0 -0
  479. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/nucleation.js +0 -0
  480. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/nucleation_bg.js +0 -0
  481. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/nucleation_bg.wasm +0 -0
  482. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/package.json +0 -0
  483. {nucleation-0.1.142 → nucleation-0.1.144}/wasm-test/server.js +0 -0
@@ -242,7 +242,7 @@ dependencies = [
242
242
  "console_error_panic_hook",
243
243
  "fastnbt",
244
244
  "flate2",
245
- "image",
245
+ "image 0.24.9",
246
246
  "js-sys",
247
247
  "palette",
248
248
  "phf",
@@ -304,6 +304,12 @@ version = "1.5.0"
304
304
  source = "registry+https://github.com/rust-lang/crates.io-index"
305
305
  checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
306
306
 
307
+ [[package]]
308
+ name = "byteorder-lite"
309
+ version = "0.1.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
312
+
307
313
  [[package]]
308
314
  name = "bzip2"
309
315
  version = "0.4.4"
@@ -1111,6 +1117,12 @@ dependencies = [
1111
1117
  "weezl",
1112
1118
  ]
1113
1119
 
1120
+ [[package]]
1121
+ name = "glam"
1122
+ version = "0.27.0"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
1125
+
1114
1126
  [[package]]
1115
1127
  name = "glob"
1116
1128
  version = "0.3.3"
@@ -1130,6 +1142,30 @@ dependencies = [
1130
1142
  "regex-syntax",
1131
1143
  ]
1132
1144
 
1145
+ [[package]]
1146
+ name = "gltf-derive"
1147
+ version = "1.4.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "14070e711538afba5d6c807edb74bcb84e5dbb9211a3bf5dea0dfab5b24f4c51"
1150
+ dependencies = [
1151
+ "inflections",
1152
+ "proc-macro2",
1153
+ "quote",
1154
+ "syn 2.0.111",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "gltf-json"
1159
+ version = "1.4.1"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "e6176f9d60a7eab0a877e8e96548605dedbde9190a7ae1e80bbcc1c9af03ab14"
1162
+ dependencies = [
1163
+ "gltf-derive",
1164
+ "serde",
1165
+ "serde_derive",
1166
+ "serde_json",
1167
+ ]
1168
+
1133
1169
  [[package]]
1134
1170
  name = "goblin"
1135
1171
  version = "0.9.3"
@@ -1381,11 +1417,24 @@ dependencies = [
1381
1417
  "gif",
1382
1418
  "jpeg-decoder",
1383
1419
  "num-traits",
1384
- "png",
1420
+ "png 0.17.16",
1385
1421
  "qoi",
1386
1422
  "tiff",
1387
1423
  ]
1388
1424
 
1425
+ [[package]]
1426
+ name = "image"
1427
+ version = "0.25.9"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1430
+ dependencies = [
1431
+ "bytemuck",
1432
+ "byteorder-lite",
1433
+ "moxcms",
1434
+ "num-traits",
1435
+ "png 0.18.0",
1436
+ ]
1437
+
1389
1438
  [[package]]
1390
1439
  name = "indexmap"
1391
1440
  version = "2.12.1"
@@ -1407,6 +1456,12 @@ dependencies = [
1407
1456
  "rustversion",
1408
1457
  ]
1409
1458
 
1459
+ [[package]]
1460
+ name = "inflections"
1461
+ version = "1.1.1"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a"
1464
+
1410
1465
  [[package]]
1411
1466
  name = "inout"
1412
1467
  version = "0.1.4"
@@ -1813,6 +1868,16 @@ dependencies = [
1813
1868
  "simd-adler32",
1814
1869
  ]
1815
1870
 
1871
+ [[package]]
1872
+ name = "moxcms"
1873
+ version = "0.7.11"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
1876
+ dependencies = [
1877
+ "num-traits",
1878
+ "pxfm",
1879
+ ]
1880
+
1816
1881
  [[package]]
1817
1882
  name = "native-tls"
1818
1883
  version = "0.2.14"
@@ -1860,7 +1925,7 @@ dependencies = [
1860
1925
 
1861
1926
  [[package]]
1862
1927
  name = "nucleation"
1863
- version = "0.1.142"
1928
+ version = "0.1.144"
1864
1929
  dependencies = [
1865
1930
  "base64",
1866
1931
  "blockpedia",
@@ -1885,6 +1950,7 @@ dependencies = [
1885
1950
  "pyo3",
1886
1951
  "quartz_nbt",
1887
1952
  "rand",
1953
+ "schematic-mesher",
1888
1954
  "serde",
1889
1955
  "serde-wasm-bindgen 0.4.5",
1890
1956
  "serde_json",
@@ -2248,6 +2314,19 @@ dependencies = [
2248
2314
  "miniz_oxide",
2249
2315
  ]
2250
2316
 
2317
+ [[package]]
2318
+ name = "png"
2319
+ version = "0.18.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
2322
+ dependencies = [
2323
+ "bitflags 2.10.0",
2324
+ "crc32fast",
2325
+ "fdeflate",
2326
+ "flate2",
2327
+ "miniz_oxide",
2328
+ ]
2329
+
2251
2330
  [[package]]
2252
2331
  name = "portable-atomic"
2253
2332
  version = "1.12.0"
@@ -2318,6 +2397,15 @@ dependencies = [
2318
2397
  "unicase",
2319
2398
  ]
2320
2399
 
2400
+ [[package]]
2401
+ name = "pxfm"
2402
+ version = "0.1.27"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
2405
+ dependencies = [
2406
+ "num-traits",
2407
+ ]
2408
+
2321
2409
  [[package]]
2322
2410
  name = "pyo3"
2323
2411
  version = "0.25.1"
@@ -2661,6 +2749,21 @@ dependencies = [
2661
2749
  "windows-sys 0.61.2",
2662
2750
  ]
2663
2751
 
2752
+ [[package]]
2753
+ name = "schematic-mesher"
2754
+ version = "0.1.0"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "ec748bb39b1a01b922abac827a9cda30b9d144acb8d8b5df7353fd38842853e7"
2757
+ dependencies = [
2758
+ "glam",
2759
+ "gltf-json",
2760
+ "image 0.25.9",
2761
+ "serde",
2762
+ "serde_json",
2763
+ "thiserror 1.0.69",
2764
+ "zip 2.4.2",
2765
+ ]
2766
+
2664
2767
  [[package]]
2665
2768
  name = "scopeguard"
2666
2769
  version = "1.2.0"
@@ -3955,6 +4058,23 @@ dependencies = [
3955
4058
  "zstd 0.11.2+zstd.1.5.2",
3956
4059
  ]
3957
4060
 
4061
+ [[package]]
4062
+ name = "zip"
4063
+ version = "2.4.2"
4064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4065
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
4066
+ dependencies = [
4067
+ "arbitrary",
4068
+ "crc32fast",
4069
+ "crossbeam-utils",
4070
+ "displaydoc",
4071
+ "flate2",
4072
+ "indexmap",
4073
+ "memchr",
4074
+ "thiserror 2.0.17",
4075
+ "zopfli",
4076
+ ]
4077
+
3958
4078
  [[package]]
3959
4079
  name = "zip"
3960
4080
  version = "6.0.0"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "nucleation"
3
- version = "0.1.142"
3
+ version = "0.1.144"
4
4
  edition = "2021"
5
5
  description = "A high-performance Minecraft schematic parser and utility library"
6
6
  authors = ["Nano nano@schem.at"]
@@ -9,6 +9,7 @@ repository = "https://github.com/Schem-at/Nucleation"
9
9
  readme = "README.md"
10
10
  keywords = ["minecraft", "schematic", "parser", "voxel"]
11
11
  categories = ["game-development", "parser-implementations", "wasm"]
12
+ exclude = ["web/", "examples/", "test-schematics/"]
12
13
 
13
14
  [lib]
14
15
  crate-type = ["cdylib", "rlib"]
@@ -34,6 +35,8 @@ simulation = [
34
35
  "mchprs_world",
35
36
  "mchprs_blocks",
36
37
  ]
38
+ # Meshing support - generate 3D meshes from schematics
39
+ meshing = ["schematic-mesher"]
37
40
 
38
41
  [dependencies]
39
42
  serde = { version = "1.0", features = ["derive"] }
@@ -69,6 +72,9 @@ ext-php-rs = { version = "0.13.1", optional = true }
69
72
 
70
73
  bytemuck = "1.23.1"
71
74
 
75
+ # Meshing dependencies - optional
76
+ schematic-mesher = { version = "0.1", optional = true }
77
+
72
78
  # Simulation (MCHPRS) dependencies - optional
73
79
  # Note: These are git dependencies and will be excluded from crates.io publish
74
80
  # Using Nano112's MCHPRS fork with custom IO support and bug fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nucleation
3
- Version: 0.1.142
3
+ Version: 0.1.144
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3