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,496 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "autocfg"
25
+ version = "1.5.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
28
+
29
+ [[package]]
30
+ name = "bitflags"
31
+ version = "2.11.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
34
+
35
+ [[package]]
36
+ name = "bumpalo"
37
+ version = "3.20.2"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
40
+
41
+ [[package]]
42
+ name = "cc"
43
+ version = "1.2.56"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
46
+ dependencies = [
47
+ "find-msvc-tools",
48
+ "shlex",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "cfg-if"
53
+ version = "1.0.4"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
56
+
57
+ [[package]]
58
+ name = "chrono"
59
+ version = "0.4.44"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
62
+ dependencies = [
63
+ "iana-time-zone",
64
+ "js-sys",
65
+ "num-traits",
66
+ "wasm-bindgen",
67
+ "windows-link",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "convert_case"
72
+ version = "0.6.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
75
+ dependencies = [
76
+ "unicode-segmentation",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "core-foundation-sys"
81
+ version = "0.8.7"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
84
+
85
+ [[package]]
86
+ name = "ctor"
87
+ version = "0.2.9"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
90
+ dependencies = [
91
+ "quote",
92
+ "syn",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "find-msvc-tools"
97
+ version = "0.1.9"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
100
+
101
+ [[package]]
102
+ name = "iana-time-zone"
103
+ version = "0.1.65"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
106
+ dependencies = [
107
+ "android_system_properties",
108
+ "core-foundation-sys",
109
+ "iana-time-zone-haiku",
110
+ "js-sys",
111
+ "log",
112
+ "wasm-bindgen",
113
+ "windows-core",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "iana-time-zone-haiku"
118
+ version = "0.1.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
121
+ dependencies = [
122
+ "cc",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "js-sys"
127
+ version = "0.3.91"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
130
+ dependencies = [
131
+ "once_cell",
132
+ "wasm-bindgen",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "libc"
137
+ version = "0.2.182"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
140
+
141
+ [[package]]
142
+ name = "libloading"
143
+ version = "0.8.9"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
146
+ dependencies = [
147
+ "cfg-if",
148
+ "windows-link",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "libm"
153
+ version = "0.2.16"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
156
+
157
+ [[package]]
158
+ name = "log"
159
+ version = "0.4.29"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
162
+
163
+ [[package]]
164
+ name = "memchr"
165
+ version = "2.8.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
168
+
169
+ [[package]]
170
+ name = "napi"
171
+ version = "2.16.17"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
174
+ dependencies = [
175
+ "bitflags",
176
+ "ctor",
177
+ "napi-derive",
178
+ "napi-sys",
179
+ "once_cell",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "napi-build"
184
+ version = "2.3.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
187
+
188
+ [[package]]
189
+ name = "napi-derive"
190
+ version = "2.16.13"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
193
+ dependencies = [
194
+ "cfg-if",
195
+ "convert_case",
196
+ "napi-derive-backend",
197
+ "proc-macro2",
198
+ "quote",
199
+ "syn",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "napi-derive-backend"
204
+ version = "1.0.75"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
207
+ dependencies = [
208
+ "convert_case",
209
+ "once_cell",
210
+ "proc-macro2",
211
+ "quote",
212
+ "regex",
213
+ "semver",
214
+ "syn",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "napi-sys"
219
+ version = "2.4.0"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
222
+ dependencies = [
223
+ "libloading",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "num-traits"
228
+ version = "0.2.19"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
231
+ dependencies = [
232
+ "autocfg",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "once_cell"
237
+ version = "1.21.3"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
240
+
241
+ [[package]]
242
+ name = "proc-macro2"
243
+ version = "1.0.106"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
246
+ dependencies = [
247
+ "unicode-ident",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "qtty"
252
+ version = "0.4.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "bea89a195c12cff1a98730ebdbf28ac603d75a5eaba14e0b0d0704535f67a811"
255
+ dependencies = [
256
+ "qtty-core",
257
+ "qtty-derive",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "qtty-core"
262
+ version = "0.4.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "eec18c85c65728c91aeec04456140bece6d71cb703307f786303523957759718"
265
+ dependencies = [
266
+ "libm",
267
+ "qtty-derive",
268
+ "typenum",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "qtty-derive"
273
+ version = "0.4.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "e5c4ed7c0500072e756d76102cf8fceebe6ae9199e6e16ca018948eb80c78625"
276
+ dependencies = [
277
+ "proc-macro2",
278
+ "quote",
279
+ "syn",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "quote"
284
+ version = "1.0.45"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
287
+ dependencies = [
288
+ "proc-macro2",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "regex"
293
+ version = "1.12.3"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
296
+ dependencies = [
297
+ "aho-corasick",
298
+ "memchr",
299
+ "regex-automata",
300
+ "regex-syntax",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "regex-automata"
305
+ version = "0.4.14"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
308
+ dependencies = [
309
+ "aho-corasick",
310
+ "memchr",
311
+ "regex-syntax",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "regex-syntax"
316
+ version = "0.8.10"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
319
+
320
+ [[package]]
321
+ name = "rustversion"
322
+ version = "1.0.22"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
325
+
326
+ [[package]]
327
+ name = "semver"
328
+ version = "1.0.27"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
331
+
332
+ [[package]]
333
+ name = "shlex"
334
+ version = "1.3.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
337
+
338
+ [[package]]
339
+ name = "syn"
340
+ version = "2.0.117"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
343
+ dependencies = [
344
+ "proc-macro2",
345
+ "quote",
346
+ "unicode-ident",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "tempoch"
351
+ version = "0.3.0"
352
+ dependencies = [
353
+ "tempoch-core",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "tempoch-core"
358
+ version = "0.3.0"
359
+ dependencies = [
360
+ "chrono",
361
+ "qtty",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "tempoch-node"
366
+ version = "0.1.0"
367
+ dependencies = [
368
+ "chrono",
369
+ "napi",
370
+ "napi-build",
371
+ "napi-derive",
372
+ "qtty",
373
+ "tempoch",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "typenum"
378
+ version = "1.19.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
381
+
382
+ [[package]]
383
+ name = "unicode-ident"
384
+ version = "1.0.24"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
387
+
388
+ [[package]]
389
+ name = "unicode-segmentation"
390
+ version = "1.12.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
393
+
394
+ [[package]]
395
+ name = "wasm-bindgen"
396
+ version = "0.2.114"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
399
+ dependencies = [
400
+ "cfg-if",
401
+ "once_cell",
402
+ "rustversion",
403
+ "wasm-bindgen-macro",
404
+ "wasm-bindgen-shared",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "wasm-bindgen-macro"
409
+ version = "0.2.114"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
412
+ dependencies = [
413
+ "quote",
414
+ "wasm-bindgen-macro-support",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "wasm-bindgen-macro-support"
419
+ version = "0.2.114"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
422
+ dependencies = [
423
+ "bumpalo",
424
+ "proc-macro2",
425
+ "quote",
426
+ "syn",
427
+ "wasm-bindgen-shared",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "wasm-bindgen-shared"
432
+ version = "0.2.114"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
435
+ dependencies = [
436
+ "unicode-ident",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "windows-core"
441
+ version = "0.62.2"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
444
+ dependencies = [
445
+ "windows-implement",
446
+ "windows-interface",
447
+ "windows-link",
448
+ "windows-result",
449
+ "windows-strings",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "windows-implement"
454
+ version = "0.60.2"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
457
+ dependencies = [
458
+ "proc-macro2",
459
+ "quote",
460
+ "syn",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "windows-interface"
465
+ version = "0.59.3"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
468
+ dependencies = [
469
+ "proc-macro2",
470
+ "quote",
471
+ "syn",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "windows-link"
476
+ version = "0.2.1"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
479
+
480
+ [[package]]
481
+ name = "windows-result"
482
+ version = "0.4.1"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
485
+ dependencies = [
486
+ "windows-link",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "windows-strings"
491
+ version = "0.5.1"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
494
+ dependencies = [
495
+ "windows-link",
496
+ ]
@@ -0,0 +1,29 @@
1
+ [package]
2
+ name = "tempoch-node"
3
+ version = "0.1.0"
4
+ edition = "2021"
5
+ authors = ["VPRamon <vallespuigramon@gmail.com>"]
6
+ license = "AGPL-3.0"
7
+ repository = "https://github.com/Siderust/tempoch"
8
+ description = "Node.js native bindings for tempoch astronomical time primitives"
9
+ readme = "README.md"
10
+
11
+ [lib]
12
+ crate-type = ["cdylib"]
13
+
14
+ [dependencies]
15
+ tempoch = "0.3.0"
16
+ qtty = "0.4.0"
17
+ chrono = "0.4"
18
+ napi = { version = "2", features = ["napi6"] }
19
+ napi-derive = "2"
20
+
21
+ [build-dependencies]
22
+ napi-build = "2"
23
+
24
+ [patch.crates-io]
25
+ tempoch = { path = "../tempoch/tempoch" }
26
+
27
+ [profile.release]
28
+ lto = true
29
+ strip = "symbols"