@bloomengine/engine 0.3.1

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 (562) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +169 -0
  3. package/native/android/Cargo.lock +1848 -0
  4. package/native/android/Cargo.toml +20 -0
  5. package/native/android/src/lib.rs +1747 -0
  6. package/native/ios/Cargo.lock +1688 -0
  7. package/native/ios/Cargo.toml +19 -0
  8. package/native/ios/src/lib.rs +2258 -0
  9. package/native/linux/Cargo.lock +1719 -0
  10. package/native/linux/Cargo.toml +22 -0
  11. package/native/linux/src/lib.rs +2236 -0
  12. package/native/macos/Cargo.lock +3310 -0
  13. package/native/macos/Cargo.toml +29 -0
  14. package/native/macos/src/lib.rs +3444 -0
  15. package/native/shared/Cargo.lock +1898 -0
  16. package/native/shared/Cargo.toml +42 -0
  17. package/native/shared/assets/default_font.ttf +0 -0
  18. package/native/shared/build.rs +77 -0
  19. package/native/shared/shaders/common/fog.wgsl +16 -0
  20. package/native/shared/shaders/common/imposter.wgsl +112 -0
  21. package/native/shared/shaders/common/pbr.wgsl +186 -0
  22. package/native/shared/shaders/common/shadows.wgsl +77 -0
  23. package/native/shared/shaders/common/sky.wgsl +8 -0
  24. package/native/shared/shaders/common/tonemap.wgsl +25 -0
  25. package/native/shared/shaders/impulse_field.wgsl +53 -0
  26. package/native/shared/shaders/material_abi.wgsl +360 -0
  27. package/native/shared/shaders/materials/test_minimal.wgsl +42 -0
  28. package/native/shared/src/audio.rs +363 -0
  29. package/native/shared/src/custom_shaders.rs +104 -0
  30. package/native/shared/src/drs.rs +211 -0
  31. package/native/shared/src/engine.rs +186 -0
  32. package/native/shared/src/frame_callbacks.rs +88 -0
  33. package/native/shared/src/geometry.rs +236 -0
  34. package/native/shared/src/handles.rs +76 -0
  35. package/native/shared/src/input.rs +273 -0
  36. package/native/shared/src/jolt_sys.rs +822 -0
  37. package/native/shared/src/lib.rs +43 -0
  38. package/native/shared/src/models.rs +1941 -0
  39. package/native/shared/src/physics_jolt.rs +1528 -0
  40. package/native/shared/src/picking.rs +298 -0
  41. package/native/shared/src/postfx.rs +339 -0
  42. package/native/shared/src/profiler.rs +416 -0
  43. package/native/shared/src/renderer/atmosphere_lut.rs +573 -0
  44. package/native/shared/src/renderer/brdf_lut.rs +154 -0
  45. package/native/shared/src/renderer/formats.rs +778 -0
  46. package/native/shared/src/renderer/graph.rs +465 -0
  47. package/native/shared/src/renderer/hot_reload.rs +390 -0
  48. package/native/shared/src/renderer/impulse_field.rs +455 -0
  49. package/native/shared/src/renderer/material_pipeline.rs +604 -0
  50. package/native/shared/src/renderer/material_system.rs +2106 -0
  51. package/native/shared/src/renderer/mod.rs +13923 -0
  52. package/native/shared/src/renderer/planar_reflection.rs +458 -0
  53. package/native/shared/src/renderer/post_pass.rs +249 -0
  54. package/native/shared/src/renderer/shader_include.rs +205 -0
  55. package/native/shared/src/renderer/shader_library.rs +134 -0
  56. package/native/shared/src/renderer/shaders.rs +5855 -0
  57. package/native/shared/src/renderer/transient.rs +576 -0
  58. package/native/shared/src/renderer/types.rs +259 -0
  59. package/native/shared/src/renderer/util.rs +151 -0
  60. package/native/shared/src/scene.rs +1066 -0
  61. package/native/shared/src/sdf_cache.rs +274 -0
  62. package/native/shared/src/shadows.rs +551 -0
  63. package/native/shared/src/staging.rs +90 -0
  64. package/native/shared/src/string_header.rs +35 -0
  65. package/native/shared/src/text_renderer.rs +456 -0
  66. package/native/shared/src/textures.rs +154 -0
  67. package/native/third_party/JoltPhysics/Jolt/AABBTree/AABBTreeBuilder.cpp +242 -0
  68. package/native/third_party/JoltPhysics/Jolt/AABBTree/AABBTreeBuilder.h +121 -0
  69. package/native/third_party/JoltPhysics/Jolt/AABBTree/AABBTreeToBuffer.h +296 -0
  70. package/native/third_party/JoltPhysics/Jolt/AABBTree/NodeCodec/NodeCodecQuadTreeHalfFloat.h +323 -0
  71. package/native/third_party/JoltPhysics/Jolt/AABBTree/TriangleCodec/TriangleCodecIndexed8BitPackSOA4Flags.h +555 -0
  72. package/native/third_party/JoltPhysics/Jolt/ConfigurationString.h +112 -0
  73. package/native/third_party/JoltPhysics/Jolt/Core/ARMNeon.h +94 -0
  74. package/native/third_party/JoltPhysics/Jolt/Core/Array.h +713 -0
  75. package/native/third_party/JoltPhysics/Jolt/Core/Atomics.h +44 -0
  76. package/native/third_party/JoltPhysics/Jolt/Core/BinaryHeap.h +96 -0
  77. package/native/third_party/JoltPhysics/Jolt/Core/ByteBuffer.h +74 -0
  78. package/native/third_party/JoltPhysics/Jolt/Core/Color.cpp +38 -0
  79. package/native/third_party/JoltPhysics/Jolt/Core/Color.h +98 -0
  80. package/native/third_party/JoltPhysics/Jolt/Core/Core.h +652 -0
  81. package/native/third_party/JoltPhysics/Jolt/Core/FPControlWord.h +143 -0
  82. package/native/third_party/JoltPhysics/Jolt/Core/FPException.h +96 -0
  83. package/native/third_party/JoltPhysics/Jolt/Core/FPFlushDenormals.h +43 -0
  84. package/native/third_party/JoltPhysics/Jolt/Core/Factory.cpp +92 -0
  85. package/native/third_party/JoltPhysics/Jolt/Core/Factory.h +54 -0
  86. package/native/third_party/JoltPhysics/Jolt/Core/FixedSizeFreeList.h +122 -0
  87. package/native/third_party/JoltPhysics/Jolt/Core/FixedSizeFreeList.inl +215 -0
  88. package/native/third_party/JoltPhysics/Jolt/Core/HashCombine.h +234 -0
  89. package/native/third_party/JoltPhysics/Jolt/Core/HashTable.h +876 -0
  90. package/native/third_party/JoltPhysics/Jolt/Core/InsertionSort.h +58 -0
  91. package/native/third_party/JoltPhysics/Jolt/Core/IssueReporting.cpp +27 -0
  92. package/native/third_party/JoltPhysics/Jolt/Core/IssueReporting.h +38 -0
  93. package/native/third_party/JoltPhysics/Jolt/Core/JobSystem.h +311 -0
  94. package/native/third_party/JoltPhysics/Jolt/Core/JobSystem.inl +56 -0
  95. package/native/third_party/JoltPhysics/Jolt/Core/JobSystemSingleThreaded.cpp +65 -0
  96. package/native/third_party/JoltPhysics/Jolt/Core/JobSystemSingleThreaded.h +62 -0
  97. package/native/third_party/JoltPhysics/Jolt/Core/JobSystemThreadPool.cpp +364 -0
  98. package/native/third_party/JoltPhysics/Jolt/Core/JobSystemThreadPool.h +101 -0
  99. package/native/third_party/JoltPhysics/Jolt/Core/JobSystemWithBarrier.cpp +230 -0
  100. package/native/third_party/JoltPhysics/Jolt/Core/JobSystemWithBarrier.h +85 -0
  101. package/native/third_party/JoltPhysics/Jolt/Core/LinearCurve.cpp +51 -0
  102. package/native/third_party/JoltPhysics/Jolt/Core/LinearCurve.h +67 -0
  103. package/native/third_party/JoltPhysics/Jolt/Core/LockFreeHashMap.h +182 -0
  104. package/native/third_party/JoltPhysics/Jolt/Core/LockFreeHashMap.inl +351 -0
  105. package/native/third_party/JoltPhysics/Jolt/Core/Memory.cpp +85 -0
  106. package/native/third_party/JoltPhysics/Jolt/Core/Memory.h +85 -0
  107. package/native/third_party/JoltPhysics/Jolt/Core/Mutex.h +223 -0
  108. package/native/third_party/JoltPhysics/Jolt/Core/MutexArray.h +98 -0
  109. package/native/third_party/JoltPhysics/Jolt/Core/NonCopyable.h +18 -0
  110. package/native/third_party/JoltPhysics/Jolt/Core/Profiler.cpp +677 -0
  111. package/native/third_party/JoltPhysics/Jolt/Core/Profiler.h +301 -0
  112. package/native/third_party/JoltPhysics/Jolt/Core/Profiler.inl +90 -0
  113. package/native/third_party/JoltPhysics/Jolt/Core/QuickSort.h +137 -0
  114. package/native/third_party/JoltPhysics/Jolt/Core/RTTI.cpp +149 -0
  115. package/native/third_party/JoltPhysics/Jolt/Core/RTTI.h +436 -0
  116. package/native/third_party/JoltPhysics/Jolt/Core/Reference.h +244 -0
  117. package/native/third_party/JoltPhysics/Jolt/Core/Result.h +174 -0
  118. package/native/third_party/JoltPhysics/Jolt/Core/STLAlignedAllocator.h +72 -0
  119. package/native/third_party/JoltPhysics/Jolt/Core/STLAllocator.h +127 -0
  120. package/native/third_party/JoltPhysics/Jolt/Core/STLLocalAllocator.h +170 -0
  121. package/native/third_party/JoltPhysics/Jolt/Core/STLTempAllocator.h +80 -0
  122. package/native/third_party/JoltPhysics/Jolt/Core/ScopeExit.h +49 -0
  123. package/native/third_party/JoltPhysics/Jolt/Core/Semaphore.cpp +135 -0
  124. package/native/third_party/JoltPhysics/Jolt/Core/Semaphore.h +68 -0
  125. package/native/third_party/JoltPhysics/Jolt/Core/StaticArray.h +329 -0
  126. package/native/third_party/JoltPhysics/Jolt/Core/StreamIn.h +120 -0
  127. package/native/third_party/JoltPhysics/Jolt/Core/StreamOut.h +97 -0
  128. package/native/third_party/JoltPhysics/Jolt/Core/StreamUtils.h +168 -0
  129. package/native/third_party/JoltPhysics/Jolt/Core/StreamWrapper.h +53 -0
  130. package/native/third_party/JoltPhysics/Jolt/Core/StridedPtr.h +63 -0
  131. package/native/third_party/JoltPhysics/Jolt/Core/StringTools.cpp +101 -0
  132. package/native/third_party/JoltPhysics/Jolt/Core/StringTools.h +38 -0
  133. package/native/third_party/JoltPhysics/Jolt/Core/TempAllocator.h +209 -0
  134. package/native/third_party/JoltPhysics/Jolt/Core/TickCounter.cpp +37 -0
  135. package/native/third_party/JoltPhysics/Jolt/Core/TickCounter.h +58 -0
  136. package/native/third_party/JoltPhysics/Jolt/Core/UnorderedMap.h +80 -0
  137. package/native/third_party/JoltPhysics/Jolt/Core/UnorderedSet.h +32 -0
  138. package/native/third_party/JoltPhysics/Jolt/Geometry/AABox.h +313 -0
  139. package/native/third_party/JoltPhysics/Jolt/Geometry/AABox4.h +224 -0
  140. package/native/third_party/JoltPhysics/Jolt/Geometry/ClipPoly.h +200 -0
  141. package/native/third_party/JoltPhysics/Jolt/Geometry/ClosestPoint.h +498 -0
  142. package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder.cpp +1467 -0
  143. package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder.h +276 -0
  144. package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder2D.cpp +335 -0
  145. package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexHullBuilder2D.h +105 -0
  146. package/native/third_party/JoltPhysics/Jolt/Geometry/ConvexSupport.h +188 -0
  147. package/native/third_party/JoltPhysics/Jolt/Geometry/EPAConvexHullBuilder.h +845 -0
  148. package/native/third_party/JoltPhysics/Jolt/Geometry/EPAPenetrationDepth.h +557 -0
  149. package/native/third_party/JoltPhysics/Jolt/Geometry/Ellipse.h +77 -0
  150. package/native/third_party/JoltPhysics/Jolt/Geometry/GJKClosestPoint.h +945 -0
  151. package/native/third_party/JoltPhysics/Jolt/Geometry/IndexedTriangle.h +130 -0
  152. package/native/third_party/JoltPhysics/Jolt/Geometry/Indexify.cpp +222 -0
  153. package/native/third_party/JoltPhysics/Jolt/Geometry/Indexify.h +19 -0
  154. package/native/third_party/JoltPhysics/Jolt/Geometry/MortonCode.h +40 -0
  155. package/native/third_party/JoltPhysics/Jolt/Geometry/OrientedBox.cpp +178 -0
  156. package/native/third_party/JoltPhysics/Jolt/Geometry/OrientedBox.h +39 -0
  157. package/native/third_party/JoltPhysics/Jolt/Geometry/Plane.h +104 -0
  158. package/native/third_party/JoltPhysics/Jolt/Geometry/RayAABox.h +241 -0
  159. package/native/third_party/JoltPhysics/Jolt/Geometry/RayCapsule.h +37 -0
  160. package/native/third_party/JoltPhysics/Jolt/Geometry/RayCylinder.h +101 -0
  161. package/native/third_party/JoltPhysics/Jolt/Geometry/RaySphere.h +96 -0
  162. package/native/third_party/JoltPhysics/Jolt/Geometry/RayTriangle.h +158 -0
  163. package/native/third_party/JoltPhysics/Jolt/Geometry/Sphere.h +72 -0
  164. package/native/third_party/JoltPhysics/Jolt/Geometry/Triangle.h +34 -0
  165. package/native/third_party/JoltPhysics/Jolt/Jolt.cmake +703 -0
  166. package/native/third_party/JoltPhysics/Jolt/Jolt.h +16 -0
  167. package/native/third_party/JoltPhysics/Jolt/Jolt.natvis +116 -0
  168. package/native/third_party/JoltPhysics/Jolt/Math/BVec16.h +99 -0
  169. package/native/third_party/JoltPhysics/Jolt/Math/BVec16.inl +177 -0
  170. package/native/third_party/JoltPhysics/Jolt/Math/DMat44.h +158 -0
  171. package/native/third_party/JoltPhysics/Jolt/Math/DMat44.inl +310 -0
  172. package/native/third_party/JoltPhysics/Jolt/Math/DVec3.h +291 -0
  173. package/native/third_party/JoltPhysics/Jolt/Math/DVec3.inl +941 -0
  174. package/native/third_party/JoltPhysics/Jolt/Math/Double3.h +48 -0
  175. package/native/third_party/JoltPhysics/Jolt/Math/DynMatrix.h +31 -0
  176. package/native/third_party/JoltPhysics/Jolt/Math/EigenValueSymmetric.h +177 -0
  177. package/native/third_party/JoltPhysics/Jolt/Math/FindRoot.h +42 -0
  178. package/native/third_party/JoltPhysics/Jolt/Math/Float2.h +36 -0
  179. package/native/third_party/JoltPhysics/Jolt/Math/Float3.h +50 -0
  180. package/native/third_party/JoltPhysics/Jolt/Math/Float4.h +44 -0
  181. package/native/third_party/JoltPhysics/Jolt/Math/GaussianElimination.h +102 -0
  182. package/native/third_party/JoltPhysics/Jolt/Math/HalfFloat.h +208 -0
  183. package/native/third_party/JoltPhysics/Jolt/Math/Mat44.h +243 -0
  184. package/native/third_party/JoltPhysics/Jolt/Math/Mat44.inl +952 -0
  185. package/native/third_party/JoltPhysics/Jolt/Math/Math.h +208 -0
  186. package/native/third_party/JoltPhysics/Jolt/Math/MathTypes.h +32 -0
  187. package/native/third_party/JoltPhysics/Jolt/Math/Matrix.h +259 -0
  188. package/native/third_party/JoltPhysics/Jolt/Math/Quat.h +268 -0
  189. package/native/third_party/JoltPhysics/Jolt/Math/Quat.inl +406 -0
  190. package/native/third_party/JoltPhysics/Jolt/Math/Real.h +44 -0
  191. package/native/third_party/JoltPhysics/Jolt/Math/Swizzle.h +19 -0
  192. package/native/third_party/JoltPhysics/Jolt/Math/Trigonometry.h +79 -0
  193. package/native/third_party/JoltPhysics/Jolt/Math/UVec4.h +232 -0
  194. package/native/third_party/JoltPhysics/Jolt/Math/UVec4.inl +636 -0
  195. package/native/third_party/JoltPhysics/Jolt/Math/Vec3.cpp +71 -0
  196. package/native/third_party/JoltPhysics/Jolt/Math/Vec3.h +308 -0
  197. package/native/third_party/JoltPhysics/Jolt/Math/Vec3.inl +942 -0
  198. package/native/third_party/JoltPhysics/Jolt/Math/Vec4.h +320 -0
  199. package/native/third_party/JoltPhysics/Jolt/Math/Vec4.inl +1152 -0
  200. package/native/third_party/JoltPhysics/Jolt/Math/Vector.h +211 -0
  201. package/native/third_party/JoltPhysics/Jolt/ObjectStream/GetPrimitiveTypeOfType.h +54 -0
  202. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStream.cpp +38 -0
  203. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStream.h +337 -0
  204. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryIn.cpp +252 -0
  205. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryIn.h +57 -0
  206. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryOut.cpp +165 -0
  207. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamBinaryOut.h +57 -0
  208. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamIn.cpp +635 -0
  209. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamIn.h +148 -0
  210. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamOut.cpp +166 -0
  211. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamOut.h +101 -0
  212. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextIn.cpp +418 -0
  213. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextIn.h +55 -0
  214. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextOut.cpp +255 -0
  215. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTextOut.h +62 -0
  216. package/native/third_party/JoltPhysics/Jolt/ObjectStream/ObjectStreamTypes.h +26 -0
  217. package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableAttribute.h +111 -0
  218. package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableAttributeEnum.h +67 -0
  219. package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableAttributeTyped.h +60 -0
  220. package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableObject.cpp +15 -0
  221. package/native/third_party/JoltPhysics/Jolt/ObjectStream/SerializableObject.h +170 -0
  222. package/native/third_party/JoltPhysics/Jolt/ObjectStream/TypeDeclarations.cpp +70 -0
  223. package/native/third_party/JoltPhysics/Jolt/ObjectStream/TypeDeclarations.h +45 -0
  224. package/native/third_party/JoltPhysics/Jolt/Physics/Body/AllowedDOFs.h +68 -0
  225. package/native/third_party/JoltPhysics/Jolt/Physics/Body/Body.cpp +426 -0
  226. package/native/third_party/JoltPhysics/Jolt/Physics/Body/Body.h +452 -0
  227. package/native/third_party/JoltPhysics/Jolt/Physics/Body/Body.inl +197 -0
  228. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyAccess.h +68 -0
  229. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyActivationListener.h +28 -0
  230. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyCreationSettings.cpp +234 -0
  231. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyCreationSettings.h +124 -0
  232. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyFilter.h +130 -0
  233. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyID.h +101 -0
  234. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyInterface.cpp +1099 -0
  235. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyInterface.h +324 -0
  236. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyLock.h +111 -0
  237. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyLockInterface.h +134 -0
  238. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyLockMulti.h +120 -0
  239. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyManager.cpp +1220 -0
  240. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyManager.h +403 -0
  241. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyPair.h +36 -0
  242. package/native/third_party/JoltPhysics/Jolt/Physics/Body/BodyType.h +19 -0
  243. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MassProperties.cpp +185 -0
  244. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MassProperties.h +58 -0
  245. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionProperties.cpp +92 -0
  246. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionProperties.h +308 -0
  247. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionProperties.inl +178 -0
  248. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionQuality.h +31 -0
  249. package/native/third_party/JoltPhysics/Jolt/Physics/Body/MotionType.h +17 -0
  250. package/native/third_party/JoltPhysics/Jolt/Physics/Character/Character.cpp +354 -0
  251. package/native/third_party/JoltPhysics/Jolt/Physics/Character/Character.h +159 -0
  252. package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterBase.cpp +59 -0
  253. package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterBase.h +157 -0
  254. package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterID.h +98 -0
  255. package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterVirtual.cpp +1933 -0
  256. package/native/third_party/JoltPhysics/Jolt/Physics/Character/CharacterVirtual.h +752 -0
  257. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/AABoxCast.h +20 -0
  258. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ActiveEdgeMode.h +17 -0
  259. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ActiveEdges.h +114 -0
  260. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BackFaceMode.h +16 -0
  261. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhase.cpp +16 -0
  262. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhase.h +109 -0
  263. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseBruteForce.cpp +313 -0
  264. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseBruteForce.h +38 -0
  265. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseLayer.h +148 -0
  266. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseLayerInterfaceMask.h +92 -0
  267. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseLayerInterfaceTable.h +64 -0
  268. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseQuadTree.cpp +629 -0
  269. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseQuadTree.h +108 -0
  270. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/BroadPhaseQuery.h +56 -0
  271. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/ObjectVsBroadPhaseLayerFilterMask.h +35 -0
  272. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/ObjectVsBroadPhaseLayerFilterTable.h +66 -0
  273. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/QuadTree.cpp +1768 -0
  274. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/BroadPhase/QuadTree.h +389 -0
  275. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastConvexVsTriangles.cpp +107 -0
  276. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastConvexVsTriangles.h +46 -0
  277. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastResult.h +37 -0
  278. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastSphereVsTriangles.cpp +223 -0
  279. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CastSphereVsTriangles.h +49 -0
  280. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollectFacesMode.h +16 -0
  281. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideConvexVsTriangles.cpp +155 -0
  282. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideConvexVsTriangles.h +56 -0
  283. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollidePointResult.h +25 -0
  284. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideShape.h +106 -0
  285. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideShapeVsShapePerLeaf.h +94 -0
  286. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSoftBodyVertexIterator.h +110 -0
  287. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSoftBodyVerticesVsTriangles.h +102 -0
  288. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSphereVsTriangles.cpp +121 -0
  289. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollideSphereVsTriangles.h +50 -0
  290. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionCollector.h +109 -0
  291. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionCollectorImpl.h +219 -0
  292. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionDispatch.cpp +107 -0
  293. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionDispatch.h +97 -0
  294. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionGroup.cpp +35 -0
  295. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/CollisionGroup.h +97 -0
  296. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ContactListener.h +143 -0
  297. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/EstimateCollisionResponse.cpp +213 -0
  298. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/EstimateCollisionResponse.h +48 -0
  299. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilter.cpp +32 -0
  300. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilter.h +46 -0
  301. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilterTable.cpp +38 -0
  302. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/GroupFilterTable.h +130 -0
  303. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/InternalEdgeRemovingCollector.h +279 -0
  304. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ManifoldBetweenTwoFaces.cpp +271 -0
  305. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ManifoldBetweenTwoFaces.h +44 -0
  306. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseQuery.cpp +448 -0
  307. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseQuery.h +77 -0
  308. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseStats.cpp +62 -0
  309. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/NarrowPhaseStats.h +110 -0
  310. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ObjectLayer.h +111 -0
  311. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ObjectLayerPairFilterMask.h +52 -0
  312. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ObjectLayerPairFilterTable.h +78 -0
  313. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterial.cpp +35 -0
  314. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterial.h +57 -0
  315. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterialSimple.cpp +38 -0
  316. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/PhysicsMaterialSimple.h +37 -0
  317. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/RayCast.h +87 -0
  318. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/BoxShape.cpp +318 -0
  319. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/BoxShape.h +115 -0
  320. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CapsuleShape.cpp +438 -0
  321. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CapsuleShape.h +129 -0
  322. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CompoundShape.cpp +433 -0
  323. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CompoundShape.h +354 -0
  324. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CompoundShapeVisitors.h +461 -0
  325. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexHullShape.cpp +1311 -0
  326. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexHullShape.h +202 -0
  327. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexShape.cpp +566 -0
  328. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ConvexShape.h +150 -0
  329. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CylinderShape.cpp +418 -0
  330. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/CylinderShape.h +126 -0
  331. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/DecoratedShape.cpp +87 -0
  332. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/DecoratedShape.h +80 -0
  333. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/EmptyShape.cpp +64 -0
  334. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/EmptyShape.h +75 -0
  335. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/GetTrianglesContext.h +248 -0
  336. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/HeightFieldShape.cpp +2754 -0
  337. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/HeightFieldShape.h +380 -0
  338. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MeshShape.cpp +1305 -0
  339. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MeshShape.h +228 -0
  340. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MutableCompoundShape.cpp +596 -0
  341. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/MutableCompoundShape.h +176 -0
  342. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/OffsetCenterOfMassShape.cpp +217 -0
  343. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/OffsetCenterOfMassShape.h +140 -0
  344. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/PlaneShape.cpp +541 -0
  345. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/PlaneShape.h +147 -0
  346. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/PolyhedronSubmergedVolumeCalculator.h +319 -0
  347. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/RotatedTranslatedShape.cpp +333 -0
  348. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/RotatedTranslatedShape.h +161 -0
  349. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ScaleHelpers.h +83 -0
  350. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ScaledShape.cpp +238 -0
  351. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/ScaledShape.h +145 -0
  352. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/Shape.cpp +325 -0
  353. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/Shape.h +466 -0
  354. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SphereShape.cpp +347 -0
  355. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SphereShape.h +125 -0
  356. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/StaticCompoundShape.cpp +674 -0
  357. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/StaticCompoundShape.h +139 -0
  358. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SubShapeID.h +138 -0
  359. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/SubShapeIDPair.h +65 -0
  360. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCapsuleShape.cpp +453 -0
  361. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCapsuleShape.gliffy +1 -0
  362. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCapsuleShape.h +135 -0
  363. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCylinderShape.cpp +691 -0
  364. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TaperedCylinderShape.h +132 -0
  365. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TriangleShape.cpp +430 -0
  366. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/Shape/TriangleShape.h +143 -0
  367. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ShapeCast.h +173 -0
  368. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/ShapeFilter.h +73 -0
  369. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/SimShapeFilter.h +40 -0
  370. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/SimShapeFilterWrapper.h +58 -0
  371. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/SortReverseAndStore.h +48 -0
  372. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/TransformedShape.cpp +180 -0
  373. package/native/third_party/JoltPhysics/Jolt/Physics/Collision/TransformedShape.h +194 -0
  374. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/CalculateSolverSteps.h +70 -0
  375. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConeConstraint.cpp +246 -0
  376. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConeConstraint.h +133 -0
  377. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/Constraint.cpp +73 -0
  378. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/Constraint.h +243 -0
  379. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintManager.cpp +289 -0
  380. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintManager.h +100 -0
  381. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/AngleConstraintPart.h +257 -0
  382. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/AxisConstraintPart.h +682 -0
  383. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/DualAxisConstraintPart.h +276 -0
  384. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/GearConstraintPart.h +195 -0
  385. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/HingeRotationConstraintPart.h +222 -0
  386. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/IndependentAxisConstraintPart.h +246 -0
  387. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/PointConstraintPart.h +239 -0
  388. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/RackAndPinionConstraintPart.h +196 -0
  389. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/RotationEulerConstraintPart.h +283 -0
  390. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/RotationQuatConstraintPart.h +246 -0
  391. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/SpringPart.h +169 -0
  392. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ConstraintPart/SwingTwistConstraintPart.h +597 -0
  393. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ContactConstraintManager.cpp +1804 -0
  394. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/ContactConstraintManager.h +524 -0
  395. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/DistanceConstraint.cpp +266 -0
  396. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/DistanceConstraint.h +120 -0
  397. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/FixedConstraint.cpp +215 -0
  398. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/FixedConstraint.h +96 -0
  399. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/GearConstraint.cpp +188 -0
  400. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/GearConstraint.h +116 -0
  401. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/HingeConstraint.cpp +443 -0
  402. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/HingeConstraint.h +205 -0
  403. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/MotorSettings.cpp +43 -0
  404. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/MotorSettings.h +66 -0
  405. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraint.cpp +458 -0
  406. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraint.h +191 -0
  407. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPath.cpp +85 -0
  408. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPath.h +76 -0
  409. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPathHermite.cpp +308 -0
  410. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PathConstraintPathHermite.h +54 -0
  411. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PointConstraint.cpp +157 -0
  412. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PointConstraint.h +94 -0
  413. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PulleyConstraint.cpp +253 -0
  414. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/PulleyConstraint.h +137 -0
  415. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/RackAndPinionConstraint.cpp +189 -0
  416. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/RackAndPinionConstraint.h +118 -0
  417. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SixDOFConstraint.cpp +900 -0
  418. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SixDOFConstraint.h +289 -0
  419. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SliderConstraint.cpp +501 -0
  420. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SliderConstraint.h +198 -0
  421. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SpringSettings.cpp +35 -0
  422. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SpringSettings.h +70 -0
  423. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SwingTwistConstraint.cpp +524 -0
  424. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/SwingTwistConstraint.h +197 -0
  425. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/TwoBodyConstraint.cpp +56 -0
  426. package/native/third_party/JoltPhysics/Jolt/Physics/Constraints/TwoBodyConstraint.h +65 -0
  427. package/native/third_party/JoltPhysics/Jolt/Physics/DeterminismLog.cpp +17 -0
  428. package/native/third_party/JoltPhysics/Jolt/Physics/DeterminismLog.h +159 -0
  429. package/native/third_party/JoltPhysics/Jolt/Physics/EActivation.h +16 -0
  430. package/native/third_party/JoltPhysics/Jolt/Physics/EPhysicsUpdateError.h +37 -0
  431. package/native/third_party/JoltPhysics/Jolt/Physics/IslandBuilder.cpp +492 -0
  432. package/native/third_party/JoltPhysics/Jolt/Physics/IslandBuilder.h +144 -0
  433. package/native/third_party/JoltPhysics/Jolt/Physics/LargeIslandSplitter.cpp +582 -0
  434. package/native/third_party/JoltPhysics/Jolt/Physics/LargeIslandSplitter.h +187 -0
  435. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsLock.h +169 -0
  436. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsScene.cpp +261 -0
  437. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsScene.h +104 -0
  438. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsSettings.h +125 -0
  439. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsStepListener.h +37 -0
  440. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsSystem.cpp +2915 -0
  441. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsSystem.h +391 -0
  442. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsUpdateContext.cpp +25 -0
  443. package/native/third_party/JoltPhysics/Jolt/Physics/PhysicsUpdateContext.h +176 -0
  444. package/native/third_party/JoltPhysics/Jolt/Physics/Ragdoll/Ragdoll.cpp +744 -0
  445. package/native/third_party/JoltPhysics/Jolt/Physics/Ragdoll/Ragdoll.h +245 -0
  446. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyContactListener.h +55 -0
  447. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyCreationSettings.cpp +128 -0
  448. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyCreationSettings.h +75 -0
  449. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyManifold.h +74 -0
  450. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyMotionProperties.cpp +1501 -0
  451. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyMotionProperties.h +333 -0
  452. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyShape.cpp +354 -0
  453. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyShape.h +73 -0
  454. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodySharedSettings.cpp +1487 -0
  455. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodySharedSettings.h +390 -0
  456. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyUpdateContext.h +63 -0
  457. package/native/third_party/JoltPhysics/Jolt/Physics/SoftBody/SoftBodyVertex.h +36 -0
  458. package/native/third_party/JoltPhysics/Jolt/Physics/StateRecorder.h +136 -0
  459. package/native/third_party/JoltPhysics/Jolt/Physics/StateRecorderImpl.cpp +90 -0
  460. package/native/third_party/JoltPhysics/Jolt/Physics/StateRecorderImpl.h +50 -0
  461. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/MotorcycleController.cpp +306 -0
  462. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/MotorcycleController.h +119 -0
  463. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/TrackedVehicleController.cpp +547 -0
  464. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/TrackedVehicleController.h +169 -0
  465. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleAntiRollBar.cpp +33 -0
  466. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleAntiRollBar.h +33 -0
  467. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleCollisionTester.cpp +376 -0
  468. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleCollisionTester.h +146 -0
  469. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleConstraint.cpp +703 -0
  470. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleConstraint.h +252 -0
  471. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleController.cpp +17 -0
  472. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleController.h +87 -0
  473. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleDifferential.cpp +81 -0
  474. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleDifferential.h +39 -0
  475. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleEngine.cpp +122 -0
  476. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleEngine.h +93 -0
  477. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTrack.cpp +52 -0
  478. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTrack.h +56 -0
  479. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTransmission.cpp +159 -0
  480. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/VehicleTransmission.h +87 -0
  481. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/Wheel.cpp +93 -0
  482. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/Wheel.h +148 -0
  483. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/WheeledVehicleController.cpp +866 -0
  484. package/native/third_party/JoltPhysics/Jolt/Physics/Vehicle/WheeledVehicleController.h +205 -0
  485. package/native/third_party/JoltPhysics/Jolt/RegisterTypes.cpp +204 -0
  486. package/native/third_party/JoltPhysics/Jolt/RegisterTypes.h +29 -0
  487. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRenderer.cpp +1107 -0
  488. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRenderer.h +383 -0
  489. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererPlayback.cpp +168 -0
  490. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererPlayback.h +48 -0
  491. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererRecorder.cpp +158 -0
  492. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererRecorder.h +130 -0
  493. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererSimple.cpp +80 -0
  494. package/native/third_party/JoltPhysics/Jolt/Renderer/DebugRendererSimple.h +88 -0
  495. package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletalAnimation.cpp +165 -0
  496. package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletalAnimation.h +91 -0
  497. package/native/third_party/JoltPhysics/Jolt/Skeleton/Skeleton.cpp +82 -0
  498. package/native/third_party/JoltPhysics/Jolt/Skeleton/Skeleton.h +72 -0
  499. package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonMapper.cpp +237 -0
  500. package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonMapper.h +145 -0
  501. package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonPose.cpp +87 -0
  502. package/native/third_party/JoltPhysics/Jolt/Skeleton/SkeletonPose.h +82 -0
  503. package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitter.cpp +73 -0
  504. package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitter.h +84 -0
  505. package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterBinning.cpp +139 -0
  506. package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterBinning.h +52 -0
  507. package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterMean.cpp +43 -0
  508. package/native/third_party/JoltPhysics/Jolt/TriangleSplitter/TriangleSplitterMean.h +28 -0
  509. package/native/third_party/JoltPhysics/LICENSE +7 -0
  510. package/native/third_party/JoltPhysics/README.md +173 -0
  511. package/native/third_party/bloom_jolt/CMakeLists.txt +78 -0
  512. package/native/third_party/bloom_jolt/include/bloom_jolt.h +519 -0
  513. package/native/third_party/bloom_jolt/src/bloom_jolt.cpp +1780 -0
  514. package/native/tvos/Cargo.lock +1692 -0
  515. package/native/tvos/Cargo.toml +22 -0
  516. package/native/tvos/src/lib.rs +3179 -0
  517. package/native/watchos/Cargo.lock +16 -0
  518. package/native/watchos/Cargo.toml +19 -0
  519. package/native/watchos/shaders/bloom_postfx.metal +99 -0
  520. package/native/watchos/src/BloomWatchApp.swift +1236 -0
  521. package/native/watchos/src/BloomWatchAudio.swift +179 -0
  522. package/native/watchos/src/audio.rs +55 -0
  523. package/native/watchos/src/draw_list.rs +223 -0
  524. package/native/watchos/src/ffi_stubs.rs +454 -0
  525. package/native/watchos/src/lib.rs +1013 -0
  526. package/native/watchos/src/models.rs +746 -0
  527. package/native/watchos/src/postfx.rs +91 -0
  528. package/native/watchos/src/scene.rs +534 -0
  529. package/native/watchos/src/textures.rs +184 -0
  530. package/native/web/Cargo.lock +1656 -0
  531. package/native/web/Cargo.toml +38 -0
  532. package/native/web/bloom_glue.js +218 -0
  533. package/native/web/build.sh +101 -0
  534. package/native/web/index.html +390 -0
  535. package/native/web/jolt_bridge.js +1311 -0
  536. package/native/web/src/lib.rs +2739 -0
  537. package/native/windows/Cargo.lock +1813 -0
  538. package/native/windows/Cargo.toml +31 -0
  539. package/native/windows/src/lib.rs +1933 -0
  540. package/package.json +558 -0
  541. package/src/audio/index.ts +151 -0
  542. package/src/core/colors.ts +56 -0
  543. package/src/core/index.ts +903 -0
  544. package/src/core/keys.ts +63 -0
  545. package/src/core/types.ts +102 -0
  546. package/src/index.ts +158 -0
  547. package/src/math/index.ts +502 -0
  548. package/src/mobile/index.ts +294 -0
  549. package/src/models/index.ts +859 -0
  550. package/src/physics/index.ts +1072 -0
  551. package/src/scene/index.ts +570 -0
  552. package/src/shapes/index.ts +120 -0
  553. package/src/text/index.ts +48 -0
  554. package/src/textures/index.ts +173 -0
  555. package/src/world/index.ts +22 -0
  556. package/src/world/loader.ts +385 -0
  557. package/src/world/prefab.ts +205 -0
  558. package/src/world/saver.ts +61 -0
  559. package/src/world/terrain.ts +254 -0
  560. package/src/world/types.ts +136 -0
  561. package/src/world/validate.ts +202 -0
  562. package/src/world/version.ts +47 -0
