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,906 @@
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 = "bitflags"
68
+ version = "2.11.0"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
71
+
72
+ [[package]]
73
+ name = "bumpalo"
74
+ version = "3.20.2"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
77
+
78
+ [[package]]
79
+ name = "bytemuck"
80
+ version = "1.25.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
83
+
84
+ [[package]]
85
+ name = "cc"
86
+ version = "1.2.56"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
89
+ dependencies = [
90
+ "find-msvc-tools",
91
+ "shlex",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "cfg-if"
96
+ version = "1.0.4"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
99
+
100
+ [[package]]
101
+ name = "cheby"
102
+ version = "0.1.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "3af87a2f4182a67a08e5618b52859ef58cca770526061f0f43eaa754f12ecd30"
105
+ dependencies = [
106
+ "qtty 0.3.1",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "chrono"
111
+ version = "0.4.44"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
114
+ dependencies = [
115
+ "iana-time-zone",
116
+ "js-sys",
117
+ "num-traits",
118
+ "wasm-bindgen",
119
+ "windows-link",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "convert_case"
124
+ version = "0.6.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
127
+ dependencies = [
128
+ "unicode-segmentation",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "core-foundation-sys"
133
+ version = "0.8.7"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
136
+
137
+ [[package]]
138
+ name = "ctor"
139
+ version = "0.2.9"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
142
+ dependencies = [
143
+ "quote",
144
+ "syn",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "find-msvc-tools"
149
+ version = "0.1.9"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
152
+
153
+ [[package]]
154
+ name = "glam"
155
+ version = "0.14.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
158
+
159
+ [[package]]
160
+ name = "glam"
161
+ version = "0.15.2"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
164
+
165
+ [[package]]
166
+ name = "glam"
167
+ version = "0.16.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
170
+
171
+ [[package]]
172
+ name = "glam"
173
+ version = "0.17.3"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
176
+
177
+ [[package]]
178
+ name = "glam"
179
+ version = "0.18.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
182
+
183
+ [[package]]
184
+ name = "glam"
185
+ version = "0.19.0"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
188
+
189
+ [[package]]
190
+ name = "glam"
191
+ version = "0.20.5"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
194
+
195
+ [[package]]
196
+ name = "glam"
197
+ version = "0.21.3"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
200
+
201
+ [[package]]
202
+ name = "glam"
203
+ version = "0.22.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
206
+
207
+ [[package]]
208
+ name = "glam"
209
+ version = "0.23.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
212
+
213
+ [[package]]
214
+ name = "glam"
215
+ version = "0.24.2"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
218
+
219
+ [[package]]
220
+ name = "glam"
221
+ version = "0.25.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
224
+
225
+ [[package]]
226
+ name = "glam"
227
+ version = "0.27.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
230
+
231
+ [[package]]
232
+ name = "glam"
233
+ version = "0.28.0"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
236
+
237
+ [[package]]
238
+ name = "glam"
239
+ version = "0.29.3"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
242
+
243
+ [[package]]
244
+ name = "glam"
245
+ version = "0.30.10"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
248
+
249
+ [[package]]
250
+ name = "iana-time-zone"
251
+ version = "0.1.65"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
254
+ dependencies = [
255
+ "android_system_properties",
256
+ "core-foundation-sys",
257
+ "iana-time-zone-haiku",
258
+ "js-sys",
259
+ "log",
260
+ "wasm-bindgen",
261
+ "windows-core",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "iana-time-zone-haiku"
266
+ version = "0.1.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
269
+ dependencies = [
270
+ "cc",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "js-sys"
275
+ version = "0.3.91"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
278
+ dependencies = [
279
+ "once_cell",
280
+ "wasm-bindgen",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "libc"
285
+ version = "0.2.182"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
288
+
289
+ [[package]]
290
+ name = "libloading"
291
+ version = "0.8.9"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
294
+ dependencies = [
295
+ "cfg-if",
296
+ "windows-link",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "libm"
301
+ version = "0.2.16"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
304
+
305
+ [[package]]
306
+ name = "log"
307
+ version = "0.4.29"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
310
+
311
+ [[package]]
312
+ name = "matrixmultiply"
313
+ version = "0.3.10"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
316
+ dependencies = [
317
+ "autocfg",
318
+ "rawpointer",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "memchr"
323
+ version = "2.8.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
326
+
327
+ [[package]]
328
+ name = "nalgebra"
329
+ version = "0.34.1"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f"
332
+ dependencies = [
333
+ "approx",
334
+ "glam 0.14.0",
335
+ "glam 0.15.2",
336
+ "glam 0.16.0",
337
+ "glam 0.17.3",
338
+ "glam 0.18.0",
339
+ "glam 0.19.0",
340
+ "glam 0.20.5",
341
+ "glam 0.21.3",
342
+ "glam 0.22.0",
343
+ "glam 0.23.0",
344
+ "glam 0.24.2",
345
+ "glam 0.25.0",
346
+ "glam 0.27.0",
347
+ "glam 0.28.0",
348
+ "glam 0.29.3",
349
+ "glam 0.30.10",
350
+ "matrixmultiply",
351
+ "nalgebra-macros",
352
+ "num-complex",
353
+ "num-rational",
354
+ "num-traits",
355
+ "simba",
356
+ "typenum",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "nalgebra-macros"
361
+ version = "0.3.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
364
+ dependencies = [
365
+ "proc-macro2",
366
+ "quote",
367
+ "syn",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "napi"
372
+ version = "2.16.17"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
375
+ dependencies = [
376
+ "bitflags",
377
+ "ctor",
378
+ "napi-derive",
379
+ "napi-sys",
380
+ "once_cell",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "napi-build"
385
+ version = "2.3.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
388
+
389
+ [[package]]
390
+ name = "napi-derive"
391
+ version = "2.16.13"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
394
+ dependencies = [
395
+ "cfg-if",
396
+ "convert_case",
397
+ "napi-derive-backend",
398
+ "proc-macro2",
399
+ "quote",
400
+ "syn",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "napi-derive-backend"
405
+ version = "1.0.75"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
408
+ dependencies = [
409
+ "convert_case",
410
+ "once_cell",
411
+ "proc-macro2",
412
+ "quote",
413
+ "regex",
414
+ "semver",
415
+ "syn",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "napi-sys"
420
+ version = "2.4.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
423
+ dependencies = [
424
+ "libloading",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "num-bigint"
429
+ version = "0.4.6"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
432
+ dependencies = [
433
+ "num-integer",
434
+ "num-traits",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "num-complex"
439
+ version = "0.4.6"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
442
+ dependencies = [
443
+ "num-traits",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "num-integer"
448
+ version = "0.1.46"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
451
+ dependencies = [
452
+ "num-traits",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "num-rational"
457
+ version = "0.4.2"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
460
+ dependencies = [
461
+ "num-bigint",
462
+ "num-integer",
463
+ "num-traits",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "num-traits"
468
+ version = "0.2.19"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
471
+ dependencies = [
472
+ "autocfg",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "once_cell"
477
+ version = "1.21.3"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
480
+
481
+ [[package]]
482
+ name = "paste"
483
+ version = "1.0.15"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
486
+
487
+ [[package]]
488
+ name = "proc-macro2"
489
+ version = "1.0.106"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
492
+ dependencies = [
493
+ "unicode-ident",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "qtty"
498
+ version = "0.3.1"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "b42948ee9aba0ed2217fd0d89a666df2ab020e3e25ef9b0328150e6d6c0aaee3"
501
+ dependencies = [
502
+ "qtty-core 0.3.1",
503
+ "qtty-derive 0.3.1",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "qtty"
508
+ version = "0.4.1"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "9dc60ed0161fc68ec0b0faf090e4feec70dd179447c6ca14e5cc052b4eb2a789"
511
+ dependencies = [
512
+ "qtty-core 0.4.1",
513
+ "qtty-derive 0.4.1",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "qtty-core"
518
+ version = "0.3.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "283c549662e44f8a2848964e9639f2924f7a442f94294d508fc70c531a9717b3"
521
+ dependencies = [
522
+ "libm",
523
+ "qtty-derive 0.3.1",
524
+ "typenum",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "qtty-core"
529
+ version = "0.4.1"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "ab488371c17ea2db038caa2a3d0044a85a433c4c2172467978d05ee39d22b6fb"
532
+ dependencies = [
533
+ "libm",
534
+ "qtty-derive 0.4.1",
535
+ "typenum",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "qtty-derive"
540
+ version = "0.3.1"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "5edb55d59461af47a984baae7fafc2374dac2a79d41434a77ee7807f0f592757"
543
+ dependencies = [
544
+ "proc-macro2",
545
+ "quote",
546
+ "syn",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "qtty-derive"
551
+ version = "0.4.1"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "3ab6c550316cbdd43e4eca2c94c14c1cf4e67b253278a94ccc4a5eca2ce5db6e"
554
+ dependencies = [
555
+ "proc-macro2",
556
+ "quote",
557
+ "syn",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "quote"
562
+ version = "1.0.45"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
565
+ dependencies = [
566
+ "proc-macro2",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "rawpointer"
571
+ version = "0.2.1"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
574
+
575
+ [[package]]
576
+ name = "regex"
577
+ version = "1.12.3"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
580
+ dependencies = [
581
+ "aho-corasick",
582
+ "memchr",
583
+ "regex-automata",
584
+ "regex-syntax",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "regex-automata"
589
+ version = "0.4.14"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
592
+ dependencies = [
593
+ "aho-corasick",
594
+ "memchr",
595
+ "regex-syntax",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "regex-syntax"
600
+ version = "0.8.10"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
603
+
604
+ [[package]]
605
+ name = "rustversion"
606
+ version = "1.0.22"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
609
+
610
+ [[package]]
611
+ name = "safe_arch"
612
+ version = "0.7.4"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
615
+ dependencies = [
616
+ "bytemuck",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "safe_arch"
621
+ version = "1.0.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
624
+ dependencies = [
625
+ "bytemuck",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "same-file"
630
+ version = "1.0.6"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
633
+ dependencies = [
634
+ "winapi-util",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "semver"
639
+ version = "1.0.27"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
642
+
643
+ [[package]]
644
+ name = "shlex"
645
+ version = "1.3.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
648
+
649
+ [[package]]
650
+ name = "siderust"
651
+ version = "0.6.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "9322877f7730d54aef3db9f91f73b918c82d7ffe950ef3272a7f6d40b8e469dc"
654
+ dependencies = [
655
+ "affn",
656
+ "anyhow",
657
+ "approx",
658
+ "cheby",
659
+ "chrono",
660
+ "nalgebra",
661
+ "paste",
662
+ "qtty 0.4.1",
663
+ "regex",
664
+ "tempoch",
665
+ "walkdir",
666
+ "wide 1.1.1",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "siderust-binding-core"
671
+ version = "0.1.0"
672
+ dependencies = [
673
+ "affn",
674
+ "chrono",
675
+ "qtty 0.4.1",
676
+ "siderust",
677
+ "tempoch",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "siderust-node"
682
+ version = "0.1.0"
683
+ dependencies = [
684
+ "affn",
685
+ "chrono",
686
+ "napi",
687
+ "napi-build",
688
+ "napi-derive",
689
+ "qtty 0.4.1",
690
+ "siderust",
691
+ "siderust-binding-core",
692
+ "tempoch",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "simba"
697
+ version = "0.9.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
700
+ dependencies = [
701
+ "approx",
702
+ "num-complex",
703
+ "num-traits",
704
+ "paste",
705
+ "wide 0.7.33",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "syn"
710
+ version = "2.0.117"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
713
+ dependencies = [
714
+ "proc-macro2",
715
+ "quote",
716
+ "unicode-ident",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "tempoch"
721
+ version = "0.4.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "acec780480096b36a1872a5131de3e90463083d0a5c5bd13779defc18a530384"
724
+ dependencies = [
725
+ "tempoch-core",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "tempoch-core"
730
+ version = "0.4.0"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "ea3f7d4b6138b4144837ed3d38042737f16ce3d909661f193fdaf3f40faf7422"
733
+ dependencies = [
734
+ "chrono",
735
+ "qtty 0.4.1",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "typenum"
740
+ version = "1.19.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
743
+
744
+ [[package]]
745
+ name = "unicode-ident"
746
+ version = "1.0.24"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
749
+
750
+ [[package]]
751
+ name = "unicode-segmentation"
752
+ version = "1.12.0"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
755
+
756
+ [[package]]
757
+ name = "walkdir"
758
+ version = "2.5.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
761
+ dependencies = [
762
+ "same-file",
763
+ "winapi-util",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "wasm-bindgen"
768
+ version = "0.2.114"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
771
+ dependencies = [
772
+ "cfg-if",
773
+ "once_cell",
774
+ "rustversion",
775
+ "wasm-bindgen-macro",
776
+ "wasm-bindgen-shared",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "wasm-bindgen-macro"
781
+ version = "0.2.114"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
784
+ dependencies = [
785
+ "quote",
786
+ "wasm-bindgen-macro-support",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "wasm-bindgen-macro-support"
791
+ version = "0.2.114"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
794
+ dependencies = [
795
+ "bumpalo",
796
+ "proc-macro2",
797
+ "quote",
798
+ "syn",
799
+ "wasm-bindgen-shared",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "wasm-bindgen-shared"
804
+ version = "0.2.114"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
807
+ dependencies = [
808
+ "unicode-ident",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "wide"
813
+ version = "0.7.33"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
816
+ dependencies = [
817
+ "bytemuck",
818
+ "safe_arch 0.7.4",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "wide"
823
+ version = "1.1.1"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "ac11b009ebeae802ed758530b6496784ebfee7a87b9abfbcaf3bbe25b814eb25"
826
+ dependencies = [
827
+ "bytemuck",
828
+ "safe_arch 1.0.0",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "winapi-util"
833
+ version = "0.1.11"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
836
+ dependencies = [
837
+ "windows-sys",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "windows-core"
842
+ version = "0.62.2"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
845
+ dependencies = [
846
+ "windows-implement",
847
+ "windows-interface",
848
+ "windows-link",
849
+ "windows-result",
850
+ "windows-strings",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "windows-implement"
855
+ version = "0.60.2"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
858
+ dependencies = [
859
+ "proc-macro2",
860
+ "quote",
861
+ "syn",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "windows-interface"
866
+ version = "0.59.3"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
869
+ dependencies = [
870
+ "proc-macro2",
871
+ "quote",
872
+ "syn",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "windows-link"
877
+ version = "0.2.1"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
880
+
881
+ [[package]]
882
+ name = "windows-result"
883
+ version = "0.4.1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
886
+ dependencies = [
887
+ "windows-link",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "windows-strings"
892
+ version = "0.5.1"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
895
+ dependencies = [
896
+ "windows-link",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "windows-sys"
901
+ version = "0.61.2"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
904
+ dependencies = [
905
+ "windows-link",
906
+ ]