siderust-js 0.1.0

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 (272) hide show
  1. package/.github/workflows/ci.yml +166 -0
  2. package/.gitmodules +9 -0
  3. package/CHANGELOG.md +26 -0
  4. package/LICENSE +661 -0
  5. package/README.md +138 -0
  6. package/package.json +12 -0
  7. package/qtty-js/.github/workflows/ci.yml +151 -0
  8. package/qtty-js/.gitmodules +3 -0
  9. package/qtty-js/CHANGELOG.md +31 -0
  10. package/qtty-js/LICENSE +661 -0
  11. package/qtty-js/README.md +132 -0
  12. package/qtty-js/package.json +20 -0
  13. package/qtty-js/qtty/.github/workflows/ci.yml +155 -0
  14. package/qtty-js/qtty/CHANGELOG.md +120 -0
  15. package/qtty-js/qtty/Cargo.lock +1462 -0
  16. package/qtty-js/qtty/Cargo.toml +12 -0
  17. package/qtty-js/qtty/LICENSE +661 -0
  18. package/qtty-js/qtty/README.md +9 -0
  19. package/qtty-js/qtty/qtty/Cargo.toml +41 -0
  20. package/qtty-js/qtty/qtty/README.md +8 -0
  21. package/qtty-js/qtty/qtty/examples/angles.rs +14 -0
  22. package/qtty-js/qtty/qtty/examples/astronomy.rs +17 -0
  23. package/qtty-js/qtty/qtty/examples/dimensional_arithmetic.rs +83 -0
  24. package/qtty-js/qtty/qtty/examples/python_integration.rs +61 -0
  25. package/qtty-js/qtty/qtty/examples/quickstart.rs +15 -0
  26. package/qtty-js/qtty/qtty/examples/ratios.rs +12 -0
  27. package/qtty-js/qtty/qtty/examples/serde_with_unit.rs +234 -0
  28. package/qtty-js/qtty/qtty/examples/serialization.rs +141 -0
  29. package/qtty-js/qtty/qtty/examples/serialization_advanced.rs +155 -0
  30. package/qtty-js/qtty/qtty/src/f32.rs +108 -0
  31. package/qtty-js/qtty/qtty/src/f64.rs +30 -0
  32. package/qtty-js/qtty/qtty/src/i128.rs +111 -0
  33. package/qtty-js/qtty/qtty/src/i16.rs +111 -0
  34. package/qtty-js/qtty/qtty/src/i32.rs +111 -0
  35. package/qtty-js/qtty/qtty/src/i64.rs +111 -0
  36. package/qtty-js/qtty/qtty/src/i8.rs +111 -0
  37. package/qtty-js/qtty/qtty/src/lib.rs +238 -0
  38. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-no-std/Cargo.lock +83 -0
  39. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-no-std/Cargo.toml +10 -0
  40. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-no-std/src/lib.rs +7 -0
  41. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-no-std-alloc/Cargo.lock +83 -0
  42. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-no-std-alloc/Cargo.toml +10 -0
  43. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-no-std-alloc/src/lib.rs +7 -0
  44. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-std/Cargo.lock +83 -0
  45. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-std/Cargo.toml +10 -0
  46. package/qtty-js/qtty/qtty/tests/fixtures/qtty-vec-std/src/lib.rs +5 -0
  47. package/qtty-js/qtty/qtty/tests/integration_tests.rs +529 -0
  48. package/qtty-js/qtty/qtty/tests/qtty_vec_feature_matrix.rs +58 -0
  49. package/qtty-js/qtty/qtty-core/Cargo.toml +41 -0
  50. package/qtty-js/qtty/qtty-core/README.md +8 -0
  51. package/qtty-js/qtty/qtty-core/examples/diesel_integration.rs +145 -0
  52. package/qtty-js/qtty/qtty-core/examples/quantity_db_serde.rs +215 -0
  53. package/qtty-js/qtty/qtty-core/src/dimension.rs +249 -0
  54. package/qtty-js/qtty/qtty-core/src/feature_diesel.rs +318 -0
  55. package/qtty-js/qtty/qtty-core/src/feature_pyo3.rs +27 -0
  56. package/qtty-js/qtty/qtty-core/src/feature_serde.rs +203 -0
  57. package/qtty-js/qtty/qtty-core/src/feature_tiberius.rs +28 -0
  58. package/qtty-js/qtty/qtty-core/src/lib.rs +744 -0
  59. package/qtty-js/qtty/qtty-core/src/macros.rs +93 -0
  60. package/qtty-js/qtty/qtty-core/src/quantity.rs +810 -0
  61. package/qtty-js/qtty/qtty-core/src/scalar.rs +1742 -0
  62. package/qtty-js/qtty/qtty-core/src/unit.rs +332 -0
  63. package/qtty-js/qtty/qtty-core/src/units/angular.rs +1228 -0
  64. package/qtty-js/qtty/qtty-core/src/units/area.rs +243 -0
  65. package/qtty-js/qtty/qtty-core/src/units/frequency.rs +179 -0
  66. package/qtty-js/qtty/qtty-core/src/units/length.rs +1270 -0
  67. package/qtty-js/qtty/qtty-core/src/units/mass.rs +488 -0
  68. package/qtty-js/qtty/qtty-core/src/units/mod.rs +26 -0
  69. package/qtty-js/qtty/qtty-core/src/units/power.rs +324 -0
  70. package/qtty-js/qtty/qtty-core/src/units/time.rs +667 -0
  71. package/qtty-js/qtty/qtty-core/src/units/unitless.rs +212 -0
  72. package/qtty-js/qtty/qtty-core/src/units/velocity.rs +210 -0
  73. package/qtty-js/qtty/qtty-core/src/units/volume.rs +269 -0
  74. package/qtty-js/qtty/qtty-core/tests/core.rs +628 -0
  75. package/qtty-js/qtty/qtty-core/tests/diesel.rs +461 -0
  76. package/qtty-js/qtty/qtty-core/tests/integers.rs +632 -0
  77. package/qtty-js/qtty/qtty-core/tests/no_cross_unit_ops.rs +35 -0
  78. package/qtty-js/qtty/qtty-core/tests/pyo3.rs +334 -0
  79. package/qtty-js/qtty/qtty-core/tests/quantity_f32.rs +276 -0
  80. package/qtty-js/qtty/qtty-core/tests/scalar_decimal.rs +258 -0
  81. package/qtty-js/qtty/qtty-core/tests/scalar_f32.rs +286 -0
  82. package/qtty-js/qtty/qtty-core/tests/scalar_f64_real.rs +287 -0
  83. package/qtty-js/qtty/qtty-core/tests/scalar_rational.rs +260 -0
  84. package/qtty-js/qtty/qtty-core/tests/serde.rs +256 -0
  85. package/qtty-js/qtty/qtty-core/tests/tiberius.rs +208 -0
  86. package/qtty-js/qtty/qtty-derive/Cargo.toml +23 -0
  87. package/qtty-js/qtty/qtty-derive/README.md +8 -0
  88. package/qtty-js/qtty/qtty-derive/src/lib.rs +340 -0
  89. package/qtty-js/qtty/qtty-ffi/ARCHITECTURE.md +3 -0
  90. package/qtty-js/qtty/qtty-ffi/Cargo.toml +31 -0
  91. package/qtty-js/qtty/qtty-ffi/README.md +9 -0
  92. package/qtty-js/qtty/qtty-ffi/build.rs +326 -0
  93. package/qtty-js/qtty/qtty-ffi/cbindgen.toml +105 -0
  94. package/qtty-js/qtty/qtty-ffi/include/qtty_ffi.h +1126 -0
  95. package/qtty-js/qtty/qtty-ffi/src/ffi.rs +1251 -0
  96. package/qtty-js/qtty/qtty-ffi/src/ffi_serde.rs +294 -0
  97. package/qtty-js/qtty/qtty-ffi/src/helpers.rs +310 -0
  98. package/qtty-js/qtty/qtty-ffi/src/lib.rs +229 -0
  99. package/qtty-js/qtty/qtty-ffi/src/macros.rs +121 -0
  100. package/qtty-js/qtty/qtty-ffi/src/registry.rs +274 -0
  101. package/qtty-js/qtty/qtty-ffi/src/types.rs +620 -0
  102. package/qtty-js/qtty/qtty-ffi/tests/integration_tests.rs +842 -0
  103. package/qtty-js/qtty/qtty-ffi/units.csv +156 -0
  104. package/qtty-js/qtty/qtty-ffi/units.csv.md +3 -0
  105. package/qtty-js/qtty-node/.prettierignore +6 -0
  106. package/qtty-js/qtty-node/.prettierrc.json +6 -0
  107. package/qtty-js/qtty-node/README.md +250 -0
  108. package/qtty-js/qtty-node/c8.config.json +11 -0
  109. package/qtty-js/qtty-node/eslint.config.js +31 -0
  110. package/qtty-js/qtty-node/examples/arithmetic.mjs +64 -0
  111. package/qtty-js/qtty-node/examples/astronomy.mjs +90 -0
  112. package/qtty-js/qtty-node/examples/quickstart.mjs +36 -0
  113. package/qtty-js/qtty-node/examples/serialization.mjs +125 -0
  114. package/qtty-js/qtty-node/examples/unit_factories.mjs +74 -0
  115. package/qtty-js/qtty-node/index.d.ts +219 -0
  116. package/qtty-js/qtty-node/index.js +323 -0
  117. package/qtty-js/qtty-node/lib/DerivedQuantity.js +122 -0
  118. package/qtty-js/qtty-node/lib/Quantity.js +151 -0
  119. package/qtty-js/qtty-node/lib/backend.js +25 -0
  120. package/qtty-js/qtty-node/native.cjs +306 -0
  121. package/qtty-js/qtty-node/package-lock.json +3223 -0
  122. package/qtty-js/qtty-node/package.json +70 -0
  123. package/qtty-js/qtty-node/units.d.ts +299 -0
  124. package/qtty-js/qtty-node/units.js +210 -0
  125. package/qtty-js/qtty-web/Cargo.lock +767 -0
  126. package/qtty-js/qtty-web/Cargo.toml +21 -0
  127. package/qtty-js/qtty-web/index.d.ts +140 -0
  128. package/qtty-js/qtty-web/index.js +20 -0
  129. package/qtty-js/qtty-web/lib/DerivedQuantity.js +58 -0
  130. package/qtty-js/qtty-web/lib/Quantity.js +75 -0
  131. package/qtty-js/qtty-web/lib/backend.js +80 -0
  132. package/qtty-js/qtty-web/package.json +45 -0
  133. package/qtty-js/qtty-web/src/lib.rs +111 -0
  134. package/qtty-js/scripts/ci.sh +73 -0
  135. package/scripts/ci.sh +123 -0
  136. package/siderust-core/Cargo.lock +787 -0
  137. package/siderust-core/Cargo.toml +18 -0
  138. package/siderust-core/DEDUPLICATION.md +124 -0
  139. package/siderust-core/src/body.rs +120 -0
  140. package/siderust-core/src/events.rs +184 -0
  141. package/siderust-core/src/lib.rs +20 -0
  142. package/siderust-core/src/observer.rs +55 -0
  143. package/siderust-core/src/position.rs +213 -0
  144. package/siderust-node/.prettierignore +7 -0
  145. package/siderust-node/.prettierrc.json +6 -0
  146. package/siderust-node/Cargo.lock +906 -0
  147. package/siderust-node/Cargo.toml +29 -0
  148. package/siderust-node/README.md +109 -0
  149. package/siderust-node/__test__/index.test.mjs +248 -0
  150. package/siderust-node/build.rs +5 -0
  151. package/siderust-node/c8.config.json +3 -0
  152. package/siderust-node/eslint.config.js +31 -0
  153. package/siderust-node/examples/01_basic_coordinates.mjs +24 -0
  154. package/siderust-node/examples/02_coordinate_transformations.mjs +25 -0
  155. package/siderust-node/examples/03_all_frames_conversions.mjs +26 -0
  156. package/siderust-node/examples/04_all_center_conversions.mjs +24 -0
  157. package/siderust-node/examples/05_target_tracking.mjs +22 -0
  158. package/siderust-node/examples/06_night_events.mjs +18 -0
  159. package/siderust-node/examples/07_moon_properties.mjs +21 -0
  160. package/siderust-node/examples/08_solar_system.mjs +19 -0
  161. package/siderust-node/examples/09_star_observability.mjs +22 -0
  162. package/siderust-node/examples/10_time_periods.mjs +9 -0
  163. package/siderust-node/examples/11_serialization.mjs +31 -0
  164. package/siderust-node/examples/12_runtime_ephemeris.mjs +27 -0
  165. package/siderust-node/examples/13_coordinate_operations.mjs +20 -0
  166. package/siderust-node/index.d.ts +623 -0
  167. package/siderust-node/index.js +79 -0
  168. package/siderust-node/lib/Observer.js +112 -0
  169. package/siderust-node/lib/Star.js +118 -0
  170. package/siderust-node/lib/backend.js +63 -0
  171. package/siderust-node/lib/wrappers.js +566 -0
  172. package/siderust-node/main.js +20 -0
  173. package/siderust-node/native.cjs +360 -0
  174. package/siderust-node/package-lock.json +3261 -0
  175. package/siderust-node/package.json +71 -0
  176. package/siderust-node/src/body.rs +74 -0
  177. package/siderust-node/src/coordinates.rs +372 -0
  178. package/siderust-node/src/ephemeris.rs +462 -0
  179. package/siderust-node/src/events.rs +577 -0
  180. package/siderust-node/src/lib.rs +43 -0
  181. package/siderust-node/src/observer.rs +132 -0
  182. package/siderust-node/src/phase.rs +218 -0
  183. package/siderust-node/src/position.rs +292 -0
  184. package/siderust-node/src/star.rs +200 -0
  185. package/siderust-web/Cargo.lock +855 -0
  186. package/siderust-web/Cargo.toml +34 -0
  187. package/siderust-web/README.md +100 -0
  188. package/siderust-web/__test__/index.test.mjs +118 -0
  189. package/siderust-web/examples/github-pages/README.md +31 -0
  190. package/siderust-web/examples/github-pages/index.html +135 -0
  191. package/siderust-web/index.d.ts +311 -0
  192. package/siderust-web/index.js +66 -0
  193. package/siderust-web/lib/Observer.js +103 -0
  194. package/siderust-web/lib/Star.js +116 -0
  195. package/siderust-web/lib/backend.js +400 -0
  196. package/siderust-web/lib/wrappers.js +512 -0
  197. package/siderust-web/package.json +55 -0
  198. package/siderust-web/src/body.rs +69 -0
  199. package/siderust-web/src/coordinates.rs +302 -0
  200. package/siderust-web/src/ephemeris.rs +456 -0
  201. package/siderust-web/src/events.rs +520 -0
  202. package/siderust-web/src/lib.rs +51 -0
  203. package/siderust-web/src/observer.rs +117 -0
  204. package/siderust-web/src/phase.rs +190 -0
  205. package/siderust-web/src/position.rs +291 -0
  206. package/siderust-web/src/star.rs +178 -0
  207. package/tempoch-js/.github/workflows/ci.yml +142 -0
  208. package/tempoch-js/.gitmodules +3 -0
  209. package/tempoch-js/CHANGELOG.md +25 -0
  210. package/tempoch-js/LICENSE +661 -0
  211. package/tempoch-js/README.md +126 -0
  212. package/tempoch-js/package.json +20 -0
  213. package/tempoch-js/scripts/ci.sh +73 -0
  214. package/tempoch-js/tempoch/.github/workflows/ci.yml +113 -0
  215. package/tempoch-js/tempoch/CHANGELOG.md +82 -0
  216. package/tempoch-js/tempoch/Cargo.lock +947 -0
  217. package/tempoch-js/tempoch/Cargo.toml +3 -0
  218. package/tempoch-js/tempoch/LICENSE +661 -0
  219. package/tempoch-js/tempoch/README.md +76 -0
  220. package/tempoch-js/tempoch/tempoch/Cargo.toml +27 -0
  221. package/tempoch-js/tempoch/tempoch/examples/periods.rs +45 -0
  222. package/tempoch-js/tempoch/tempoch/examples/quickstart.rs +13 -0
  223. package/tempoch-js/tempoch/tempoch/src/lib.rs +49 -0
  224. package/tempoch-js/tempoch/tempoch/tests/integration.rs +57 -0
  225. package/tempoch-js/tempoch/tempoch-core/Cargo.toml +24 -0
  226. package/tempoch-js/tempoch/tempoch-core/src/delta_t.rs +345 -0
  227. package/tempoch-js/tempoch/tempoch-core/src/instant.rs +811 -0
  228. package/tempoch-js/tempoch/tempoch-core/src/julian_date_ext.rs +142 -0
  229. package/tempoch-js/tempoch/tempoch-core/src/lib.rs +81 -0
  230. package/tempoch-js/tempoch/tempoch-core/src/period.rs +1168 -0
  231. package/tempoch-js/tempoch/tempoch-core/src/scales.rs +779 -0
  232. package/tempoch-js/tempoch/tempoch-ffi/Cargo.lock +889 -0
  233. package/tempoch-js/tempoch/tempoch-ffi/Cargo.toml +26 -0
  234. package/tempoch-js/tempoch/tempoch-ffi/build.rs +24 -0
  235. package/tempoch-js/tempoch/tempoch-ffi/cbindgen.toml +30 -0
  236. package/tempoch-js/tempoch/tempoch-ffi/src/error.rs +19 -0
  237. package/tempoch-js/tempoch/tempoch-ffi/src/lib.rs +82 -0
  238. package/tempoch-js/tempoch/tempoch-ffi/src/period.rs +101 -0
  239. package/tempoch-js/tempoch/tempoch-ffi/src/time.rs +711 -0
  240. package/tempoch-js/tempoch/tempoch-ffi/tests/ffi.rs +265 -0
  241. package/tempoch-js/tempoch-node/.prettierignore +6 -0
  242. package/tempoch-js/tempoch-node/.prettierrc.json +6 -0
  243. package/tempoch-js/tempoch-node/Cargo.lock +496 -0
  244. package/tempoch-js/tempoch-node/Cargo.toml +29 -0
  245. package/tempoch-js/tempoch-node/README.md +265 -0
  246. package/tempoch-js/tempoch-node/__test__/index.test.mjs +598 -0
  247. package/tempoch-js/tempoch-node/build.rs +5 -0
  248. package/tempoch-js/tempoch-node/c8.config.json +3 -0
  249. package/tempoch-js/tempoch-node/eslint.config.js +31 -0
  250. package/tempoch-js/tempoch-node/examples/periods.mjs +79 -0
  251. package/tempoch-js/tempoch-node/examples/quickstart.mjs +71 -0
  252. package/tempoch-js/tempoch-node/examples/timescales.mjs +92 -0
  253. package/tempoch-js/tempoch-node/index.d.ts +280 -0
  254. package/tempoch-js/tempoch-node/index.js +32 -0
  255. package/tempoch-js/tempoch-node/lib/JulianDate.js +176 -0
  256. package/tempoch-js/tempoch-node/lib/ModifiedJulianDate.js +156 -0
  257. package/tempoch-js/tempoch-node/lib/Period.js +133 -0
  258. package/tempoch-js/tempoch-node/lib/backend.js +38 -0
  259. package/tempoch-js/tempoch-node/lib/qttyCompat.js +92 -0
  260. package/tempoch-js/tempoch-node/native.cjs +317 -0
  261. package/tempoch-js/tempoch-node/package-lock.json +3223 -0
  262. package/tempoch-js/tempoch-node/package.json +56 -0
  263. package/tempoch-js/tempoch-node/src/lib.rs +573 -0
  264. package/tempoch-js/tempoch-web/Cargo.toml +23 -0
  265. package/tempoch-js/tempoch-web/index.d.ts +95 -0
  266. package/tempoch-js/tempoch-web/index.js +27 -0
  267. package/tempoch-js/tempoch-web/lib/JulianDate.js +170 -0
  268. package/tempoch-js/tempoch-web/lib/ModifiedJulianDate.js +145 -0
  269. package/tempoch-js/tempoch-web/lib/Period.js +121 -0
  270. package/tempoch-js/tempoch-web/lib/backend.js +118 -0
  271. package/tempoch-js/tempoch-web/package.json +46 -0
  272. package/tempoch-js/tempoch-web/src/lib.rs +184 -0