@@ -0,0 +1,1898 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "allocator-api2"
13
+ version = "0.2.21"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
16
+
17
+ [[package]]
18
+ name = "android_system_properties"
19
+ version = "0.1.5"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
22
+ dependencies = [
23
+ "libc",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "arrayvec"
28
+ version = "0.7.6"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
31
+
32
+ [[package]]
33
+ name = "ash"
34
+ version = "0.38.0+1.3.281"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
37
+ dependencies = [
38
+ "libloading",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.5.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
46
+
47
+ [[package]]
48
+ name = "base64"
49
+ version = "0.13.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
52
+
53
+ [[package]]
54
+ name = "bcdec_rs"
55
+ version = "0.2.0"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "f09c37bc0e9f0924b7dae9988265ef3c76c88538f41a3b06caf4bed07cee5226"
58
+
59
+ [[package]]
60
+ name = "bit-set"
61
+ version = "0.9.1"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "34ddef2995421ab6a5c779542c81ee77c115206f4ad9d5a8e05f4ff49716a3dd"
64
+ dependencies = [
65
+ "bit-vec",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "bit-vec"
70
+ version = "0.9.1"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
73
+
74
+ [[package]]
75
+ name = "bitflags"
76
+ version = "1.3.2"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
79
+
80
+ [[package]]
81
+ name = "bitflags"
82
+ version = "2.11.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
85
+
86
+ [[package]]
87
+ name = "block2"
88
+ version = "0.6.2"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
91
+ dependencies = [
92
+ "objc2",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "bloom-shared"
97
+ version = "0.1.0"
98
+ dependencies = [
99
+ "bytemuck",
100
+ "cmake",
101
+ "earcutr",
102
+ "fontdue",
103
+ "gltf",
104
+ "half",
105
+ "image",
106
+ "image_dds",
107
+ "lewton",
108
+ "libc",
109
+ "minimp3",
110
+ "notify",
111
+ "pollster",
112
+ "raw-window-handle",
113
+ "web-time",
114
+ "wgpu",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "bumpalo"
119
+ version = "3.20.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
122
+
123
+ [[package]]
124
+ name = "bytemuck"
125
+ version = "1.25.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
128
+ dependencies = [
129
+ "bytemuck_derive",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "bytemuck_derive"
134
+ version = "1.10.2"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
137
+ dependencies = [
138
+ "proc-macro2",
139
+ "quote",
140
+ "syn 2.0.117",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "byteorder"
145
+ version = "1.5.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
148
+
149
+ [[package]]
150
+ name = "byteorder-lite"
151
+ version = "0.1.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
154
+
155
+ [[package]]
156
+ name = "cc"
157
+ version = "1.2.57"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
160
+ dependencies = [
161
+ "find-msvc-tools",
162
+ "shlex",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "cfg-if"
167
+ version = "1.0.4"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
170
+
171
+ [[package]]
172
+ name = "cfg_aliases"
173
+ version = "0.2.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
176
+
177
+ [[package]]
178
+ name = "cmake"
179
+ version = "0.1.58"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
182
+ dependencies = [
183
+ "cc",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "codespan-reporting"
188
+ version = "0.13.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
191
+ dependencies = [
192
+ "serde",
193
+ "termcolor",
194
+ "unicode-width",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "crc32fast"
199
+ version = "1.5.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
202
+ dependencies = [
203
+ "cfg-if",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "crossbeam-channel"
208
+ version = "0.5.15"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
211
+ dependencies = [
212
+ "crossbeam-utils",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "crossbeam-utils"
217
+ version = "0.8.21"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
220
+
221
+ [[package]]
222
+ name = "crunchy"
223
+ version = "0.2.4"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
226
+
227
+ [[package]]
228
+ name = "ddsfile"
229
+ version = "0.5.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "479dfe1e6737aa9e96c6ac7b69689dc4c32da8383f2c12744739d76afa8b66c4"
232
+ dependencies = [
233
+ "bitflags 2.11.0",
234
+ "byteorder",
235
+ "enum-primitive-derive",
236
+ "num-traits",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "dispatch2"
241
+ version = "0.3.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
244
+ dependencies = [
245
+ "bitflags 2.11.0",
246
+ "objc2",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "dlib"
251
+ version = "0.5.3"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
254
+ dependencies = [
255
+ "libloading",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "document-features"
260
+ version = "0.2.12"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
263
+ dependencies = [
264
+ "litrs",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "earcutr"
269
+ version = "0.4.3"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
272
+ dependencies = [
273
+ "itertools",
274
+ "num-traits",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "either"
279
+ version = "1.15.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
282
+
283
+ [[package]]
284
+ name = "enum-primitive-derive"
285
+ version = "0.2.2"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "c375b9c5eadb68d0a6efee2999fef292f45854c3444c86f09d8ab086ba942b0e"
288
+ dependencies = [
289
+ "num-traits",
290
+ "quote",
291
+ "syn 1.0.109",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "equivalent"
296
+ version = "1.0.2"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
299
+
300
+ [[package]]
301
+ name = "fdeflate"
302
+ version = "0.3.7"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
305
+ dependencies = [
306
+ "simd-adler32",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "filetime"
311
+ version = "0.2.27"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
314
+ dependencies = [
315
+ "cfg-if",
316
+ "libc",
317
+ "libredox",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "find-msvc-tools"
322
+ version = "0.1.9"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
325
+
326
+ [[package]]
327
+ name = "flate2"
328
+ version = "1.1.9"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
331
+ dependencies = [
332
+ "crc32fast",
333
+ "miniz_oxide",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "foldhash"
338
+ version = "0.1.5"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
341
+
342
+ [[package]]
343
+ name = "foldhash"
344
+ version = "0.2.0"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
347
+
348
+ [[package]]
349
+ name = "fontdue"
350
+ version = "0.9.3"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b"
353
+ dependencies = [
354
+ "hashbrown 0.15.5",
355
+ "ttf-parser",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "fsevent-sys"
360
+ version = "4.1.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
363
+ dependencies = [
364
+ "libc",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "futures-core"
369
+ version = "0.3.32"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
372
+
373
+ [[package]]
374
+ name = "futures-task"
375
+ version = "0.3.32"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
378
+
379
+ [[package]]
380
+ name = "futures-util"
381
+ version = "0.3.32"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
384
+ dependencies = [
385
+ "futures-core",
386
+ "futures-task",
387
+ "pin-project-lite",
388
+ "slab",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "gl_generator"
393
+ version = "0.14.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
396
+ dependencies = [
397
+ "khronos_api",
398
+ "log",
399
+ "xml-rs",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "glow"
404
+ version = "0.17.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "29038e1c483364cc6bb3cf78feee1816002e127c331a1eec55a4d202b9e1adb5"
407
+ dependencies = [
408
+ "js-sys",
409
+ "slotmap",
410
+ "wasm-bindgen",
411
+ "web-sys",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "gltf"
416
+ version = "1.4.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "e3ce1918195723ce6ac74e80542c5a96a40c2b26162c1957a5cd70799b8cacf7"
419
+ dependencies = [
420
+ "base64",
421
+ "byteorder",
422
+ "gltf-json",
423
+ "image",
424
+ "lazy_static",
425
+ "serde_json",
426
+ "urlencoding",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "gltf-derive"
431
+ version = "1.4.1"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "14070e711538afba5d6c807edb74bcb84e5dbb9211a3bf5dea0dfab5b24f4c51"
434
+ dependencies = [
435
+ "inflections",
436
+ "proc-macro2",
437
+ "quote",
438
+ "syn 2.0.117",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "gltf-json"
443
+ version = "1.4.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "e6176f9d60a7eab0a877e8e96548605dedbde9190a7ae1e80bbcc1c9af03ab14"
446
+ dependencies = [
447
+ "gltf-derive",
448
+ "serde",
449
+ "serde_derive",
450
+ "serde_json",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "glutin_wgl_sys"
455
+ version = "0.6.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
458
+ dependencies = [
459
+ "gl_generator",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "gpu-allocator"
464
+ version = "0.28.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
467
+ dependencies = [
468
+ "ash",
469
+ "hashbrown 0.16.1",
470
+ "log",
471
+ "presser",
472
+ "thiserror 2.0.18",
473
+ "windows",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "gpu-descriptor"
478
+ version = "0.3.2"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
481
+ dependencies = [
482
+ "bitflags 2.11.0",
483
+ "gpu-descriptor-types",
484
+ "hashbrown 0.15.5",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "gpu-descriptor-types"
489
+ version = "0.2.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
492
+ dependencies = [
493
+ "bitflags 2.11.0",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "half"
498
+ version = "2.7.1"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
501
+ dependencies = [
502
+ "bytemuck",
503
+ "cfg-if",
504
+ "crunchy",
505
+ "num-traits",
506
+ "zerocopy",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "hashbrown"
511
+ version = "0.15.5"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
514
+ dependencies = [
515
+ "allocator-api2",
516
+ "equivalent",
517
+ "foldhash 0.1.5",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "hashbrown"
522
+ version = "0.16.1"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
525
+ dependencies = [
526
+ "allocator-api2",
527
+ "equivalent",
528
+ "foldhash 0.2.0",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "hexf-parse"
533
+ version = "0.2.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
536
+
537
+ [[package]]
538
+ name = "image"
539
+ version = "0.25.10"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
542
+ dependencies = [
543
+ "bytemuck",
544
+ "byteorder-lite",
545
+ "moxcms",
546
+ "num-traits",
547
+ "png",
548
+ "zune-core",
549
+ "zune-jpeg",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "image_dds"
554
+ version = "0.7.2"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "c3388630ed66c07107145ac5b13c804261f18d5daf0dd2699481888aba16cd38"
557
+ dependencies = [
558
+ "bcdec_rs",
559
+ "bytemuck",
560
+ "ddsfile",
561
+ "half",
562
+ "image",
563
+ "thiserror 1.0.69",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "indexmap"
568
+ version = "2.13.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
571
+ dependencies = [
572
+ "equivalent",
573
+ "hashbrown 0.16.1",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "inflections"
578
+ version = "1.1.1"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a"
581
+
582
+ [[package]]
583
+ name = "inotify"
584
+ version = "0.9.6"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
587
+ dependencies = [
588
+ "bitflags 1.3.2",
589
+ "inotify-sys",
590
+ "libc",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "inotify-sys"
595
+ version = "0.1.5"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
598
+ dependencies = [
599
+ "libc",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "itertools"
604
+ version = "0.11.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
607
+ dependencies = [
608
+ "either",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "itoa"
613
+ version = "1.0.17"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
616
+
617
+ [[package]]
618
+ name = "jni-sys"
619
+ version = "0.3.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
622
+
623
+ [[package]]
624
+ name = "js-sys"
625
+ version = "0.3.91"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
628
+ dependencies = [
629
+ "once_cell",
630
+ "wasm-bindgen",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "khronos-egl"
635
+ version = "6.0.0"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
638
+ dependencies = [
639
+ "libc",
640
+ "libloading",
641
+ "pkg-config",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "khronos_api"
646
+ version = "3.1.0"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
649
+
650
+ [[package]]
651
+ name = "kqueue"
652
+ version = "1.1.1"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
655
+ dependencies = [
656
+ "kqueue-sys",
657
+ "libc",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "kqueue-sys"
662
+ version = "1.0.4"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
665
+ dependencies = [
666
+ "bitflags 1.3.2",
667
+ "libc",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "lazy_static"
672
+ version = "1.5.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
675
+
676
+ [[package]]
677
+ name = "lewton"
678
+ version = "0.10.2"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030"
681
+ dependencies = [
682
+ "byteorder",
683
+ "ogg",
684
+ "tinyvec",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "libc"
689
+ version = "0.2.183"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
692
+
693
+ [[package]]
694
+ name = "libloading"
695
+ version = "0.8.9"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
698
+ dependencies = [
699
+ "cfg-if",
700
+ "windows-link",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "libm"
705
+ version = "0.2.16"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
708
+
709
+ [[package]]
710
+ name = "libredox"
711
+ version = "0.1.16"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
714
+ dependencies = [
715
+ "bitflags 2.11.0",
716
+ "libc",
717
+ "plain",
718
+ "redox_syscall 0.7.4",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "litrs"
723
+ version = "1.0.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
726
+
727
+ [[package]]
728
+ name = "lock_api"
729
+ version = "0.4.14"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
732
+ dependencies = [
733
+ "scopeguard",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "log"
738
+ version = "0.4.29"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
741
+
742
+ [[package]]
743
+ name = "mach2"
744
+ version = "0.4.3"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
747
+ dependencies = [
748
+ "libc",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "memchr"
753
+ version = "2.8.0"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
756
+
757
+ [[package]]
758
+ name = "minimp3"
759
+ version = "0.5.2"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "9a3ed9d34ed1a9190336a2b165bf09ac447693dfd9a61684597aaae2ee12df53"
762
+ dependencies = [
763
+ "minimp3-sys",
764
+ "slice-ring-buffer",
765
+ "thiserror 1.0.69",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "minimp3-sys"
770
+ version = "0.3.2"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90"
773
+ dependencies = [
774
+ "cc",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "miniz_oxide"
779
+ version = "0.8.9"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
782
+ dependencies = [
783
+ "adler2",
784
+ "simd-adler32",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "mio"
789
+ version = "0.8.11"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
792
+ dependencies = [
793
+ "libc",
794
+ "log",
795
+ "wasi",
796
+ "windows-sys 0.48.0",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "moxcms"
801
+ version = "0.8.1"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
804
+ dependencies = [
805
+ "num-traits",
806
+ "pxfm",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "naga"
811
+ version = "29.0.1"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "aa2630921705b9b01dcdd0b6864b9562ca3c1951eecd0f0c4f5f04f61e412647"
814
+ dependencies = [
815
+ "arrayvec",
816
+ "bit-set",
817
+ "bitflags 2.11.0",
818
+ "cfg-if",
819
+ "cfg_aliases",
820
+ "codespan-reporting",
821
+ "half",
822
+ "hashbrown 0.16.1",
823
+ "hexf-parse",
824
+ "indexmap",
825
+ "libm",
826
+ "log",
827
+ "num-traits",
828
+ "once_cell",
829
+ "rustc-hash",
830
+ "spirv",
831
+ "thiserror 2.0.18",
832
+ "unicode-ident",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "ndk-sys"
837
+ version = "0.6.0+11769913"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
840
+ dependencies = [
841
+ "jni-sys",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "notify"
846
+ version = "6.1.1"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
849
+ dependencies = [
850
+ "bitflags 2.11.0",
851
+ "crossbeam-channel",
852
+ "filetime",
853
+ "fsevent-sys",
854
+ "inotify",
855
+ "kqueue",
856
+ "libc",
857
+ "log",
858
+ "mio",
859
+ "walkdir",
860
+ "windows-sys 0.48.0",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "num-traits"
865
+ version = "0.2.19"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
868
+ dependencies = [
869
+ "autocfg",
870
+ "libm",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "objc2"
875
+ version = "0.6.4"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
878
+ dependencies = [
879
+ "objc2-encode",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "objc2-core-foundation"
884
+ version = "0.3.2"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
887
+ dependencies = [
888
+ "bitflags 2.11.0",
889
+ "dispatch2",
890
+ "objc2",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "objc2-encode"
895
+ version = "4.1.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
898
+
899
+ [[package]]
900
+ name = "objc2-foundation"
901
+ version = "0.3.2"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
904
+ dependencies = [
905
+ "bitflags 2.11.0",
906
+ "objc2",
907
+ "objc2-core-foundation",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "objc2-metal"
912
+ version = "0.3.2"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
915
+ dependencies = [
916
+ "bitflags 2.11.0",
917
+ "block2",
918
+ "objc2",
919
+ "objc2-foundation",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "objc2-quartz-core"
924
+ version = "0.3.2"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
927
+ dependencies = [
928
+ "bitflags 2.11.0",
929
+ "objc2",
930
+ "objc2-core-foundation",
931
+ "objc2-foundation",
932
+ "objc2-metal",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "ogg"
937
+ version = "0.8.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e"
940
+ dependencies = [
941
+ "byteorder",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "once_cell"
946
+ version = "1.21.4"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
949
+
950
+ [[package]]
951
+ name = "ordered-float"
952
+ version = "5.3.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
955
+ dependencies = [
956
+ "num-traits",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "parking_lot"
961
+ version = "0.12.5"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
964
+ dependencies = [
965
+ "lock_api",
966
+ "parking_lot_core",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "parking_lot_core"
971
+ version = "0.9.12"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
974
+ dependencies = [
975
+ "cfg-if",
976
+ "libc",
977
+ "redox_syscall 0.5.18",
978
+ "smallvec",
979
+ "windows-link",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "pin-project-lite"
984
+ version = "0.2.17"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
987
+
988
+ [[package]]
989
+ name = "pkg-config"
990
+ version = "0.3.32"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
993
+
994
+ [[package]]
995
+ name = "plain"
996
+ version = "0.2.3"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
999
+
1000
+ [[package]]
1001
+ name = "png"
1002
+ version = "0.18.1"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1005
+ dependencies = [
1006
+ "bitflags 2.11.0",
1007
+ "crc32fast",
1008
+ "fdeflate",
1009
+ "flate2",
1010
+ "miniz_oxide",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "pollster"
1015
+ version = "0.4.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
1018
+
1019
+ [[package]]
1020
+ name = "portable-atomic"
1021
+ version = "1.13.1"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1024
+
1025
+ [[package]]
1026
+ name = "portable-atomic-util"
1027
+ version = "0.2.7"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1030
+ dependencies = [
1031
+ "portable-atomic",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "presser"
1036
+ version = "0.3.1"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
1039
+
1040
+ [[package]]
1041
+ name = "proc-macro2"
1042
+ version = "1.0.106"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1045
+ dependencies = [
1046
+ "unicode-ident",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "profiling"
1051
+ version = "1.0.17"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
1054
+
1055
+ [[package]]
1056
+ name = "pxfm"
1057
+ version = "0.1.28"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
1060
+
1061
+ [[package]]
1062
+ name = "quote"
1063
+ version = "1.0.45"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1066
+ dependencies = [
1067
+ "proc-macro2",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "range-alloc"
1072
+ version = "0.1.5"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "ca45419789ae5a7899559e9512e58ca889e41f04f1f2445e9f4b290ceccd1d08"
1075
+
1076
+ [[package]]
1077
+ name = "raw-window-handle"
1078
+ version = "0.6.2"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
1081
+
1082
+ [[package]]
1083
+ name = "raw-window-metal"
1084
+ version = "1.1.0"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "40d213455a5f1dc59214213c7330e074ddf8114c9a42411eb890c767357ce135"
1087
+ dependencies = [
1088
+ "objc2",
1089
+ "objc2-core-foundation",
1090
+ "objc2-foundation",
1091
+ "objc2-quartz-core",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "redox_syscall"
1096
+ version = "0.5.18"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1099
+ dependencies = [
1100
+ "bitflags 2.11.0",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "redox_syscall"
1105
+ version = "0.7.4"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
1108
+ dependencies = [
1109
+ "bitflags 2.11.0",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "renderdoc-sys"
1114
+ version = "1.1.0"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
1117
+
1118
+ [[package]]
1119
+ name = "rustc-hash"
1120
+ version = "1.1.0"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1123
+
1124
+ [[package]]
1125
+ name = "rustversion"
1126
+ version = "1.0.22"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1129
+
1130
+ [[package]]
1131
+ name = "same-file"
1132
+ version = "1.0.6"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1135
+ dependencies = [
1136
+ "winapi-util",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "scopeguard"
1141
+ version = "1.2.0"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1144
+
1145
+ [[package]]
1146
+ name = "serde"
1147
+ version = "1.0.228"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1150
+ dependencies = [
1151
+ "serde_core",
1152
+ "serde_derive",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "serde_core"
1157
+ version = "1.0.228"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1160
+ dependencies = [
1161
+ "serde_derive",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "serde_derive"
1166
+ version = "1.0.228"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1169
+ dependencies = [
1170
+ "proc-macro2",
1171
+ "quote",
1172
+ "syn 2.0.117",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "serde_json"
1177
+ version = "1.0.149"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1180
+ dependencies = [
1181
+ "itoa",
1182
+ "memchr",
1183
+ "serde",
1184
+ "serde_core",
1185
+ "zmij",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "shlex"
1190
+ version = "1.3.0"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1193
+
1194
+ [[package]]
1195
+ name = "simd-adler32"
1196
+ version = "0.3.8"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1199
+
1200
+ [[package]]
1201
+ name = "slab"
1202
+ version = "0.4.12"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1205
+
1206
+ [[package]]
1207
+ name = "slice-ring-buffer"
1208
+ version = "0.3.4"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "84ae312bda09b2368f79f985fdb4df4a0b5cbc75546b511303972d195f8c27d6"
1211
+ dependencies = [
1212
+ "libc",
1213
+ "mach2",
1214
+ "winapi",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "slotmap"
1219
+ version = "1.1.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1222
+ dependencies = [
1223
+ "version_check",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "smallvec"
1228
+ version = "1.15.1"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1231
+
1232
+ [[package]]
1233
+ name = "spirv"
1234
+ version = "0.4.0+sdk-1.4.341.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "d9571ea910ebd84c86af4b3ed27f9dbdc6ad06f17c5f96146b2b671e2976744f"
1237
+ dependencies = [
1238
+ "bitflags 2.11.0",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "static_assertions"
1243
+ version = "1.1.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1246
+
1247
+ [[package]]
1248
+ name = "syn"
1249
+ version = "1.0.109"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1252
+ dependencies = [
1253
+ "proc-macro2",
1254
+ "quote",
1255
+ "unicode-ident",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "syn"
1260
+ version = "2.0.117"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1263
+ dependencies = [
1264
+ "proc-macro2",
1265
+ "quote",
1266
+ "unicode-ident",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "termcolor"
1271
+ version = "1.4.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1274
+ dependencies = [
1275
+ "winapi-util",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "thiserror"
1280
+ version = "1.0.69"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1283
+ dependencies = [
1284
+ "thiserror-impl 1.0.69",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "thiserror"
1289
+ version = "2.0.18"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1292
+ dependencies = [
1293
+ "thiserror-impl 2.0.18",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "thiserror-impl"
1298
+ version = "1.0.69"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1301
+ dependencies = [
1302
+ "proc-macro2",
1303
+ "quote",
1304
+ "syn 2.0.117",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "thiserror-impl"
1309
+ version = "2.0.18"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1312
+ dependencies = [
1313
+ "proc-macro2",
1314
+ "quote",
1315
+ "syn 2.0.117",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "tinyvec"
1320
+ version = "1.11.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1323
+ dependencies = [
1324
+ "tinyvec_macros",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "tinyvec_macros"
1329
+ version = "0.1.1"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1332
+
1333
+ [[package]]
1334
+ name = "ttf-parser"
1335
+ version = "0.21.1"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
1338
+
1339
+ [[package]]
1340
+ name = "unicode-ident"
1341
+ version = "1.0.24"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1344
+
1345
+ [[package]]
1346
+ name = "unicode-width"
1347
+ version = "0.1.14"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1350
+
1351
+ [[package]]
1352
+ name = "urlencoding"
1353
+ version = "2.1.3"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
1356
+
1357
+ [[package]]
1358
+ name = "version_check"
1359
+ version = "0.9.5"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1362
+
1363
+ [[package]]
1364
+ name = "walkdir"
1365
+ version = "2.5.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1368
+ dependencies = [
1369
+ "same-file",
1370
+ "winapi-util",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "wasi"
1375
+ version = "0.11.1+wasi-snapshot-preview1"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1378
+
1379
+ [[package]]
1380
+ name = "wasm-bindgen"
1381
+ version = "0.2.114"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1384
+ dependencies = [
1385
+ "cfg-if",
1386
+ "once_cell",
1387
+ "rustversion",
1388
+ "wasm-bindgen-macro",
1389
+ "wasm-bindgen-shared",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "wasm-bindgen-futures"
1394
+ version = "0.4.64"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
1397
+ dependencies = [
1398
+ "cfg-if",
1399
+ "futures-util",
1400
+ "js-sys",
1401
+ "once_cell",
1402
+ "wasm-bindgen",
1403
+ "web-sys",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "wasm-bindgen-macro"
1408
+ version = "0.2.114"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
1411
+ dependencies = [
1412
+ "quote",
1413
+ "wasm-bindgen-macro-support",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "wasm-bindgen-macro-support"
1418
+ version = "0.2.114"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
1421
+ dependencies = [
1422
+ "bumpalo",
1423
+ "proc-macro2",
1424
+ "quote",
1425
+ "syn 2.0.117",
1426
+ "wasm-bindgen-shared",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "wasm-bindgen-shared"
1431
+ version = "0.2.114"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
1434
+ dependencies = [
1435
+ "unicode-ident",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "wayland-sys"
1440
+ version = "0.31.11"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
1443
+ dependencies = [
1444
+ "dlib",
1445
+ "log",
1446
+ "once_cell",
1447
+ "pkg-config",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "web-sys"
1452
+ version = "0.3.91"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
1455
+ dependencies = [
1456
+ "js-sys",
1457
+ "wasm-bindgen",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "web-time"
1462
+ version = "0.2.4"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0"
1465
+ dependencies = [
1466
+ "js-sys",
1467
+ "wasm-bindgen",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "wgpu"
1472
+ version = "29.0.1"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "72c239a9a747bbd379590985bac952c2e53cb19873f7072b3370c6a6a8e06837"
1475
+ dependencies = [
1476
+ "arrayvec",
1477
+ "bitflags 2.11.0",
1478
+ "bytemuck",
1479
+ "cfg-if",
1480
+ "cfg_aliases",
1481
+ "document-features",
1482
+ "hashbrown 0.16.1",
1483
+ "js-sys",
1484
+ "log",
1485
+ "naga",
1486
+ "parking_lot",
1487
+ "portable-atomic",
1488
+ "profiling",
1489
+ "raw-window-handle",
1490
+ "smallvec",
1491
+ "static_assertions",
1492
+ "wasm-bindgen",
1493
+ "wasm-bindgen-futures",
1494
+ "web-sys",
1495
+ "wgpu-core",
1496
+ "wgpu-hal",
1497
+ "wgpu-types",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "wgpu-core"
1502
+ version = "29.0.1"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "1e80ac6cf1895df6342f87d975162108f9d98772a0d74bc404ab7304ac29469e"
1505
+ dependencies = [
1506
+ "arrayvec",
1507
+ "bit-set",
1508
+ "bit-vec",
1509
+ "bitflags 2.11.0",
1510
+ "bytemuck",
1511
+ "cfg_aliases",
1512
+ "document-features",
1513
+ "hashbrown 0.16.1",
1514
+ "indexmap",
1515
+ "log",
1516
+ "naga",
1517
+ "once_cell",
1518
+ "parking_lot",
1519
+ "portable-atomic",
1520
+ "profiling",
1521
+ "raw-window-handle",
1522
+ "rustc-hash",
1523
+ "smallvec",
1524
+ "thiserror 2.0.18",
1525
+ "wgpu-core-deps-apple",
1526
+ "wgpu-core-deps-emscripten",
1527
+ "wgpu-core-deps-windows-linux-android",
1528
+ "wgpu-hal",
1529
+ "wgpu-naga-bridge",
1530
+ "wgpu-types",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "wgpu-core-deps-apple"
1535
+ version = "29.0.0"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "43acd053312501689cd92a01a9638d37f3e41a5fd9534875efa8917ee2d11ac0"
1538
+ dependencies = [
1539
+ "wgpu-hal",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "wgpu-core-deps-emscripten"
1544
+ version = "29.0.0"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "ef043bf135cc68b6f667c55ff4e345ce2b5924d75bad36a47921b0287ca4b24a"
1547
+ dependencies = [
1548
+ "wgpu-hal",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "wgpu-core-deps-windows-linux-android"
1553
+ version = "29.0.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "725d5c006a8c02967b6d93ef04f6537ec4593313e330cfe86d9d3f946eb90f28"
1556
+ dependencies = [
1557
+ "wgpu-hal",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "wgpu-hal"
1562
+ version = "29.0.1"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "89a47aef47636562f3937285af4c44b4b5b404b46577471411cc5313a921da7e"
1565
+ dependencies = [
1566
+ "android_system_properties",
1567
+ "arrayvec",
1568
+ "ash",
1569
+ "bit-set",
1570
+ "bitflags 2.11.0",
1571
+ "block2",
1572
+ "bytemuck",
1573
+ "cfg-if",
1574
+ "cfg_aliases",
1575
+ "glow",
1576
+ "glutin_wgl_sys",
1577
+ "gpu-allocator",
1578
+ "gpu-descriptor",
1579
+ "hashbrown 0.16.1",
1580
+ "js-sys",
1581
+ "khronos-egl",
1582
+ "libc",
1583
+ "libloading",
1584
+ "log",
1585
+ "naga",
1586
+ "ndk-sys",
1587
+ "objc2",
1588
+ "objc2-core-foundation",
1589
+ "objc2-foundation",
1590
+ "objc2-metal",
1591
+ "objc2-quartz-core",
1592
+ "once_cell",
1593
+ "ordered-float",
1594
+ "parking_lot",
1595
+ "portable-atomic",
1596
+ "portable-atomic-util",
1597
+ "profiling",
1598
+ "range-alloc",
1599
+ "raw-window-handle",
1600
+ "raw-window-metal",
1601
+ "renderdoc-sys",
1602
+ "smallvec",
1603
+ "thiserror 2.0.18",
1604
+ "wasm-bindgen",
1605
+ "wayland-sys",
1606
+ "web-sys",
1607
+ "wgpu-naga-bridge",
1608
+ "wgpu-types",
1609
+ "windows",
1610
+ "windows-core",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "wgpu-naga-bridge"
1615
+ version = "29.0.1"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "7b4684f4410da0cf95a4cb63bb5edaac022461dedb6adf0b64d0d9b5f6890d51"
1618
+ dependencies = [
1619
+ "naga",
1620
+ "wgpu-types",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "wgpu-types"
1625
+ version = "29.0.1"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "ec2675540fb1a5cfa5ef122d3d5f390e2c75711a0b946410f2d6ac3a0f77d1f6"
1628
+ dependencies = [
1629
+ "bitflags 2.11.0",
1630
+ "bytemuck",
1631
+ "js-sys",
1632
+ "log",
1633
+ "raw-window-handle",
1634
+ "web-sys",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "winapi"
1639
+ version = "0.3.9"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1642
+ dependencies = [
1643
+ "winapi-i686-pc-windows-gnu",
1644
+ "winapi-x86_64-pc-windows-gnu",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "winapi-i686-pc-windows-gnu"
1649
+ version = "0.4.0"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1652
+
1653
+ [[package]]
1654
+ name = "winapi-util"
1655
+ version = "0.1.11"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1658
+ dependencies = [
1659
+ "windows-sys 0.61.2",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "winapi-x86_64-pc-windows-gnu"
1664
+ version = "0.4.0"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1667
+
1668
+ [[package]]
1669
+ name = "windows"
1670
+ version = "0.62.2"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
1673
+ dependencies = [
1674
+ "windows-collections",
1675
+ "windows-core",
1676
+ "windows-future",
1677
+ "windows-numerics",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "windows-collections"
1682
+ version = "0.3.2"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
1685
+ dependencies = [
1686
+ "windows-core",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "windows-core"
1691
+ version = "0.62.2"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1694
+ dependencies = [
1695
+ "windows-implement",
1696
+ "windows-interface",
1697
+ "windows-link",
1698
+ "windows-result",
1699
+ "windows-strings",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "windows-future"
1704
+ version = "0.3.2"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
1707
+ dependencies = [
1708
+ "windows-core",
1709
+ "windows-link",
1710
+ "windows-threading",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "windows-implement"
1715
+ version = "0.60.2"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1718
+ dependencies = [
1719
+ "proc-macro2",
1720
+ "quote",
1721
+ "syn 2.0.117",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "windows-interface"
1726
+ version = "0.59.3"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1729
+ dependencies = [
1730
+ "proc-macro2",
1731
+ "quote",
1732
+ "syn 2.0.117",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "windows-link"
1737
+ version = "0.2.1"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1740
+
1741
+ [[package]]
1742
+ name = "windows-numerics"
1743
+ version = "0.3.1"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
1746
+ dependencies = [
1747
+ "windows-core",
1748
+ "windows-link",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "windows-result"
1753
+ version = "0.4.1"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1756
+ dependencies = [
1757
+ "windows-link",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "windows-strings"
1762
+ version = "0.5.1"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1765
+ dependencies = [
1766
+ "windows-link",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "windows-sys"
1771
+ version = "0.48.0"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1774
+ dependencies = [
1775
+ "windows-targets",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "windows-sys"
1780
+ version = "0.61.2"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1783
+ dependencies = [
1784
+ "windows-link",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "windows-targets"
1789
+ version = "0.48.5"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1792
+ dependencies = [
1793
+ "windows_aarch64_gnullvm",
1794
+ "windows_aarch64_msvc",
1795
+ "windows_i686_gnu",
1796
+ "windows_i686_msvc",
1797
+ "windows_x86_64_gnu",
1798
+ "windows_x86_64_gnullvm",
1799
+ "windows_x86_64_msvc",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "windows-threading"
1804
+ version = "0.2.1"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
1807
+ dependencies = [
1808
+ "windows-link",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "windows_aarch64_gnullvm"
1813
+ version = "0.48.5"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1816
+
1817
+ [[package]]
1818
+ name = "windows_aarch64_msvc"
1819
+ version = "0.48.5"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1822
+
1823
+ [[package]]
1824
+ name = "windows_i686_gnu"
1825
+ version = "0.48.5"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1828
+
1829
+ [[package]]
1830
+ name = "windows_i686_msvc"
1831
+ version = "0.48.5"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1834
+
1835
+ [[package]]
1836
+ name = "windows_x86_64_gnu"
1837
+ version = "0.48.5"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1840
+
1841
+ [[package]]
1842
+ name = "windows_x86_64_gnullvm"
1843
+ version = "0.48.5"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1846
+
1847
+ [[package]]
1848
+ name = "windows_x86_64_msvc"
1849
+ version = "0.48.5"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1852
+
1853
+ [[package]]
1854
+ name = "xml-rs"
1855
+ version = "0.8.28"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
1858
+
1859
+ [[package]]
1860
+ name = "zerocopy"
1861
+ version = "0.8.48"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1864
+ dependencies = [
1865
+ "zerocopy-derive",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "zerocopy-derive"
1870
+ version = "0.8.48"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1873
+ dependencies = [
1874
+ "proc-macro2",
1875
+ "quote",
1876
+ "syn 2.0.117",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "zmij"
1881
+ version = "1.0.21"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1884
+
1885
+ [[package]]
1886
+ name = "zune-core"
1887
+ version = "0.5.1"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
1890
+
1891
+ [[package]]
1892
+ name = "zune-jpeg"
1893
+ version = "0.5.13"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "ec5f41c76397b7da451efd19915684f727d7e1d516384ca6bd0ec43ec94de23c"
1896
+ dependencies = [
1897
+ "zune-core",
1898
+ ]