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,889 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "android_system_properties"
7
+ version = "0.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10
+ dependencies = [
11
+ "libc",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "0.6.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.13"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "0.2.7"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.101"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
69
+
70
+ [[package]]
71
+ name = "autocfg"
72
+ version = "1.5.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
75
+
76
+ [[package]]
77
+ name = "bitflags"
78
+ version = "2.11.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
81
+
82
+ [[package]]
83
+ name = "bumpalo"
84
+ version = "3.20.0"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "c81d250916401487680ed13b8b675660281dcfc3ab0121fe44c94bcab9eae2fb"
87
+
88
+ [[package]]
89
+ name = "cbindgen"
90
+ version = "0.29.2"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
93
+ dependencies = [
94
+ "clap",
95
+ "heck",
96
+ "indexmap",
97
+ "log",
98
+ "proc-macro2",
99
+ "quote",
100
+ "serde",
101
+ "serde_json",
102
+ "syn",
103
+ "tempfile",
104
+ "toml",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "cc"
109
+ version = "1.2.56"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
112
+ dependencies = [
113
+ "find-msvc-tools",
114
+ "shlex",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "cfg-if"
119
+ version = "1.0.4"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
122
+
123
+ [[package]]
124
+ name = "chrono"
125
+ version = "0.4.43"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
128
+ dependencies = [
129
+ "iana-time-zone",
130
+ "js-sys",
131
+ "num-traits",
132
+ "wasm-bindgen",
133
+ "windows-link",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "clap"
138
+ version = "4.5.59"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499"
141
+ dependencies = [
142
+ "clap_builder",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "clap_builder"
147
+ version = "4.5.59"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24"
150
+ dependencies = [
151
+ "anstream",
152
+ "anstyle",
153
+ "clap_lex",
154
+ "strsim",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "clap_lex"
159
+ version = "1.0.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
162
+
163
+ [[package]]
164
+ name = "colorchoice"
165
+ version = "1.0.4"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
168
+
169
+ [[package]]
170
+ name = "core-foundation-sys"
171
+ version = "0.8.7"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
174
+
175
+ [[package]]
176
+ name = "equivalent"
177
+ version = "1.0.2"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
180
+
181
+ [[package]]
182
+ name = "errno"
183
+ version = "0.3.14"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
186
+ dependencies = [
187
+ "libc",
188
+ "windows-sys",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "fastrand"
193
+ version = "2.3.0"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
196
+
197
+ [[package]]
198
+ name = "find-msvc-tools"
199
+ version = "0.1.9"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
202
+
203
+ [[package]]
204
+ name = "foldhash"
205
+ version = "0.1.5"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
208
+
209
+ [[package]]
210
+ name = "getrandom"
211
+ version = "0.4.1"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
214
+ dependencies = [
215
+ "cfg-if",
216
+ "libc",
217
+ "r-efi",
218
+ "wasip2",
219
+ "wasip3",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "hashbrown"
224
+ version = "0.15.5"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
227
+ dependencies = [
228
+ "foldhash",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "hashbrown"
233
+ version = "0.16.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
236
+
237
+ [[package]]
238
+ name = "heck"
239
+ version = "0.5.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
242
+
243
+ [[package]]
244
+ name = "iana-time-zone"
245
+ version = "0.1.65"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
248
+ dependencies = [
249
+ "android_system_properties",
250
+ "core-foundation-sys",
251
+ "iana-time-zone-haiku",
252
+ "js-sys",
253
+ "log",
254
+ "wasm-bindgen",
255
+ "windows-core",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "iana-time-zone-haiku"
260
+ version = "0.1.2"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
263
+ dependencies = [
264
+ "cc",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "id-arena"
269
+ version = "2.3.0"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
272
+
273
+ [[package]]
274
+ name = "indexmap"
275
+ version = "2.13.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
278
+ dependencies = [
279
+ "equivalent",
280
+ "hashbrown 0.16.1",
281
+ "serde",
282
+ "serde_core",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "is_terminal_polyfill"
287
+ version = "1.70.2"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
290
+
291
+ [[package]]
292
+ name = "itoa"
293
+ version = "1.0.17"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
296
+
297
+ [[package]]
298
+ name = "js-sys"
299
+ version = "0.3.85"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
302
+ dependencies = [
303
+ "once_cell",
304
+ "wasm-bindgen",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "leb128fmt"
309
+ version = "0.1.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
312
+
313
+ [[package]]
314
+ name = "libc"
315
+ version = "0.2.182"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
318
+
319
+ [[package]]
320
+ name = "libm"
321
+ version = "0.2.16"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
324
+
325
+ [[package]]
326
+ name = "linux-raw-sys"
327
+ version = "0.11.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
330
+
331
+ [[package]]
332
+ name = "log"
333
+ version = "0.4.29"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
336
+
337
+ [[package]]
338
+ name = "memchr"
339
+ version = "2.8.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
342
+
343
+ [[package]]
344
+ name = "num-traits"
345
+ version = "0.2.19"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
348
+ dependencies = [
349
+ "autocfg",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "once_cell"
354
+ version = "1.21.3"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
357
+
358
+ [[package]]
359
+ name = "once_cell_polyfill"
360
+ version = "1.70.2"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
363
+
364
+ [[package]]
365
+ name = "prettyplease"
366
+ version = "0.2.37"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
369
+ dependencies = [
370
+ "proc-macro2",
371
+ "syn",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "proc-macro2"
376
+ version = "1.0.106"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
379
+ dependencies = [
380
+ "unicode-ident",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "qtty"
385
+ version = "0.3.0"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "ec18b86dcb4c777f979a171699a5f552675bbbfd7406d3d002403a26d7bd3215"
388
+ dependencies = [
389
+ "qtty-core",
390
+ "qtty-derive",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "qtty-core"
395
+ version = "0.3.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "02271e8e4889de336896d2b690ad40ef811e68a81726885a7ddfbccf7e35b19c"
398
+ dependencies = [
399
+ "libm",
400
+ "qtty-derive",
401
+ "typenum",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "qtty-derive"
406
+ version = "0.3.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "a6b1435ce1b31534c420c9b7c08dc7cf1d4a39f18748e7c7f29b71296d558a51"
409
+ dependencies = [
410
+ "proc-macro2",
411
+ "quote",
412
+ "syn",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "quote"
417
+ version = "1.0.44"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
420
+ dependencies = [
421
+ "proc-macro2",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "r-efi"
426
+ version = "5.3.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
429
+
430
+ [[package]]
431
+ name = "rustix"
432
+ version = "1.1.3"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
435
+ dependencies = [
436
+ "bitflags",
437
+ "errno",
438
+ "libc",
439
+ "linux-raw-sys",
440
+ "windows-sys",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "rustversion"
445
+ version = "1.0.22"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
448
+
449
+ [[package]]
450
+ name = "semver"
451
+ version = "1.0.27"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
454
+
455
+ [[package]]
456
+ name = "serde"
457
+ version = "1.0.228"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
460
+ dependencies = [
461
+ "serde_core",
462
+ "serde_derive",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "serde_core"
467
+ version = "1.0.228"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
470
+ dependencies = [
471
+ "serde_derive",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "serde_derive"
476
+ version = "1.0.228"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
479
+ dependencies = [
480
+ "proc-macro2",
481
+ "quote",
482
+ "syn",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "serde_json"
487
+ version = "1.0.149"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
490
+ dependencies = [
491
+ "itoa",
492
+ "memchr",
493
+ "serde",
494
+ "serde_core",
495
+ "zmij",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "serde_spanned"
500
+ version = "1.0.4"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
503
+ dependencies = [
504
+ "serde_core",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "shlex"
509
+ version = "1.3.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
512
+
513
+ [[package]]
514
+ name = "strsim"
515
+ version = "0.11.1"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
518
+
519
+ [[package]]
520
+ name = "syn"
521
+ version = "2.0.116"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
524
+ dependencies = [
525
+ "proc-macro2",
526
+ "quote",
527
+ "unicode-ident",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "tempfile"
532
+ version = "3.25.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
535
+ dependencies = [
536
+ "fastrand",
537
+ "getrandom",
538
+ "once_cell",
539
+ "rustix",
540
+ "windows-sys",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "tempoch"
545
+ version = "0.2.1"
546
+ dependencies = [
547
+ "chrono",
548
+ "qtty",
549
+ "serde",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "tempoch-ffi"
554
+ version = "0.1.0"
555
+ dependencies = [
556
+ "cbindgen",
557
+ "chrono",
558
+ "qtty",
559
+ "serde_json",
560
+ "tempoch",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "toml"
565
+ version = "0.9.12+spec-1.1.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
568
+ dependencies = [
569
+ "indexmap",
570
+ "serde_core",
571
+ "serde_spanned",
572
+ "toml_datetime",
573
+ "toml_parser",
574
+ "toml_writer",
575
+ "winnow",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "toml_datetime"
580
+ version = "0.7.5+spec-1.1.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
583
+ dependencies = [
584
+ "serde_core",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "toml_parser"
589
+ version = "1.0.9+spec-1.1.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
592
+ dependencies = [
593
+ "winnow",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "toml_writer"
598
+ version = "1.0.6+spec-1.1.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
601
+
602
+ [[package]]
603
+ name = "typenum"
604
+ version = "1.19.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
607
+
608
+ [[package]]
609
+ name = "unicode-ident"
610
+ version = "1.0.24"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
613
+
614
+ [[package]]
615
+ name = "unicode-xid"
616
+ version = "0.2.6"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
619
+
620
+ [[package]]
621
+ name = "utf8parse"
622
+ version = "0.2.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
625
+
626
+ [[package]]
627
+ name = "wasip2"
628
+ version = "1.0.2+wasi-0.2.9"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
631
+ dependencies = [
632
+ "wit-bindgen",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "wasip3"
637
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
640
+ dependencies = [
641
+ "wit-bindgen",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "wasm-bindgen"
646
+ version = "0.2.108"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
649
+ dependencies = [
650
+ "cfg-if",
651
+ "once_cell",
652
+ "rustversion",
653
+ "wasm-bindgen-macro",
654
+ "wasm-bindgen-shared",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "wasm-bindgen-macro"
659
+ version = "0.2.108"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
662
+ dependencies = [
663
+ "quote",
664
+ "wasm-bindgen-macro-support",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "wasm-bindgen-macro-support"
669
+ version = "0.2.108"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
672
+ dependencies = [
673
+ "bumpalo",
674
+ "proc-macro2",
675
+ "quote",
676
+ "syn",
677
+ "wasm-bindgen-shared",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "wasm-bindgen-shared"
682
+ version = "0.2.108"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
685
+ dependencies = [
686
+ "unicode-ident",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "wasm-encoder"
691
+ version = "0.244.0"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
694
+ dependencies = [
695
+ "leb128fmt",
696
+ "wasmparser",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "wasm-metadata"
701
+ version = "0.244.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
704
+ dependencies = [
705
+ "anyhow",
706
+ "indexmap",
707
+ "wasm-encoder",
708
+ "wasmparser",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "wasmparser"
713
+ version = "0.244.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
716
+ dependencies = [
717
+ "bitflags",
718
+ "hashbrown 0.15.5",
719
+ "indexmap",
720
+ "semver",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "windows-core"
725
+ version = "0.62.2"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
728
+ dependencies = [
729
+ "windows-implement",
730
+ "windows-interface",
731
+ "windows-link",
732
+ "windows-result",
733
+ "windows-strings",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "windows-implement"
738
+ version = "0.60.2"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
741
+ dependencies = [
742
+ "proc-macro2",
743
+ "quote",
744
+ "syn",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "windows-interface"
749
+ version = "0.59.3"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
752
+ dependencies = [
753
+ "proc-macro2",
754
+ "quote",
755
+ "syn",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "windows-link"
760
+ version = "0.2.1"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
763
+
764
+ [[package]]
765
+ name = "windows-result"
766
+ version = "0.4.1"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
769
+ dependencies = [
770
+ "windows-link",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "windows-strings"
775
+ version = "0.5.1"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
778
+ dependencies = [
779
+ "windows-link",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "windows-sys"
784
+ version = "0.61.2"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
787
+ dependencies = [
788
+ "windows-link",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "winnow"
793
+ version = "0.7.14"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
796
+
797
+ [[package]]
798
+ name = "wit-bindgen"
799
+ version = "0.51.0"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
802
+ dependencies = [
803
+ "wit-bindgen-rust-macro",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "wit-bindgen-core"
808
+ version = "0.51.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
811
+ dependencies = [
812
+ "anyhow",
813
+ "heck",
814
+ "wit-parser",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "wit-bindgen-rust"
819
+ version = "0.51.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
822
+ dependencies = [
823
+ "anyhow",
824
+ "heck",
825
+ "indexmap",
826
+ "prettyplease",
827
+ "syn",
828
+ "wasm-metadata",
829
+ "wit-bindgen-core",
830
+ "wit-component",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "wit-bindgen-rust-macro"
835
+ version = "0.51.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
838
+ dependencies = [
839
+ "anyhow",
840
+ "prettyplease",
841
+ "proc-macro2",
842
+ "quote",
843
+ "syn",
844
+ "wit-bindgen-core",
845
+ "wit-bindgen-rust",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "wit-component"
850
+ version = "0.244.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
853
+ dependencies = [
854
+ "anyhow",
855
+ "bitflags",
856
+ "indexmap",
857
+ "log",
858
+ "serde",
859
+ "serde_derive",
860
+ "serde_json",
861
+ "wasm-encoder",
862
+ "wasm-metadata",
863
+ "wasmparser",
864
+ "wit-parser",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "wit-parser"
869
+ version = "0.244.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
872
+ dependencies = [
873
+ "anyhow",
874
+ "id-arena",
875
+ "indexmap",
876
+ "log",
877
+ "semver",
878
+ "serde",
879
+ "serde_derive",
880
+ "serde_json",
881
+ "unicode-xid",
882
+ "wasmparser",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "zmij"
887
+ version = "1.0.21"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"