@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,3310 @@
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 = "anyhow"
28
+ version = "1.0.102"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
31
+
32
+ [[package]]
33
+ name = "arboard"
34
+ version = "3.6.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
37
+ dependencies = [
38
+ "clipboard-win",
39
+ "image",
40
+ "log",
41
+ "objc2",
42
+ "objc2-app-kit",
43
+ "objc2-core-foundation",
44
+ "objc2-core-graphics",
45
+ "objc2-foundation",
46
+ "parking_lot",
47
+ "percent-encoding",
48
+ "windows-sys 0.60.2",
49
+ "x11rb",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "arrayvec"
54
+ version = "0.7.6"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
57
+
58
+ [[package]]
59
+ name = "ash"
60
+ version = "0.38.0+1.3.281"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
63
+ dependencies = [
64
+ "libloading",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "ashpd"
69
+ version = "0.11.1"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "d2f3f79755c74fd155000314eb349864caa787c6592eace6c6882dad873d9c39"
72
+ dependencies = [
73
+ "async-fs",
74
+ "async-net",
75
+ "enumflags2",
76
+ "futures-channel",
77
+ "futures-util",
78
+ "rand",
79
+ "raw-window-handle",
80
+ "serde",
81
+ "serde_repr",
82
+ "url",
83
+ "wayland-backend",
84
+ "wayland-client",
85
+ "wayland-protocols",
86
+ "zbus",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "async-broadcast"
91
+ version = "0.7.2"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
94
+ dependencies = [
95
+ "event-listener",
96
+ "event-listener-strategy",
97
+ "futures-core",
98
+ "pin-project-lite",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "async-channel"
103
+ version = "2.5.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
106
+ dependencies = [
107
+ "concurrent-queue",
108
+ "event-listener-strategy",
109
+ "futures-core",
110
+ "pin-project-lite",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "async-executor"
115
+ version = "1.14.0"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
118
+ dependencies = [
119
+ "async-task",
120
+ "concurrent-queue",
121
+ "fastrand",
122
+ "futures-lite",
123
+ "pin-project-lite",
124
+ "slab",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "async-fs"
129
+ version = "2.2.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5"
132
+ dependencies = [
133
+ "async-lock",
134
+ "blocking",
135
+ "futures-lite",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "async-io"
140
+ version = "2.6.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
143
+ dependencies = [
144
+ "autocfg",
145
+ "cfg-if",
146
+ "concurrent-queue",
147
+ "futures-io",
148
+ "futures-lite",
149
+ "parking",
150
+ "polling",
151
+ "rustix",
152
+ "slab",
153
+ "windows-sys 0.61.2",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "async-lock"
158
+ version = "3.4.2"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
161
+ dependencies = [
162
+ "event-listener",
163
+ "event-listener-strategy",
164
+ "pin-project-lite",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "async-net"
169
+ version = "2.0.0"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7"
172
+ dependencies = [
173
+ "async-io",
174
+ "blocking",
175
+ "futures-lite",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "async-process"
180
+ version = "2.5.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
183
+ dependencies = [
184
+ "async-channel",
185
+ "async-io",
186
+ "async-lock",
187
+ "async-signal",
188
+ "async-task",
189
+ "blocking",
190
+ "cfg-if",
191
+ "event-listener",
192
+ "futures-lite",
193
+ "rustix",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "async-recursion"
198
+ version = "1.1.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
201
+ dependencies = [
202
+ "proc-macro2",
203
+ "quote",
204
+ "syn 2.0.117",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "async-signal"
209
+ version = "0.2.13"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
212
+ dependencies = [
213
+ "async-io",
214
+ "async-lock",
215
+ "atomic-waker",
216
+ "cfg-if",
217
+ "futures-core",
218
+ "futures-io",
219
+ "rustix",
220
+ "signal-hook-registry",
221
+ "slab",
222
+ "windows-sys 0.61.2",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "async-task"
227
+ version = "4.7.1"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
230
+
231
+ [[package]]
232
+ name = "async-trait"
233
+ version = "0.1.89"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
236
+ dependencies = [
237
+ "proc-macro2",
238
+ "quote",
239
+ "syn 2.0.117",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "atomic-waker"
244
+ version = "1.1.2"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
247
+
248
+ [[package]]
249
+ name = "autocfg"
250
+ version = "1.5.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
253
+
254
+ [[package]]
255
+ name = "base64"
256
+ version = "0.13.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
259
+
260
+ [[package]]
261
+ name = "bcdec_rs"
262
+ version = "0.2.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "f09c37bc0e9f0924b7dae9988265ef3c76c88538f41a3b06caf4bed07cee5226"
265
+
266
+ [[package]]
267
+ name = "bit-set"
268
+ version = "0.9.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "34ddef2995421ab6a5c779542c81ee77c115206f4ad9d5a8e05f4ff49716a3dd"
271
+ dependencies = [
272
+ "bit-vec",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "bit-vec"
277
+ version = "0.9.1"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
280
+
281
+ [[package]]
282
+ name = "bitflags"
283
+ version = "2.11.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
286
+
287
+ [[package]]
288
+ name = "block2"
289
+ version = "0.6.2"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
292
+ dependencies = [
293
+ "objc2",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "blocking"
298
+ version = "1.6.2"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
301
+ dependencies = [
302
+ "async-channel",
303
+ "async-task",
304
+ "futures-io",
305
+ "futures-lite",
306
+ "piper",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "bloom-macos"
311
+ version = "0.1.0"
312
+ dependencies = [
313
+ "arboard",
314
+ "bloom-shared",
315
+ "image",
316
+ "libc",
317
+ "objc2",
318
+ "objc2-app-kit",
319
+ "objc2-foundation",
320
+ "objc2-quartz-core",
321
+ "raw-window-handle",
322
+ "rfd",
323
+ "wgpu",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "bloom-shared"
328
+ version = "0.1.0"
329
+ dependencies = [
330
+ "bytemuck",
331
+ "cmake",
332
+ "earcutr",
333
+ "fontdue",
334
+ "gltf",
335
+ "half",
336
+ "image",
337
+ "image_dds",
338
+ "lewton",
339
+ "libc",
340
+ "minimp3",
341
+ "raw-window-handle",
342
+ "wgpu",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "bumpalo"
347
+ version = "3.20.2"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
350
+
351
+ [[package]]
352
+ name = "bytemuck"
353
+ version = "1.25.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
356
+ dependencies = [
357
+ "bytemuck_derive",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "bytemuck_derive"
362
+ version = "1.10.2"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
365
+ dependencies = [
366
+ "proc-macro2",
367
+ "quote",
368
+ "syn 2.0.117",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "byteorder"
373
+ version = "1.5.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
376
+
377
+ [[package]]
378
+ name = "byteorder-lite"
379
+ version = "0.1.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
382
+
383
+ [[package]]
384
+ name = "cc"
385
+ version = "1.2.57"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
388
+ dependencies = [
389
+ "find-msvc-tools",
390
+ "shlex",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "cfg-if"
395
+ version = "1.0.4"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
398
+
399
+ [[package]]
400
+ name = "cfg_aliases"
401
+ version = "0.2.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
404
+
405
+ [[package]]
406
+ name = "clipboard-win"
407
+ version = "5.4.1"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
410
+ dependencies = [
411
+ "error-code",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "cmake"
416
+ version = "0.1.58"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
419
+ dependencies = [
420
+ "cc",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "codespan-reporting"
425
+ version = "0.13.1"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
428
+ dependencies = [
429
+ "serde",
430
+ "termcolor",
431
+ "unicode-width",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "concurrent-queue"
436
+ version = "2.5.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
439
+ dependencies = [
440
+ "crossbeam-utils",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "crc32fast"
445
+ version = "1.5.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
448
+ dependencies = [
449
+ "cfg-if",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "crossbeam-utils"
454
+ version = "0.8.21"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
457
+
458
+ [[package]]
459
+ name = "crunchy"
460
+ version = "0.2.4"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
463
+
464
+ [[package]]
465
+ name = "ddsfile"
466
+ version = "0.5.2"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "479dfe1e6737aa9e96c6ac7b69689dc4c32da8383f2c12744739d76afa8b66c4"
469
+ dependencies = [
470
+ "bitflags",
471
+ "byteorder",
472
+ "enum-primitive-derive",
473
+ "num-traits",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "dispatch2"
478
+ version = "0.3.1"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
481
+ dependencies = [
482
+ "bitflags",
483
+ "block2",
484
+ "libc",
485
+ "objc2",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "displaydoc"
490
+ version = "0.2.5"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
493
+ dependencies = [
494
+ "proc-macro2",
495
+ "quote",
496
+ "syn 2.0.117",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "dlib"
501
+ version = "0.5.3"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
504
+ dependencies = [
505
+ "libloading",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "document-features"
510
+ version = "0.2.12"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
513
+ dependencies = [
514
+ "litrs",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "downcast-rs"
519
+ version = "1.2.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
522
+
523
+ [[package]]
524
+ name = "earcutr"
525
+ version = "0.4.3"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
528
+ dependencies = [
529
+ "itertools",
530
+ "num-traits",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "either"
535
+ version = "1.15.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
538
+
539
+ [[package]]
540
+ name = "endi"
541
+ version = "1.1.1"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
544
+
545
+ [[package]]
546
+ name = "enum-primitive-derive"
547
+ version = "0.2.2"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "c375b9c5eadb68d0a6efee2999fef292f45854c3444c86f09d8ab086ba942b0e"
550
+ dependencies = [
551
+ "num-traits",
552
+ "quote",
553
+ "syn 1.0.109",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "enumflags2"
558
+ version = "0.7.12"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
561
+ dependencies = [
562
+ "enumflags2_derive",
563
+ "serde",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "enumflags2_derive"
568
+ version = "0.7.12"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
571
+ dependencies = [
572
+ "proc-macro2",
573
+ "quote",
574
+ "syn 2.0.117",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "equivalent"
579
+ version = "1.0.2"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
582
+
583
+ [[package]]
584
+ name = "errno"
585
+ version = "0.3.14"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
588
+ dependencies = [
589
+ "libc",
590
+ "windows-sys 0.61.2",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "error-code"
595
+ version = "3.3.2"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
598
+
599
+ [[package]]
600
+ name = "event-listener"
601
+ version = "5.4.1"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
604
+ dependencies = [
605
+ "concurrent-queue",
606
+ "parking",
607
+ "pin-project-lite",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "event-listener-strategy"
612
+ version = "0.5.4"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
615
+ dependencies = [
616
+ "event-listener",
617
+ "pin-project-lite",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "fastrand"
622
+ version = "2.4.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
625
+
626
+ [[package]]
627
+ name = "fax"
628
+ version = "0.2.6"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
631
+ dependencies = [
632
+ "fax_derive",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "fax_derive"
637
+ version = "0.2.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
640
+ dependencies = [
641
+ "proc-macro2",
642
+ "quote",
643
+ "syn 2.0.117",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "fdeflate"
648
+ version = "0.3.7"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
651
+ dependencies = [
652
+ "simd-adler32",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "find-msvc-tools"
657
+ version = "0.1.9"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
660
+
661
+ [[package]]
662
+ name = "flate2"
663
+ version = "1.1.9"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
666
+ dependencies = [
667
+ "crc32fast",
668
+ "miniz_oxide",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "foldhash"
673
+ version = "0.1.5"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
676
+
677
+ [[package]]
678
+ name = "foldhash"
679
+ version = "0.2.0"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
682
+
683
+ [[package]]
684
+ name = "fontdue"
685
+ version = "0.9.3"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b"
688
+ dependencies = [
689
+ "hashbrown 0.15.5",
690
+ "ttf-parser",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "form_urlencoded"
695
+ version = "1.2.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
698
+ dependencies = [
699
+ "percent-encoding",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "futures-channel"
704
+ version = "0.3.32"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
707
+ dependencies = [
708
+ "futures-core",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "futures-core"
713
+ version = "0.3.32"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
716
+
717
+ [[package]]
718
+ name = "futures-io"
719
+ version = "0.3.32"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
722
+
723
+ [[package]]
724
+ name = "futures-lite"
725
+ version = "2.6.1"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
728
+ dependencies = [
729
+ "fastrand",
730
+ "futures-core",
731
+ "futures-io",
732
+ "parking",
733
+ "pin-project-lite",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "futures-macro"
738
+ version = "0.3.32"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
741
+ dependencies = [
742
+ "proc-macro2",
743
+ "quote",
744
+ "syn 2.0.117",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "futures-task"
749
+ version = "0.3.32"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
752
+
753
+ [[package]]
754
+ name = "futures-util"
755
+ version = "0.3.32"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
758
+ dependencies = [
759
+ "futures-core",
760
+ "futures-io",
761
+ "futures-macro",
762
+ "futures-task",
763
+ "memchr",
764
+ "pin-project-lite",
765
+ "slab",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "gethostname"
770
+ version = "1.1.0"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
773
+ dependencies = [
774
+ "rustix",
775
+ "windows-link",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "getrandom"
780
+ version = "0.3.4"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
783
+ dependencies = [
784
+ "cfg-if",
785
+ "libc",
786
+ "r-efi 5.3.0",
787
+ "wasip2",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "getrandom"
792
+ version = "0.4.2"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
795
+ dependencies = [
796
+ "cfg-if",
797
+ "libc",
798
+ "r-efi 6.0.0",
799
+ "wasip2",
800
+ "wasip3",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "gl_generator"
805
+ version = "0.14.0"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
808
+ dependencies = [
809
+ "khronos_api",
810
+ "log",
811
+ "xml-rs",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "glow"
816
+ version = "0.17.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "29038e1c483364cc6bb3cf78feee1816002e127c331a1eec55a4d202b9e1adb5"
819
+ dependencies = [
820
+ "js-sys",
821
+ "slotmap",
822
+ "wasm-bindgen",
823
+ "web-sys",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "gltf"
828
+ version = "1.4.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "e3ce1918195723ce6ac74e80542c5a96a40c2b26162c1957a5cd70799b8cacf7"
831
+ dependencies = [
832
+ "base64",
833
+ "byteorder",
834
+ "gltf-json",
835
+ "image",
836
+ "lazy_static",
837
+ "serde_json",
838
+ "urlencoding",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "gltf-derive"
843
+ version = "1.4.1"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "14070e711538afba5d6c807edb74bcb84e5dbb9211a3bf5dea0dfab5b24f4c51"
846
+ dependencies = [
847
+ "inflections",
848
+ "proc-macro2",
849
+ "quote",
850
+ "syn 2.0.117",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "gltf-json"
855
+ version = "1.4.1"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "e6176f9d60a7eab0a877e8e96548605dedbde9190a7ae1e80bbcc1c9af03ab14"
858
+ dependencies = [
859
+ "gltf-derive",
860
+ "serde",
861
+ "serde_derive",
862
+ "serde_json",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "glutin_wgl_sys"
867
+ version = "0.6.1"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
870
+ dependencies = [
871
+ "gl_generator",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "gpu-allocator"
876
+ version = "0.28.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
879
+ dependencies = [
880
+ "ash",
881
+ "hashbrown 0.16.1",
882
+ "log",
883
+ "presser",
884
+ "thiserror 2.0.18",
885
+ "windows",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "gpu-descriptor"
890
+ version = "0.3.2"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
893
+ dependencies = [
894
+ "bitflags",
895
+ "gpu-descriptor-types",
896
+ "hashbrown 0.15.5",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "gpu-descriptor-types"
901
+ version = "0.2.0"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
904
+ dependencies = [
905
+ "bitflags",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "half"
910
+ version = "2.7.1"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
913
+ dependencies = [
914
+ "bytemuck",
915
+ "cfg-if",
916
+ "crunchy",
917
+ "num-traits",
918
+ "zerocopy",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "hashbrown"
923
+ version = "0.15.5"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
926
+ dependencies = [
927
+ "allocator-api2",
928
+ "equivalent",
929
+ "foldhash 0.1.5",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "hashbrown"
934
+ version = "0.16.1"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
937
+ dependencies = [
938
+ "allocator-api2",
939
+ "equivalent",
940
+ "foldhash 0.2.0",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "heck"
945
+ version = "0.5.0"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
948
+
949
+ [[package]]
950
+ name = "hermit-abi"
951
+ version = "0.5.2"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
954
+
955
+ [[package]]
956
+ name = "hex"
957
+ version = "0.4.3"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
960
+
961
+ [[package]]
962
+ name = "hexf-parse"
963
+ version = "0.2.1"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
966
+
967
+ [[package]]
968
+ name = "icu_collections"
969
+ version = "2.2.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
972
+ dependencies = [
973
+ "displaydoc",
974
+ "potential_utf",
975
+ "utf8_iter",
976
+ "yoke",
977
+ "zerofrom",
978
+ "zerovec",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "icu_locale_core"
983
+ version = "2.2.0"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
986
+ dependencies = [
987
+ "displaydoc",
988
+ "litemap",
989
+ "tinystr",
990
+ "writeable",
991
+ "zerovec",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "icu_normalizer"
996
+ version = "2.2.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
999
+ dependencies = [
1000
+ "icu_collections",
1001
+ "icu_normalizer_data",
1002
+ "icu_properties",
1003
+ "icu_provider",
1004
+ "smallvec",
1005
+ "zerovec",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "icu_normalizer_data"
1010
+ version = "2.2.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1013
+
1014
+ [[package]]
1015
+ name = "icu_properties"
1016
+ version = "2.2.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1019
+ dependencies = [
1020
+ "icu_collections",
1021
+ "icu_locale_core",
1022
+ "icu_properties_data",
1023
+ "icu_provider",
1024
+ "zerotrie",
1025
+ "zerovec",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "icu_properties_data"
1030
+ version = "2.2.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1033
+
1034
+ [[package]]
1035
+ name = "icu_provider"
1036
+ version = "2.2.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1039
+ dependencies = [
1040
+ "displaydoc",
1041
+ "icu_locale_core",
1042
+ "writeable",
1043
+ "yoke",
1044
+ "zerofrom",
1045
+ "zerotrie",
1046
+ "zerovec",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "id-arena"
1051
+ version = "2.3.0"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1054
+
1055
+ [[package]]
1056
+ name = "idna"
1057
+ version = "1.1.0"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1060
+ dependencies = [
1061
+ "idna_adapter",
1062
+ "smallvec",
1063
+ "utf8_iter",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "idna_adapter"
1068
+ version = "1.2.1"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1071
+ dependencies = [
1072
+ "icu_normalizer",
1073
+ "icu_properties",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "image"
1078
+ version = "0.25.10"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1081
+ dependencies = [
1082
+ "bytemuck",
1083
+ "byteorder-lite",
1084
+ "moxcms",
1085
+ "num-traits",
1086
+ "png",
1087
+ "tiff",
1088
+ "zune-core",
1089
+ "zune-jpeg",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "image_dds"
1094
+ version = "0.7.2"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "c3388630ed66c07107145ac5b13c804261f18d5daf0dd2699481888aba16cd38"
1097
+ dependencies = [
1098
+ "bcdec_rs",
1099
+ "bytemuck",
1100
+ "ddsfile",
1101
+ "half",
1102
+ "image",
1103
+ "thiserror 1.0.69",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "indexmap"
1108
+ version = "2.13.0"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1111
+ dependencies = [
1112
+ "equivalent",
1113
+ "hashbrown 0.16.1",
1114
+ "serde",
1115
+ "serde_core",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "inflections"
1120
+ version = "1.1.1"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a"
1123
+
1124
+ [[package]]
1125
+ name = "itertools"
1126
+ version = "0.11.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1129
+ dependencies = [
1130
+ "either",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "itoa"
1135
+ version = "1.0.17"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1138
+
1139
+ [[package]]
1140
+ name = "jni-sys"
1141
+ version = "0.3.0"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1144
+
1145
+ [[package]]
1146
+ name = "js-sys"
1147
+ version = "0.3.91"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1150
+ dependencies = [
1151
+ "once_cell",
1152
+ "wasm-bindgen",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "khronos-egl"
1157
+ version = "6.0.0"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
1160
+ dependencies = [
1161
+ "libc",
1162
+ "libloading",
1163
+ "pkg-config",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "khronos_api"
1168
+ version = "3.1.0"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
1171
+
1172
+ [[package]]
1173
+ name = "lazy_static"
1174
+ version = "1.5.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1177
+
1178
+ [[package]]
1179
+ name = "leb128fmt"
1180
+ version = "0.1.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1183
+
1184
+ [[package]]
1185
+ name = "lewton"
1186
+ version = "0.10.2"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030"
1189
+ dependencies = [
1190
+ "byteorder",
1191
+ "ogg",
1192
+ "tinyvec",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "libc"
1197
+ version = "0.2.183"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1200
+
1201
+ [[package]]
1202
+ name = "libloading"
1203
+ version = "0.8.9"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1206
+ dependencies = [
1207
+ "cfg-if",
1208
+ "windows-link",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "libm"
1213
+ version = "0.2.16"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1216
+
1217
+ [[package]]
1218
+ name = "linux-raw-sys"
1219
+ version = "0.12.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1222
+
1223
+ [[package]]
1224
+ name = "litemap"
1225
+ version = "0.8.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1228
+
1229
+ [[package]]
1230
+ name = "litrs"
1231
+ version = "1.0.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1234
+
1235
+ [[package]]
1236
+ name = "lock_api"
1237
+ version = "0.4.14"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1240
+ dependencies = [
1241
+ "scopeguard",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "log"
1246
+ version = "0.4.29"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1249
+
1250
+ [[package]]
1251
+ name = "mach2"
1252
+ version = "0.4.3"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1255
+ dependencies = [
1256
+ "libc",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "memchr"
1261
+ version = "2.8.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1264
+
1265
+ [[package]]
1266
+ name = "memoffset"
1267
+ version = "0.9.1"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1270
+ dependencies = [
1271
+ "autocfg",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "minimp3"
1276
+ version = "0.5.2"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "9a3ed9d34ed1a9190336a2b165bf09ac447693dfd9a61684597aaae2ee12df53"
1279
+ dependencies = [
1280
+ "minimp3-sys",
1281
+ "slice-ring-buffer",
1282
+ "thiserror 1.0.69",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "minimp3-sys"
1287
+ version = "0.3.2"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90"
1290
+ dependencies = [
1291
+ "cc",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "miniz_oxide"
1296
+ version = "0.8.9"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1299
+ dependencies = [
1300
+ "adler2",
1301
+ "simd-adler32",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "moxcms"
1306
+ version = "0.8.1"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1309
+ dependencies = [
1310
+ "num-traits",
1311
+ "pxfm",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "naga"
1316
+ version = "29.0.1"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "aa2630921705b9b01dcdd0b6864b9562ca3c1951eecd0f0c4f5f04f61e412647"
1319
+ dependencies = [
1320
+ "arrayvec",
1321
+ "bit-set",
1322
+ "bitflags",
1323
+ "cfg-if",
1324
+ "cfg_aliases",
1325
+ "codespan-reporting",
1326
+ "half",
1327
+ "hashbrown 0.16.1",
1328
+ "hexf-parse",
1329
+ "indexmap",
1330
+ "libm",
1331
+ "log",
1332
+ "num-traits",
1333
+ "once_cell",
1334
+ "rustc-hash",
1335
+ "spirv",
1336
+ "thiserror 2.0.18",
1337
+ "unicode-ident",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "ndk-sys"
1342
+ version = "0.6.0+11769913"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1345
+ dependencies = [
1346
+ "jni-sys",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "num-traits"
1351
+ version = "0.2.19"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1354
+ dependencies = [
1355
+ "autocfg",
1356
+ "libm",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "objc2"
1361
+ version = "0.6.4"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1364
+ dependencies = [
1365
+ "objc2-encode",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "objc2-app-kit"
1370
+ version = "0.3.2"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
1373
+ dependencies = [
1374
+ "bitflags",
1375
+ "block2",
1376
+ "libc",
1377
+ "objc2",
1378
+ "objc2-cloud-kit",
1379
+ "objc2-core-data",
1380
+ "objc2-core-foundation",
1381
+ "objc2-core-graphics",
1382
+ "objc2-core-image",
1383
+ "objc2-core-text",
1384
+ "objc2-core-video",
1385
+ "objc2-foundation",
1386
+ "objc2-quartz-core",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "objc2-cloud-kit"
1391
+ version = "0.3.2"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
1394
+ dependencies = [
1395
+ "bitflags",
1396
+ "objc2",
1397
+ "objc2-foundation",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "objc2-core-data"
1402
+ version = "0.3.2"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
1405
+ dependencies = [
1406
+ "bitflags",
1407
+ "objc2",
1408
+ "objc2-foundation",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "objc2-core-foundation"
1413
+ version = "0.3.2"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1416
+ dependencies = [
1417
+ "bitflags",
1418
+ "dispatch2",
1419
+ "objc2",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "objc2-core-graphics"
1424
+ version = "0.3.2"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
1427
+ dependencies = [
1428
+ "bitflags",
1429
+ "dispatch2",
1430
+ "objc2",
1431
+ "objc2-core-foundation",
1432
+ "objc2-io-surface",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "objc2-core-image"
1437
+ version = "0.3.2"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
1440
+ dependencies = [
1441
+ "objc2",
1442
+ "objc2-foundation",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "objc2-core-text"
1447
+ version = "0.3.2"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
1450
+ dependencies = [
1451
+ "bitflags",
1452
+ "objc2",
1453
+ "objc2-core-foundation",
1454
+ "objc2-core-graphics",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "objc2-core-video"
1459
+ version = "0.3.2"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6"
1462
+ dependencies = [
1463
+ "bitflags",
1464
+ "objc2",
1465
+ "objc2-core-foundation",
1466
+ "objc2-core-graphics",
1467
+ "objc2-io-surface",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "objc2-encode"
1472
+ version = "4.1.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1475
+
1476
+ [[package]]
1477
+ name = "objc2-foundation"
1478
+ version = "0.3.2"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
1481
+ dependencies = [
1482
+ "bitflags",
1483
+ "block2",
1484
+ "libc",
1485
+ "objc2",
1486
+ "objc2-core-foundation",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "objc2-io-surface"
1491
+ version = "0.3.2"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
1494
+ dependencies = [
1495
+ "bitflags",
1496
+ "objc2",
1497
+ "objc2-core-foundation",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "objc2-metal"
1502
+ version = "0.3.2"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
1505
+ dependencies = [
1506
+ "bitflags",
1507
+ "block2",
1508
+ "objc2",
1509
+ "objc2-foundation",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "objc2-quartz-core"
1514
+ version = "0.3.2"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
1517
+ dependencies = [
1518
+ "bitflags",
1519
+ "block2",
1520
+ "libc",
1521
+ "objc2",
1522
+ "objc2-core-foundation",
1523
+ "objc2-core-graphics",
1524
+ "objc2-core-video",
1525
+ "objc2-foundation",
1526
+ "objc2-metal",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "ogg"
1531
+ version = "0.8.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e"
1534
+ dependencies = [
1535
+ "byteorder",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "once_cell"
1540
+ version = "1.21.4"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1543
+
1544
+ [[package]]
1545
+ name = "ordered-float"
1546
+ version = "5.3.0"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
1549
+ dependencies = [
1550
+ "num-traits",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "ordered-stream"
1555
+ version = "0.2.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
1558
+ dependencies = [
1559
+ "futures-core",
1560
+ "pin-project-lite",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "parking"
1565
+ version = "2.2.1"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1568
+
1569
+ [[package]]
1570
+ name = "parking_lot"
1571
+ version = "0.12.5"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1574
+ dependencies = [
1575
+ "lock_api",
1576
+ "parking_lot_core",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "parking_lot_core"
1581
+ version = "0.9.12"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1584
+ dependencies = [
1585
+ "cfg-if",
1586
+ "libc",
1587
+ "redox_syscall",
1588
+ "smallvec",
1589
+ "windows-link",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "percent-encoding"
1594
+ version = "2.3.2"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1597
+
1598
+ [[package]]
1599
+ name = "pin-project-lite"
1600
+ version = "0.2.17"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1603
+
1604
+ [[package]]
1605
+ name = "piper"
1606
+ version = "0.2.5"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
1609
+ dependencies = [
1610
+ "atomic-waker",
1611
+ "fastrand",
1612
+ "futures-io",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "pkg-config"
1617
+ version = "0.3.32"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1620
+
1621
+ [[package]]
1622
+ name = "png"
1623
+ version = "0.18.1"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1626
+ dependencies = [
1627
+ "bitflags",
1628
+ "crc32fast",
1629
+ "fdeflate",
1630
+ "flate2",
1631
+ "miniz_oxide",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "polling"
1636
+ version = "3.11.0"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1639
+ dependencies = [
1640
+ "cfg-if",
1641
+ "concurrent-queue",
1642
+ "hermit-abi",
1643
+ "pin-project-lite",
1644
+ "rustix",
1645
+ "windows-sys 0.61.2",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "pollster"
1650
+ version = "0.4.0"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
1653
+
1654
+ [[package]]
1655
+ name = "portable-atomic"
1656
+ version = "1.13.1"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1659
+
1660
+ [[package]]
1661
+ name = "portable-atomic-util"
1662
+ version = "0.2.7"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1665
+ dependencies = [
1666
+ "portable-atomic",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "potential_utf"
1671
+ version = "0.1.5"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1674
+ dependencies = [
1675
+ "zerovec",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "ppv-lite86"
1680
+ version = "0.2.21"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1683
+ dependencies = [
1684
+ "zerocopy",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "presser"
1689
+ version = "0.3.1"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
1692
+
1693
+ [[package]]
1694
+ name = "prettyplease"
1695
+ version = "0.2.37"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1698
+ dependencies = [
1699
+ "proc-macro2",
1700
+ "syn 2.0.117",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "proc-macro-crate"
1705
+ version = "3.5.0"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1708
+ dependencies = [
1709
+ "toml_edit",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "proc-macro2"
1714
+ version = "1.0.106"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1717
+ dependencies = [
1718
+ "unicode-ident",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "profiling"
1723
+ version = "1.0.17"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
1726
+
1727
+ [[package]]
1728
+ name = "pxfm"
1729
+ version = "0.1.28"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
1732
+
1733
+ [[package]]
1734
+ name = "quick-error"
1735
+ version = "2.0.1"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1738
+
1739
+ [[package]]
1740
+ name = "quick-xml"
1741
+ version = "0.39.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
1744
+ dependencies = [
1745
+ "memchr",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "quote"
1750
+ version = "1.0.45"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1753
+ dependencies = [
1754
+ "proc-macro2",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "r-efi"
1759
+ version = "5.3.0"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1762
+
1763
+ [[package]]
1764
+ name = "r-efi"
1765
+ version = "6.0.0"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1768
+
1769
+ [[package]]
1770
+ name = "rand"
1771
+ version = "0.9.2"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1774
+ dependencies = [
1775
+ "rand_chacha",
1776
+ "rand_core",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "rand_chacha"
1781
+ version = "0.9.0"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1784
+ dependencies = [
1785
+ "ppv-lite86",
1786
+ "rand_core",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "rand_core"
1791
+ version = "0.9.5"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1794
+ dependencies = [
1795
+ "getrandom 0.3.4",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "range-alloc"
1800
+ version = "0.1.5"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "ca45419789ae5a7899559e9512e58ca889e41f04f1f2445e9f4b290ceccd1d08"
1803
+
1804
+ [[package]]
1805
+ name = "raw-window-handle"
1806
+ version = "0.6.2"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
1809
+
1810
+ [[package]]
1811
+ name = "raw-window-metal"
1812
+ version = "1.1.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "40d213455a5f1dc59214213c7330e074ddf8114c9a42411eb890c767357ce135"
1815
+ dependencies = [
1816
+ "objc2",
1817
+ "objc2-core-foundation",
1818
+ "objc2-foundation",
1819
+ "objc2-quartz-core",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "redox_syscall"
1824
+ version = "0.5.18"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1827
+ dependencies = [
1828
+ "bitflags",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "renderdoc-sys"
1833
+ version = "1.1.0"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
1836
+
1837
+ [[package]]
1838
+ name = "rfd"
1839
+ version = "0.15.4"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed"
1842
+ dependencies = [
1843
+ "ashpd",
1844
+ "block2",
1845
+ "dispatch2",
1846
+ "js-sys",
1847
+ "log",
1848
+ "objc2",
1849
+ "objc2-app-kit",
1850
+ "objc2-core-foundation",
1851
+ "objc2-foundation",
1852
+ "pollster",
1853
+ "raw-window-handle",
1854
+ "urlencoding",
1855
+ "wasm-bindgen",
1856
+ "wasm-bindgen-futures",
1857
+ "web-sys",
1858
+ "windows-sys 0.59.0",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "rustc-hash"
1863
+ version = "1.1.0"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1866
+
1867
+ [[package]]
1868
+ name = "rustix"
1869
+ version = "1.1.4"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1872
+ dependencies = [
1873
+ "bitflags",
1874
+ "errno",
1875
+ "libc",
1876
+ "linux-raw-sys",
1877
+ "windows-sys 0.61.2",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "rustversion"
1882
+ version = "1.0.22"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1885
+
1886
+ [[package]]
1887
+ name = "scoped-tls"
1888
+ version = "1.0.1"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1891
+
1892
+ [[package]]
1893
+ name = "scopeguard"
1894
+ version = "1.2.0"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1897
+
1898
+ [[package]]
1899
+ name = "semver"
1900
+ version = "1.0.28"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1903
+
1904
+ [[package]]
1905
+ name = "serde"
1906
+ version = "1.0.228"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1909
+ dependencies = [
1910
+ "serde_core",
1911
+ "serde_derive",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "serde_core"
1916
+ version = "1.0.228"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1919
+ dependencies = [
1920
+ "serde_derive",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "serde_derive"
1925
+ version = "1.0.228"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1928
+ dependencies = [
1929
+ "proc-macro2",
1930
+ "quote",
1931
+ "syn 2.0.117",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "serde_json"
1936
+ version = "1.0.149"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1939
+ dependencies = [
1940
+ "itoa",
1941
+ "memchr",
1942
+ "serde",
1943
+ "serde_core",
1944
+ "zmij",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "serde_repr"
1949
+ version = "0.1.20"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1952
+ dependencies = [
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "syn 2.0.117",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "shlex"
1960
+ version = "1.3.0"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1963
+
1964
+ [[package]]
1965
+ name = "signal-hook-registry"
1966
+ version = "1.4.8"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1969
+ dependencies = [
1970
+ "errno",
1971
+ "libc",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "simd-adler32"
1976
+ version = "0.3.8"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1979
+
1980
+ [[package]]
1981
+ name = "slab"
1982
+ version = "0.4.12"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1985
+
1986
+ [[package]]
1987
+ name = "slice-ring-buffer"
1988
+ version = "0.3.4"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "84ae312bda09b2368f79f985fdb4df4a0b5cbc75546b511303972d195f8c27d6"
1991
+ dependencies = [
1992
+ "libc",
1993
+ "mach2",
1994
+ "winapi",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "slotmap"
1999
+ version = "1.1.1"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
2002
+ dependencies = [
2003
+ "version_check",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "smallvec"
2008
+ version = "1.15.1"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2011
+
2012
+ [[package]]
2013
+ name = "spirv"
2014
+ version = "0.4.0+sdk-1.4.341.0"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "d9571ea910ebd84c86af4b3ed27f9dbdc6ad06f17c5f96146b2b671e2976744f"
2017
+ dependencies = [
2018
+ "bitflags",
2019
+ ]
2020
+
2021
+ [[package]]
2022
+ name = "stable_deref_trait"
2023
+ version = "1.2.1"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2026
+
2027
+ [[package]]
2028
+ name = "static_assertions"
2029
+ version = "1.1.0"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2032
+
2033
+ [[package]]
2034
+ name = "syn"
2035
+ version = "1.0.109"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2038
+ dependencies = [
2039
+ "proc-macro2",
2040
+ "quote",
2041
+ "unicode-ident",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "syn"
2046
+ version = "2.0.117"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2049
+ dependencies = [
2050
+ "proc-macro2",
2051
+ "quote",
2052
+ "unicode-ident",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "synstructure"
2057
+ version = "0.13.2"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2060
+ dependencies = [
2061
+ "proc-macro2",
2062
+ "quote",
2063
+ "syn 2.0.117",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "tempfile"
2068
+ version = "3.27.0"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2071
+ dependencies = [
2072
+ "fastrand",
2073
+ "getrandom 0.4.2",
2074
+ "once_cell",
2075
+ "rustix",
2076
+ "windows-sys 0.61.2",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "termcolor"
2081
+ version = "1.4.1"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2084
+ dependencies = [
2085
+ "winapi-util",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "thiserror"
2090
+ version = "1.0.69"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2093
+ dependencies = [
2094
+ "thiserror-impl 1.0.69",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "thiserror"
2099
+ version = "2.0.18"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2102
+ dependencies = [
2103
+ "thiserror-impl 2.0.18",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "thiserror-impl"
2108
+ version = "1.0.69"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2111
+ dependencies = [
2112
+ "proc-macro2",
2113
+ "quote",
2114
+ "syn 2.0.117",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "thiserror-impl"
2119
+ version = "2.0.18"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2122
+ dependencies = [
2123
+ "proc-macro2",
2124
+ "quote",
2125
+ "syn 2.0.117",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "tiff"
2130
+ version = "0.11.3"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
2133
+ dependencies = [
2134
+ "fax",
2135
+ "flate2",
2136
+ "half",
2137
+ "quick-error",
2138
+ "weezl",
2139
+ "zune-jpeg",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "tinystr"
2144
+ version = "0.8.3"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2147
+ dependencies = [
2148
+ "displaydoc",
2149
+ "zerovec",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "tinyvec"
2154
+ version = "1.11.0"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2157
+ dependencies = [
2158
+ "tinyvec_macros",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "tinyvec_macros"
2163
+ version = "0.1.1"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2166
+
2167
+ [[package]]
2168
+ name = "toml_datetime"
2169
+ version = "1.1.1+spec-1.1.0"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2172
+ dependencies = [
2173
+ "serde_core",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "toml_edit"
2178
+ version = "0.25.10+spec-1.1.0"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "a82418ca169e235e6c399a84e395ab6debeb3bc90edc959bf0f48647c6a32d1b"
2181
+ dependencies = [
2182
+ "indexmap",
2183
+ "toml_datetime",
2184
+ "toml_parser",
2185
+ "winnow 1.0.1",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "toml_parser"
2190
+ version = "1.1.2+spec-1.1.0"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2193
+ dependencies = [
2194
+ "winnow 1.0.1",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "tracing"
2199
+ version = "0.1.44"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2202
+ dependencies = [
2203
+ "pin-project-lite",
2204
+ "tracing-attributes",
2205
+ "tracing-core",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "tracing-attributes"
2210
+ version = "0.1.31"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2213
+ dependencies = [
2214
+ "proc-macro2",
2215
+ "quote",
2216
+ "syn 2.0.117",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "tracing-core"
2221
+ version = "0.1.36"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2224
+ dependencies = [
2225
+ "once_cell",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "ttf-parser"
2230
+ version = "0.21.1"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
2233
+
2234
+ [[package]]
2235
+ name = "uds_windows"
2236
+ version = "1.2.1"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
2239
+ dependencies = [
2240
+ "memoffset",
2241
+ "tempfile",
2242
+ "windows-sys 0.61.2",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "unicode-ident"
2247
+ version = "1.0.24"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2250
+
2251
+ [[package]]
2252
+ name = "unicode-width"
2253
+ version = "0.1.14"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2256
+
2257
+ [[package]]
2258
+ name = "unicode-xid"
2259
+ version = "0.2.6"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2262
+
2263
+ [[package]]
2264
+ name = "url"
2265
+ version = "2.5.8"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2268
+ dependencies = [
2269
+ "form_urlencoded",
2270
+ "idna",
2271
+ "percent-encoding",
2272
+ "serde",
2273
+ "serde_derive",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "urlencoding"
2278
+ version = "2.1.3"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2281
+
2282
+ [[package]]
2283
+ name = "utf8_iter"
2284
+ version = "1.0.4"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2287
+
2288
+ [[package]]
2289
+ name = "uuid"
2290
+ version = "1.23.0"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
2293
+ dependencies = [
2294
+ "js-sys",
2295
+ "serde_core",
2296
+ "wasm-bindgen",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "version_check"
2301
+ version = "0.9.5"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2304
+
2305
+ [[package]]
2306
+ name = "wasip2"
2307
+ version = "1.0.2+wasi-0.2.9"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2310
+ dependencies = [
2311
+ "wit-bindgen",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "wasip3"
2316
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2319
+ dependencies = [
2320
+ "wit-bindgen",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "wasm-bindgen"
2325
+ version = "0.2.114"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
2328
+ dependencies = [
2329
+ "cfg-if",
2330
+ "once_cell",
2331
+ "rustversion",
2332
+ "wasm-bindgen-macro",
2333
+ "wasm-bindgen-shared",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "wasm-bindgen-futures"
2338
+ version = "0.4.64"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
2341
+ dependencies = [
2342
+ "cfg-if",
2343
+ "futures-util",
2344
+ "js-sys",
2345
+ "once_cell",
2346
+ "wasm-bindgen",
2347
+ "web-sys",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "wasm-bindgen-macro"
2352
+ version = "0.2.114"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2355
+ dependencies = [
2356
+ "quote",
2357
+ "wasm-bindgen-macro-support",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "wasm-bindgen-macro-support"
2362
+ version = "0.2.114"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2365
+ dependencies = [
2366
+ "bumpalo",
2367
+ "proc-macro2",
2368
+ "quote",
2369
+ "syn 2.0.117",
2370
+ "wasm-bindgen-shared",
2371
+ ]
2372
+
2373
+ [[package]]
2374
+ name = "wasm-bindgen-shared"
2375
+ version = "0.2.114"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2378
+ dependencies = [
2379
+ "unicode-ident",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "wasm-encoder"
2384
+ version = "0.244.0"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2387
+ dependencies = [
2388
+ "leb128fmt",
2389
+ "wasmparser",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "wasm-metadata"
2394
+ version = "0.244.0"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2397
+ dependencies = [
2398
+ "anyhow",
2399
+ "indexmap",
2400
+ "wasm-encoder",
2401
+ "wasmparser",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "wasmparser"
2406
+ version = "0.244.0"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2409
+ dependencies = [
2410
+ "bitflags",
2411
+ "hashbrown 0.15.5",
2412
+ "indexmap",
2413
+ "semver",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "wayland-backend"
2418
+ version = "0.3.15"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "2857dd20b54e916ec7253b3d6b4d5c4d7d4ca2c33c2e11c6c76a99bd8744755d"
2421
+ dependencies = [
2422
+ "cc",
2423
+ "downcast-rs",
2424
+ "rustix",
2425
+ "scoped-tls",
2426
+ "smallvec",
2427
+ "wayland-sys",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "wayland-client"
2432
+ version = "0.31.14"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "645c7c96bb74690c3189b5c9cb4ca1627062bb23693a4fad9d8c3de958260144"
2435
+ dependencies = [
2436
+ "bitflags",
2437
+ "rustix",
2438
+ "wayland-backend",
2439
+ "wayland-scanner",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "wayland-protocols"
2444
+ version = "0.32.12"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "563a85523cade2429938e790815fd7319062103b9f4a2dc806e9b53b95982d8f"
2447
+ dependencies = [
2448
+ "bitflags",
2449
+ "wayland-backend",
2450
+ "wayland-client",
2451
+ "wayland-scanner",
2452
+ ]
2453
+
2454
+ [[package]]
2455
+ name = "wayland-scanner"
2456
+ version = "0.31.10"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "9c324a910fd86ebdc364a3e61ec1f11737d3b1d6c273c0239ee8ff4bc0d24b4a"
2459
+ dependencies = [
2460
+ "proc-macro2",
2461
+ "quick-xml",
2462
+ "quote",
2463
+ ]
2464
+
2465
+ [[package]]
2466
+ name = "wayland-sys"
2467
+ version = "0.31.11"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
2470
+ dependencies = [
2471
+ "dlib",
2472
+ "log",
2473
+ "once_cell",
2474
+ "pkg-config",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "web-sys"
2479
+ version = "0.3.91"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
2482
+ dependencies = [
2483
+ "js-sys",
2484
+ "wasm-bindgen",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "weezl"
2489
+ version = "0.1.12"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
2492
+
2493
+ [[package]]
2494
+ name = "wgpu"
2495
+ version = "29.0.1"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "72c239a9a747bbd379590985bac952c2e53cb19873f7072b3370c6a6a8e06837"
2498
+ dependencies = [
2499
+ "arrayvec",
2500
+ "bitflags",
2501
+ "bytemuck",
2502
+ "cfg-if",
2503
+ "cfg_aliases",
2504
+ "document-features",
2505
+ "hashbrown 0.16.1",
2506
+ "js-sys",
2507
+ "log",
2508
+ "naga",
2509
+ "parking_lot",
2510
+ "portable-atomic",
2511
+ "profiling",
2512
+ "raw-window-handle",
2513
+ "smallvec",
2514
+ "static_assertions",
2515
+ "wasm-bindgen",
2516
+ "wasm-bindgen-futures",
2517
+ "web-sys",
2518
+ "wgpu-core",
2519
+ "wgpu-hal",
2520
+ "wgpu-types",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "wgpu-core"
2525
+ version = "29.0.1"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "1e80ac6cf1895df6342f87d975162108f9d98772a0d74bc404ab7304ac29469e"
2528
+ dependencies = [
2529
+ "arrayvec",
2530
+ "bit-set",
2531
+ "bit-vec",
2532
+ "bitflags",
2533
+ "bytemuck",
2534
+ "cfg_aliases",
2535
+ "document-features",
2536
+ "hashbrown 0.16.1",
2537
+ "indexmap",
2538
+ "log",
2539
+ "naga",
2540
+ "once_cell",
2541
+ "parking_lot",
2542
+ "portable-atomic",
2543
+ "profiling",
2544
+ "raw-window-handle",
2545
+ "rustc-hash",
2546
+ "smallvec",
2547
+ "thiserror 2.0.18",
2548
+ "wgpu-core-deps-apple",
2549
+ "wgpu-core-deps-emscripten",
2550
+ "wgpu-core-deps-windows-linux-android",
2551
+ "wgpu-hal",
2552
+ "wgpu-naga-bridge",
2553
+ "wgpu-types",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "wgpu-core-deps-apple"
2558
+ version = "29.0.0"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "43acd053312501689cd92a01a9638d37f3e41a5fd9534875efa8917ee2d11ac0"
2561
+ dependencies = [
2562
+ "wgpu-hal",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "wgpu-core-deps-emscripten"
2567
+ version = "29.0.0"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "ef043bf135cc68b6f667c55ff4e345ce2b5924d75bad36a47921b0287ca4b24a"
2570
+ dependencies = [
2571
+ "wgpu-hal",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "wgpu-core-deps-windows-linux-android"
2576
+ version = "29.0.0"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "725d5c006a8c02967b6d93ef04f6537ec4593313e330cfe86d9d3f946eb90f28"
2579
+ dependencies = [
2580
+ "wgpu-hal",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "wgpu-hal"
2585
+ version = "29.0.1"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "89a47aef47636562f3937285af4c44b4b5b404b46577471411cc5313a921da7e"
2588
+ dependencies = [
2589
+ "android_system_properties",
2590
+ "arrayvec",
2591
+ "ash",
2592
+ "bit-set",
2593
+ "bitflags",
2594
+ "block2",
2595
+ "bytemuck",
2596
+ "cfg-if",
2597
+ "cfg_aliases",
2598
+ "glow",
2599
+ "glutin_wgl_sys",
2600
+ "gpu-allocator",
2601
+ "gpu-descriptor",
2602
+ "hashbrown 0.16.1",
2603
+ "js-sys",
2604
+ "khronos-egl",
2605
+ "libc",
2606
+ "libloading",
2607
+ "log",
2608
+ "naga",
2609
+ "ndk-sys",
2610
+ "objc2",
2611
+ "objc2-core-foundation",
2612
+ "objc2-foundation",
2613
+ "objc2-metal",
2614
+ "objc2-quartz-core",
2615
+ "once_cell",
2616
+ "ordered-float",
2617
+ "parking_lot",
2618
+ "portable-atomic",
2619
+ "portable-atomic-util",
2620
+ "profiling",
2621
+ "range-alloc",
2622
+ "raw-window-handle",
2623
+ "raw-window-metal",
2624
+ "renderdoc-sys",
2625
+ "smallvec",
2626
+ "thiserror 2.0.18",
2627
+ "wasm-bindgen",
2628
+ "wayland-sys",
2629
+ "web-sys",
2630
+ "wgpu-naga-bridge",
2631
+ "wgpu-types",
2632
+ "windows",
2633
+ "windows-core",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "wgpu-naga-bridge"
2638
+ version = "29.0.1"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "7b4684f4410da0cf95a4cb63bb5edaac022461dedb6adf0b64d0d9b5f6890d51"
2641
+ dependencies = [
2642
+ "naga",
2643
+ "wgpu-types",
2644
+ ]
2645
+
2646
+ [[package]]
2647
+ name = "wgpu-types"
2648
+ version = "29.0.1"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "ec2675540fb1a5cfa5ef122d3d5f390e2c75711a0b946410f2d6ac3a0f77d1f6"
2651
+ dependencies = [
2652
+ "bitflags",
2653
+ "bytemuck",
2654
+ "js-sys",
2655
+ "log",
2656
+ "raw-window-handle",
2657
+ "web-sys",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "winapi"
2662
+ version = "0.3.9"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2665
+ dependencies = [
2666
+ "winapi-i686-pc-windows-gnu",
2667
+ "winapi-x86_64-pc-windows-gnu",
2668
+ ]
2669
+
2670
+ [[package]]
2671
+ name = "winapi-i686-pc-windows-gnu"
2672
+ version = "0.4.0"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2675
+
2676
+ [[package]]
2677
+ name = "winapi-util"
2678
+ version = "0.1.11"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2681
+ dependencies = [
2682
+ "windows-sys 0.61.2",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "winapi-x86_64-pc-windows-gnu"
2687
+ version = "0.4.0"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2690
+
2691
+ [[package]]
2692
+ name = "windows"
2693
+ version = "0.62.2"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
2696
+ dependencies = [
2697
+ "windows-collections",
2698
+ "windows-core",
2699
+ "windows-future",
2700
+ "windows-numerics",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "windows-collections"
2705
+ version = "0.3.2"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
2708
+ dependencies = [
2709
+ "windows-core",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "windows-core"
2714
+ version = "0.62.2"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2717
+ dependencies = [
2718
+ "windows-implement",
2719
+ "windows-interface",
2720
+ "windows-link",
2721
+ "windows-result",
2722
+ "windows-strings",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "windows-future"
2727
+ version = "0.3.2"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
2730
+ dependencies = [
2731
+ "windows-core",
2732
+ "windows-link",
2733
+ "windows-threading",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "windows-implement"
2738
+ version = "0.60.2"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2741
+ dependencies = [
2742
+ "proc-macro2",
2743
+ "quote",
2744
+ "syn 2.0.117",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "windows-interface"
2749
+ version = "0.59.3"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2752
+ dependencies = [
2753
+ "proc-macro2",
2754
+ "quote",
2755
+ "syn 2.0.117",
2756
+ ]
2757
+
2758
+ [[package]]
2759
+ name = "windows-link"
2760
+ version = "0.2.1"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2763
+
2764
+ [[package]]
2765
+ name = "windows-numerics"
2766
+ version = "0.3.1"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
2769
+ dependencies = [
2770
+ "windows-core",
2771
+ "windows-link",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "windows-result"
2776
+ version = "0.4.1"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2779
+ dependencies = [
2780
+ "windows-link",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "windows-strings"
2785
+ version = "0.5.1"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2788
+ dependencies = [
2789
+ "windows-link",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "windows-sys"
2794
+ version = "0.59.0"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2797
+ dependencies = [
2798
+ "windows-targets 0.52.6",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "windows-sys"
2803
+ version = "0.60.2"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2806
+ dependencies = [
2807
+ "windows-targets 0.53.5",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "windows-sys"
2812
+ version = "0.61.2"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2815
+ dependencies = [
2816
+ "windows-link",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "windows-targets"
2821
+ version = "0.52.6"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2824
+ dependencies = [
2825
+ "windows_aarch64_gnullvm 0.52.6",
2826
+ "windows_aarch64_msvc 0.52.6",
2827
+ "windows_i686_gnu 0.52.6",
2828
+ "windows_i686_gnullvm 0.52.6",
2829
+ "windows_i686_msvc 0.52.6",
2830
+ "windows_x86_64_gnu 0.52.6",
2831
+ "windows_x86_64_gnullvm 0.52.6",
2832
+ "windows_x86_64_msvc 0.52.6",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "windows-targets"
2837
+ version = "0.53.5"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2840
+ dependencies = [
2841
+ "windows-link",
2842
+ "windows_aarch64_gnullvm 0.53.1",
2843
+ "windows_aarch64_msvc 0.53.1",
2844
+ "windows_i686_gnu 0.53.1",
2845
+ "windows_i686_gnullvm 0.53.1",
2846
+ "windows_i686_msvc 0.53.1",
2847
+ "windows_x86_64_gnu 0.53.1",
2848
+ "windows_x86_64_gnullvm 0.53.1",
2849
+ "windows_x86_64_msvc 0.53.1",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "windows-threading"
2854
+ version = "0.2.1"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
2857
+ dependencies = [
2858
+ "windows-link",
2859
+ ]
2860
+
2861
+ [[package]]
2862
+ name = "windows_aarch64_gnullvm"
2863
+ version = "0.52.6"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2866
+
2867
+ [[package]]
2868
+ name = "windows_aarch64_gnullvm"
2869
+ version = "0.53.1"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2872
+
2873
+ [[package]]
2874
+ name = "windows_aarch64_msvc"
2875
+ version = "0.52.6"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2878
+
2879
+ [[package]]
2880
+ name = "windows_aarch64_msvc"
2881
+ version = "0.53.1"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2884
+
2885
+ [[package]]
2886
+ name = "windows_i686_gnu"
2887
+ version = "0.52.6"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2890
+
2891
+ [[package]]
2892
+ name = "windows_i686_gnu"
2893
+ version = "0.53.1"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2896
+
2897
+ [[package]]
2898
+ name = "windows_i686_gnullvm"
2899
+ version = "0.52.6"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2902
+
2903
+ [[package]]
2904
+ name = "windows_i686_gnullvm"
2905
+ version = "0.53.1"
2906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2907
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2908
+
2909
+ [[package]]
2910
+ name = "windows_i686_msvc"
2911
+ version = "0.52.6"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2914
+
2915
+ [[package]]
2916
+ name = "windows_i686_msvc"
2917
+ version = "0.53.1"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2920
+
2921
+ [[package]]
2922
+ name = "windows_x86_64_gnu"
2923
+ version = "0.52.6"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2926
+
2927
+ [[package]]
2928
+ name = "windows_x86_64_gnu"
2929
+ version = "0.53.1"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2932
+
2933
+ [[package]]
2934
+ name = "windows_x86_64_gnullvm"
2935
+ version = "0.52.6"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2938
+
2939
+ [[package]]
2940
+ name = "windows_x86_64_gnullvm"
2941
+ version = "0.53.1"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2944
+
2945
+ [[package]]
2946
+ name = "windows_x86_64_msvc"
2947
+ version = "0.52.6"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2950
+
2951
+ [[package]]
2952
+ name = "windows_x86_64_msvc"
2953
+ version = "0.53.1"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2956
+
2957
+ [[package]]
2958
+ name = "winnow"
2959
+ version = "0.7.15"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2962
+ dependencies = [
2963
+ "memchr",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "winnow"
2968
+ version = "1.0.1"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
2971
+ dependencies = [
2972
+ "memchr",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "wit-bindgen"
2977
+ version = "0.51.0"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2980
+ dependencies = [
2981
+ "wit-bindgen-rust-macro",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "wit-bindgen-core"
2986
+ version = "0.51.0"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2989
+ dependencies = [
2990
+ "anyhow",
2991
+ "heck",
2992
+ "wit-parser",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "wit-bindgen-rust"
2997
+ version = "0.51.0"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3000
+ dependencies = [
3001
+ "anyhow",
3002
+ "heck",
3003
+ "indexmap",
3004
+ "prettyplease",
3005
+ "syn 2.0.117",
3006
+ "wasm-metadata",
3007
+ "wit-bindgen-core",
3008
+ "wit-component",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "wit-bindgen-rust-macro"
3013
+ version = "0.51.0"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3016
+ dependencies = [
3017
+ "anyhow",
3018
+ "prettyplease",
3019
+ "proc-macro2",
3020
+ "quote",
3021
+ "syn 2.0.117",
3022
+ "wit-bindgen-core",
3023
+ "wit-bindgen-rust",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "wit-component"
3028
+ version = "0.244.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3031
+ dependencies = [
3032
+ "anyhow",
3033
+ "bitflags",
3034
+ "indexmap",
3035
+ "log",
3036
+ "serde",
3037
+ "serde_derive",
3038
+ "serde_json",
3039
+ "wasm-encoder",
3040
+ "wasm-metadata",
3041
+ "wasmparser",
3042
+ "wit-parser",
3043
+ ]
3044
+
3045
+ [[package]]
3046
+ name = "wit-parser"
3047
+ version = "0.244.0"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3050
+ dependencies = [
3051
+ "anyhow",
3052
+ "id-arena",
3053
+ "indexmap",
3054
+ "log",
3055
+ "semver",
3056
+ "serde",
3057
+ "serde_derive",
3058
+ "serde_json",
3059
+ "unicode-xid",
3060
+ "wasmparser",
3061
+ ]
3062
+
3063
+ [[package]]
3064
+ name = "writeable"
3065
+ version = "0.6.3"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3068
+
3069
+ [[package]]
3070
+ name = "x11rb"
3071
+ version = "0.13.2"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
3074
+ dependencies = [
3075
+ "gethostname",
3076
+ "rustix",
3077
+ "x11rb-protocol",
3078
+ ]
3079
+
3080
+ [[package]]
3081
+ name = "x11rb-protocol"
3082
+ version = "0.13.2"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
3085
+
3086
+ [[package]]
3087
+ name = "xml-rs"
3088
+ version = "0.8.28"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
3091
+
3092
+ [[package]]
3093
+ name = "yoke"
3094
+ version = "0.8.2"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3097
+ dependencies = [
3098
+ "stable_deref_trait",
3099
+ "yoke-derive",
3100
+ "zerofrom",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "yoke-derive"
3105
+ version = "0.8.2"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3108
+ dependencies = [
3109
+ "proc-macro2",
3110
+ "quote",
3111
+ "syn 2.0.117",
3112
+ "synstructure",
3113
+ ]
3114
+
3115
+ [[package]]
3116
+ name = "zbus"
3117
+ version = "5.14.0"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "ca82f95dbd3943a40a53cfded6c2d0a2ca26192011846a1810c4256ef92c60bc"
3120
+ dependencies = [
3121
+ "async-broadcast",
3122
+ "async-executor",
3123
+ "async-io",
3124
+ "async-lock",
3125
+ "async-process",
3126
+ "async-recursion",
3127
+ "async-task",
3128
+ "async-trait",
3129
+ "blocking",
3130
+ "enumflags2",
3131
+ "event-listener",
3132
+ "futures-core",
3133
+ "futures-lite",
3134
+ "hex",
3135
+ "libc",
3136
+ "ordered-stream",
3137
+ "rustix",
3138
+ "serde",
3139
+ "serde_repr",
3140
+ "tracing",
3141
+ "uds_windows",
3142
+ "uuid",
3143
+ "windows-sys 0.61.2",
3144
+ "winnow 0.7.15",
3145
+ "zbus_macros",
3146
+ "zbus_names",
3147
+ "zvariant",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "zbus_macros"
3152
+ version = "5.14.0"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "897e79616e84aac4b2c46e9132a4f63b93105d54fe8c0e8f6bffc21fa8d49222"
3155
+ dependencies = [
3156
+ "proc-macro-crate",
3157
+ "proc-macro2",
3158
+ "quote",
3159
+ "syn 2.0.117",
3160
+ "zbus_names",
3161
+ "zvariant",
3162
+ "zvariant_utils",
3163
+ ]
3164
+
3165
+ [[package]]
3166
+ name = "zbus_names"
3167
+ version = "4.3.1"
3168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3169
+ checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f"
3170
+ dependencies = [
3171
+ "serde",
3172
+ "winnow 0.7.15",
3173
+ "zvariant",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "zerocopy"
3178
+ version = "0.8.48"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3181
+ dependencies = [
3182
+ "zerocopy-derive",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "zerocopy-derive"
3187
+ version = "0.8.48"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3190
+ dependencies = [
3191
+ "proc-macro2",
3192
+ "quote",
3193
+ "syn 2.0.117",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "zerofrom"
3198
+ version = "0.1.7"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
3201
+ dependencies = [
3202
+ "zerofrom-derive",
3203
+ ]
3204
+
3205
+ [[package]]
3206
+ name = "zerofrom-derive"
3207
+ version = "0.1.7"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3210
+ dependencies = [
3211
+ "proc-macro2",
3212
+ "quote",
3213
+ "syn 2.0.117",
3214
+ "synstructure",
3215
+ ]
3216
+
3217
+ [[package]]
3218
+ name = "zerotrie"
3219
+ version = "0.2.4"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3222
+ dependencies = [
3223
+ "displaydoc",
3224
+ "yoke",
3225
+ "zerofrom",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "zerovec"
3230
+ version = "0.11.6"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3233
+ dependencies = [
3234
+ "yoke",
3235
+ "zerofrom",
3236
+ "zerovec-derive",
3237
+ ]
3238
+
3239
+ [[package]]
3240
+ name = "zerovec-derive"
3241
+ version = "0.11.3"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3244
+ dependencies = [
3245
+ "proc-macro2",
3246
+ "quote",
3247
+ "syn 2.0.117",
3248
+ ]
3249
+
3250
+ [[package]]
3251
+ name = "zmij"
3252
+ version = "1.0.21"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3255
+
3256
+ [[package]]
3257
+ name = "zune-core"
3258
+ version = "0.5.1"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
3261
+
3262
+ [[package]]
3263
+ name = "zune-jpeg"
3264
+ version = "0.5.13"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "ec5f41c76397b7da451efd19915684f727d7e1d516384ca6bd0ec43ec94de23c"
3267
+ dependencies = [
3268
+ "zune-core",
3269
+ ]
3270
+
3271
+ [[package]]
3272
+ name = "zvariant"
3273
+ version = "5.10.0"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "5708299b21903bbe348e94729f22c49c55d04720a004aa350f1f9c122fd2540b"
3276
+ dependencies = [
3277
+ "endi",
3278
+ "enumflags2",
3279
+ "serde",
3280
+ "url",
3281
+ "winnow 0.7.15",
3282
+ "zvariant_derive",
3283
+ "zvariant_utils",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "zvariant_derive"
3288
+ version = "5.10.0"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "5b59b012ebe9c46656f9cc08d8da8b4c726510aef12559da3e5f1bf72780752c"
3291
+ dependencies = [
3292
+ "proc-macro-crate",
3293
+ "proc-macro2",
3294
+ "quote",
3295
+ "syn 2.0.117",
3296
+ "zvariant_utils",
3297
+ ]
3298
+
3299
+ [[package]]
3300
+ name = "zvariant_utils"
3301
+ version = "3.3.0"
3302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3303
+ checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9"
3304
+ dependencies = [
3305
+ "proc-macro2",
3306
+ "quote",
3307
+ "serde",
3308
+ "syn 2.0.117",
3309
+ "winnow 0.7.15",
3310
+ ]