@@ -0,0 +1,855 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "affn"
7
+ version = "0.4.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ec6639fb5f399ec93eceeec24afc3608b9760ddcdece6936412d04ab478627d2"
10
+ dependencies = [
11
+ "affn-derive",
12
+ "nalgebra",
13
+ "qtty 0.4.1",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "affn-derive"
18
+ version = "0.1.3"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "20fe1fdcdc9c8b7fa557c99dc1acacbc90d7c64c8d2826e83f01e414fca1cf18"
21
+ dependencies = [
22
+ "proc-macro2",
23
+ "quote",
24
+ "syn",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "aho-corasick"
29
+ version = "1.1.4"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
32
+ dependencies = [
33
+ "memchr",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "android_system_properties"
38
+ version = "0.1.5"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
41
+ dependencies = [
42
+ "libc",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "anyhow"
47
+ version = "1.0.102"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
50
+
51
+ [[package]]
52
+ name = "approx"
53
+ version = "0.5.1"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
56
+ dependencies = [
57
+ "num-traits",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "autocfg"
62
+ version = "1.5.0"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
65
+
66
+ [[package]]
67
+ name = "bumpalo"
68
+ version = "3.20.2"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
71
+
72
+ [[package]]
73
+ name = "bytemuck"
74
+ version = "1.25.0"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
77
+
78
+ [[package]]
79
+ name = "cc"
80
+ version = "1.2.56"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
83
+ dependencies = [
84
+ "find-msvc-tools",
85
+ "shlex",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "cfg-if"
90
+ version = "1.0.4"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
93
+
94
+ [[package]]
95
+ name = "cheby"
96
+ version = "0.1.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "3af87a2f4182a67a08e5618b52859ef58cca770526061f0f43eaa754f12ecd30"
99
+ dependencies = [
100
+ "qtty 0.3.1",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "chrono"
105
+ version = "0.4.44"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
108
+ dependencies = [
109
+ "iana-time-zone",
110
+ "js-sys",
111
+ "num-traits",
112
+ "wasm-bindgen",
113
+ "windows-link",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "console_error_panic_hook"
118
+ version = "0.1.7"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
121
+ dependencies = [
122
+ "cfg-if",
123
+ "wasm-bindgen",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "core-foundation-sys"
128
+ version = "0.8.7"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
131
+
132
+ [[package]]
133
+ name = "find-msvc-tools"
134
+ version = "0.1.9"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
137
+
138
+ [[package]]
139
+ name = "glam"
140
+ version = "0.14.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
143
+
144
+ [[package]]
145
+ name = "glam"
146
+ version = "0.15.2"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
149
+
150
+ [[package]]
151
+ name = "glam"
152
+ version = "0.16.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
155
+
156
+ [[package]]
157
+ name = "glam"
158
+ version = "0.17.3"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
161
+
162
+ [[package]]
163
+ name = "glam"
164
+ version = "0.18.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
167
+
168
+ [[package]]
169
+ name = "glam"
170
+ version = "0.19.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
173
+
174
+ [[package]]
175
+ name = "glam"
176
+ version = "0.20.5"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
179
+
180
+ [[package]]
181
+ name = "glam"
182
+ version = "0.21.3"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
185
+
186
+ [[package]]
187
+ name = "glam"
188
+ version = "0.22.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
191
+
192
+ [[package]]
193
+ name = "glam"
194
+ version = "0.23.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
197
+
198
+ [[package]]
199
+ name = "glam"
200
+ version = "0.24.2"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
203
+
204
+ [[package]]
205
+ name = "glam"
206
+ version = "0.25.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
209
+
210
+ [[package]]
211
+ name = "glam"
212
+ version = "0.27.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
215
+
216
+ [[package]]
217
+ name = "glam"
218
+ version = "0.28.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
221
+
222
+ [[package]]
223
+ name = "glam"
224
+ version = "0.29.3"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
227
+
228
+ [[package]]
229
+ name = "glam"
230
+ version = "0.30.10"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
233
+
234
+ [[package]]
235
+ name = "iana-time-zone"
236
+ version = "0.1.65"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
239
+ dependencies = [
240
+ "android_system_properties",
241
+ "core-foundation-sys",
242
+ "iana-time-zone-haiku",
243
+ "js-sys",
244
+ "log",
245
+ "wasm-bindgen",
246
+ "windows-core",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "iana-time-zone-haiku"
251
+ version = "0.1.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
254
+ dependencies = [
255
+ "cc",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "js-sys"
260
+ version = "0.3.91"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
263
+ dependencies = [
264
+ "once_cell",
265
+ "wasm-bindgen",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "libc"
270
+ version = "0.2.182"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
273
+
274
+ [[package]]
275
+ name = "libm"
276
+ version = "0.2.16"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
279
+
280
+ [[package]]
281
+ name = "log"
282
+ version = "0.4.29"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
285
+
286
+ [[package]]
287
+ name = "matrixmultiply"
288
+ version = "0.3.10"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
291
+ dependencies = [
292
+ "autocfg",
293
+ "rawpointer",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "memchr"
298
+ version = "2.8.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
301
+
302
+ [[package]]
303
+ name = "nalgebra"
304
+ version = "0.34.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f"
307
+ dependencies = [
308
+ "approx",
309
+ "glam 0.14.0",
310
+ "glam 0.15.2",
311
+ "glam 0.16.0",
312
+ "glam 0.17.3",
313
+ "glam 0.18.0",
314
+ "glam 0.19.0",
315
+ "glam 0.20.5",
316
+ "glam 0.21.3",
317
+ "glam 0.22.0",
318
+ "glam 0.23.0",
319
+ "glam 0.24.2",
320
+ "glam 0.25.0",
321
+ "glam 0.27.0",
322
+ "glam 0.28.0",
323
+ "glam 0.29.3",
324
+ "glam 0.30.10",
325
+ "matrixmultiply",
326
+ "nalgebra-macros",
327
+ "num-complex",
328
+ "num-rational",
329
+ "num-traits",
330
+ "simba",
331
+ "typenum",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "nalgebra-macros"
336
+ version = "0.3.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
339
+ dependencies = [
340
+ "proc-macro2",
341
+ "quote",
342
+ "syn",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "num-bigint"
347
+ version = "0.4.6"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
350
+ dependencies = [
351
+ "num-integer",
352
+ "num-traits",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "num-complex"
357
+ version = "0.4.6"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
360
+ dependencies = [
361
+ "num-traits",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "num-integer"
366
+ version = "0.1.46"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
369
+ dependencies = [
370
+ "num-traits",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "num-rational"
375
+ version = "0.4.2"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
378
+ dependencies = [
379
+ "num-bigint",
380
+ "num-integer",
381
+ "num-traits",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "num-traits"
386
+ version = "0.2.19"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
389
+ dependencies = [
390
+ "autocfg",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "once_cell"
395
+ version = "1.21.3"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
398
+
399
+ [[package]]
400
+ name = "paste"
401
+ version = "1.0.15"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
404
+
405
+ [[package]]
406
+ name = "proc-macro2"
407
+ version = "1.0.106"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
410
+ dependencies = [
411
+ "unicode-ident",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "qtty"
416
+ version = "0.3.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "b42948ee9aba0ed2217fd0d89a666df2ab020e3e25ef9b0328150e6d6c0aaee3"
419
+ dependencies = [
420
+ "qtty-core 0.3.1",
421
+ "qtty-derive 0.3.1",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "qtty"
426
+ version = "0.4.1"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "9dc60ed0161fc68ec0b0faf090e4feec70dd179447c6ca14e5cc052b4eb2a789"
429
+ dependencies = [
430
+ "qtty-core 0.4.1",
431
+ "qtty-derive 0.4.1",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "qtty-core"
436
+ version = "0.3.1"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "283c549662e44f8a2848964e9639f2924f7a442f94294d508fc70c531a9717b3"
439
+ dependencies = [
440
+ "libm",
441
+ "qtty-derive 0.3.1",
442
+ "typenum",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "qtty-core"
447
+ version = "0.4.1"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "ab488371c17ea2db038caa2a3d0044a85a433c4c2172467978d05ee39d22b6fb"
450
+ dependencies = [
451
+ "libm",
452
+ "qtty-derive 0.4.1",
453
+ "typenum",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "qtty-derive"
458
+ version = "0.3.1"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "5edb55d59461af47a984baae7fafc2374dac2a79d41434a77ee7807f0f592757"
461
+ dependencies = [
462
+ "proc-macro2",
463
+ "quote",
464
+ "syn",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "qtty-derive"
469
+ version = "0.4.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "3ab6c550316cbdd43e4eca2c94c14c1cf4e67b253278a94ccc4a5eca2ce5db6e"
472
+ dependencies = [
473
+ "proc-macro2",
474
+ "quote",
475
+ "syn",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "quote"
480
+ version = "1.0.45"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
483
+ dependencies = [
484
+ "proc-macro2",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "rawpointer"
489
+ version = "0.2.1"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
492
+
493
+ [[package]]
494
+ name = "regex"
495
+ version = "1.12.3"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
498
+ dependencies = [
499
+ "aho-corasick",
500
+ "memchr",
501
+ "regex-automata",
502
+ "regex-syntax",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "regex-automata"
507
+ version = "0.4.14"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
510
+ dependencies = [
511
+ "aho-corasick",
512
+ "memchr",
513
+ "regex-syntax",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "regex-syntax"
518
+ version = "0.8.10"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
521
+
522
+ [[package]]
523
+ name = "rustversion"
524
+ version = "1.0.22"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
527
+
528
+ [[package]]
529
+ name = "safe_arch"
530
+ version = "0.7.4"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
533
+ dependencies = [
534
+ "bytemuck",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "safe_arch"
539
+ version = "1.0.0"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
542
+ dependencies = [
543
+ "bytemuck",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "same-file"
548
+ version = "1.0.6"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
551
+ dependencies = [
552
+ "winapi-util",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "serde"
557
+ version = "1.0.228"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
560
+ dependencies = [
561
+ "serde_core",
562
+ "serde_derive",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "serde-wasm-bindgen"
567
+ version = "0.6.5"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
570
+ dependencies = [
571
+ "js-sys",
572
+ "serde",
573
+ "wasm-bindgen",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "serde_core"
578
+ version = "1.0.228"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
581
+ dependencies = [
582
+ "serde_derive",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "serde_derive"
587
+ version = "1.0.228"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
590
+ dependencies = [
591
+ "proc-macro2",
592
+ "quote",
593
+ "syn",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "shlex"
598
+ version = "1.3.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
601
+
602
+ [[package]]
603
+ name = "siderust"
604
+ version = "0.6.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "9322877f7730d54aef3db9f91f73b918c82d7ffe950ef3272a7f6d40b8e469dc"
607
+ dependencies = [
608
+ "affn",
609
+ "anyhow",
610
+ "approx",
611
+ "cheby",
612
+ "chrono",
613
+ "nalgebra",
614
+ "paste",
615
+ "qtty 0.4.1",
616
+ "regex",
617
+ "tempoch",
618
+ "walkdir",
619
+ "wide 1.1.1",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "siderust-binding-core"
624
+ version = "0.1.0"
625
+ dependencies = [
626
+ "affn",
627
+ "chrono",
628
+ "qtty 0.4.1",
629
+ "siderust",
630
+ "tempoch",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "siderust-web"
635
+ version = "0.1.0"
636
+ dependencies = [
637
+ "affn",
638
+ "chrono",
639
+ "console_error_panic_hook",
640
+ "js-sys",
641
+ "qtty 0.4.1",
642
+ "serde",
643
+ "serde-wasm-bindgen",
644
+ "siderust",
645
+ "siderust-binding-core",
646
+ "tempoch",
647
+ "wasm-bindgen",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "simba"
652
+ version = "0.9.1"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
655
+ dependencies = [
656
+ "approx",
657
+ "num-complex",
658
+ "num-traits",
659
+ "paste",
660
+ "wide 0.7.33",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "syn"
665
+ version = "2.0.117"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
668
+ dependencies = [
669
+ "proc-macro2",
670
+ "quote",
671
+ "unicode-ident",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "tempoch"
676
+ version = "0.4.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "acec780480096b36a1872a5131de3e90463083d0a5c5bd13779defc18a530384"
679
+ dependencies = [
680
+ "tempoch-core",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "tempoch-core"
685
+ version = "0.4.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "ea3f7d4b6138b4144837ed3d38042737f16ce3d909661f193fdaf3f40faf7422"
688
+ dependencies = [
689
+ "chrono",
690
+ "qtty 0.4.1",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "typenum"
695
+ version = "1.19.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
698
+
699
+ [[package]]
700
+ name = "unicode-ident"
701
+ version = "1.0.24"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
704
+
705
+ [[package]]
706
+ name = "walkdir"
707
+ version = "2.5.0"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
710
+ dependencies = [
711
+ "same-file",
712
+ "winapi-util",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "wasm-bindgen"
717
+ version = "0.2.114"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
720
+ dependencies = [
721
+ "cfg-if",
722
+ "once_cell",
723
+ "rustversion",
724
+ "wasm-bindgen-macro",
725
+ "wasm-bindgen-shared",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "wasm-bindgen-macro"
730
+ version = "0.2.114"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
733
+ dependencies = [
734
+ "quote",
735
+ "wasm-bindgen-macro-support",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "wasm-bindgen-macro-support"
740
+ version = "0.2.114"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
743
+ dependencies = [
744
+ "bumpalo",
745
+ "proc-macro2",
746
+ "quote",
747
+ "syn",
748
+ "wasm-bindgen-shared",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "wasm-bindgen-shared"
753
+ version = "0.2.114"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
756
+ dependencies = [
757
+ "unicode-ident",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "wide"
762
+ version = "0.7.33"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
765
+ dependencies = [
766
+ "bytemuck",
767
+ "safe_arch 0.7.4",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "wide"
772
+ version = "1.1.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "ac11b009ebeae802ed758530b6496784ebfee7a87b9abfbcaf3bbe25b814eb25"
775
+ dependencies = [
776
+ "bytemuck",
777
+ "safe_arch 1.0.0",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "winapi-util"
782
+ version = "0.1.11"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
785
+ dependencies = [
786
+ "windows-sys",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "windows-core"
791
+ version = "0.62.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
794
+ dependencies = [
795
+ "windows-implement",
796
+ "windows-interface",
797
+ "windows-link",
798
+ "windows-result",
799
+ "windows-strings",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "windows-implement"
804
+ version = "0.60.2"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
807
+ dependencies = [
808
+ "proc-macro2",
809
+ "quote",
810
+ "syn",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "windows-interface"
815
+ version = "0.59.3"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
818
+ dependencies = [
819
+ "proc-macro2",
820
+ "quote",
821
+ "syn",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "windows-link"
826
+ version = "0.2.1"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
829
+
830
+ [[package]]
831
+ name = "windows-result"
832
+ version = "0.4.1"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
835
+ dependencies = [
836
+ "windows-link",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "windows-strings"
841
+ version = "0.5.1"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
844
+ dependencies = [
845
+ "windows-link",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "windows-sys"
850
+ version = "0.61.2"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
853
+ dependencies = [
854
+ "windows-link",
855
+ ]