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,947 @@
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.19.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
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.55"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
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.44"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
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.181"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "459427e2af2b9c839b132acb702a1c654d95e10f8c326bfc2ad11310e458b1c5"
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.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "b42948ee9aba0ed2217fd0d89a666df2ab020e3e25ef9b0328150e6d6c0aaee3"
388
+ dependencies = [
389
+ "qtty-core 0.3.1",
390
+ "qtty-derive 0.3.1",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "qtty"
395
+ version = "0.4.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "bea89a195c12cff1a98730ebdbf28ac603d75a5eaba14e0b0d0704535f67a811"
398
+ dependencies = [
399
+ "qtty-core 0.4.0",
400
+ "qtty-derive 0.4.0",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "qtty-core"
405
+ version = "0.3.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "283c549662e44f8a2848964e9639f2924f7a442f94294d508fc70c531a9717b3"
408
+ dependencies = [
409
+ "libm",
410
+ "qtty-derive 0.3.1",
411
+ "typenum",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "qtty-core"
416
+ version = "0.4.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "eec18c85c65728c91aeec04456140bece6d71cb703307f786303523957759718"
419
+ dependencies = [
420
+ "libm",
421
+ "qtty-derive 0.4.0",
422
+ "typenum",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "qtty-derive"
427
+ version = "0.3.1"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "5edb55d59461af47a984baae7fafc2374dac2a79d41434a77ee7807f0f592757"
430
+ dependencies = [
431
+ "proc-macro2",
432
+ "quote",
433
+ "syn",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "qtty-derive"
438
+ version = "0.4.0"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "e5c4ed7c0500072e756d76102cf8fceebe6ae9199e6e16ca018948eb80c78625"
441
+ dependencies = [
442
+ "proc-macro2",
443
+ "quote",
444
+ "syn",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "qtty-ffi"
449
+ version = "0.3.1"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "d93de7d3db9abe1006b8a8b635de51f6d967636be144d06c28f66c3b8a49bd17"
452
+ dependencies = [
453
+ "cbindgen",
454
+ "qtty 0.3.1",
455
+ "quote",
456
+ "serde",
457
+ "serde_json",
458
+ "syn",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "quote"
463
+ version = "1.0.44"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
466
+ dependencies = [
467
+ "proc-macro2",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "r-efi"
472
+ version = "5.3.0"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
475
+
476
+ [[package]]
477
+ name = "rustix"
478
+ version = "1.1.3"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
481
+ dependencies = [
482
+ "bitflags",
483
+ "errno",
484
+ "libc",
485
+ "linux-raw-sys",
486
+ "windows-sys",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "rustversion"
491
+ version = "1.0.22"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
494
+
495
+ [[package]]
496
+ name = "semver"
497
+ version = "1.0.27"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
500
+
501
+ [[package]]
502
+ name = "serde"
503
+ version = "1.0.228"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
506
+ dependencies = [
507
+ "serde_core",
508
+ "serde_derive",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "serde_core"
513
+ version = "1.0.228"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
516
+ dependencies = [
517
+ "serde_derive",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "serde_derive"
522
+ version = "1.0.228"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
525
+ dependencies = [
526
+ "proc-macro2",
527
+ "quote",
528
+ "syn",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "serde_json"
533
+ version = "1.0.149"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
536
+ dependencies = [
537
+ "itoa",
538
+ "memchr",
539
+ "serde",
540
+ "serde_core",
541
+ "zmij",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "serde_spanned"
546
+ version = "1.0.4"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
549
+ dependencies = [
550
+ "serde_core",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "shlex"
555
+ version = "1.3.0"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
558
+
559
+ [[package]]
560
+ name = "strsim"
561
+ version = "0.11.1"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
564
+
565
+ [[package]]
566
+ name = "syn"
567
+ version = "2.0.115"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "6e614ed320ac28113fa64972c4262d5dbc89deacdfd00c34a3e4cea073243c12"
570
+ dependencies = [
571
+ "proc-macro2",
572
+ "quote",
573
+ "unicode-ident",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "tempfile"
578
+ version = "3.25.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
581
+ dependencies = [
582
+ "fastrand",
583
+ "getrandom",
584
+ "once_cell",
585
+ "rustix",
586
+ "windows-sys",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "tempoch"
591
+ version = "0.3.0"
592
+ dependencies = [
593
+ "chrono",
594
+ "qtty 0.4.0",
595
+ "serde_json",
596
+ "tempoch-core",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "tempoch-core"
601
+ version = "0.3.0"
602
+ dependencies = [
603
+ "chrono",
604
+ "qtty 0.4.0",
605
+ "serde",
606
+ "serde_json",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "tempoch-ffi"
611
+ version = "0.1.0"
612
+ dependencies = [
613
+ "cbindgen",
614
+ "chrono",
615
+ "qtty 0.4.0",
616
+ "qtty-ffi",
617
+ "serde_json",
618
+ "tempoch",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "toml"
623
+ version = "0.9.12+spec-1.1.0"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
626
+ dependencies = [
627
+ "indexmap",
628
+ "serde_core",
629
+ "serde_spanned",
630
+ "toml_datetime",
631
+ "toml_parser",
632
+ "toml_writer",
633
+ "winnow",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "toml_datetime"
638
+ version = "0.7.5+spec-1.1.0"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
641
+ dependencies = [
642
+ "serde_core",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "toml_parser"
647
+ version = "1.0.9+spec-1.1.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
650
+ dependencies = [
651
+ "winnow",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "toml_writer"
656
+ version = "1.0.6+spec-1.1.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
659
+
660
+ [[package]]
661
+ name = "typenum"
662
+ version = "1.19.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
665
+
666
+ [[package]]
667
+ name = "unicode-ident"
668
+ version = "1.0.23"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
671
+
672
+ [[package]]
673
+ name = "unicode-xid"
674
+ version = "0.2.6"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
677
+
678
+ [[package]]
679
+ name = "utf8parse"
680
+ version = "0.2.2"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
683
+
684
+ [[package]]
685
+ name = "wasip2"
686
+ version = "1.0.2+wasi-0.2.9"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
689
+ dependencies = [
690
+ "wit-bindgen",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "wasip3"
695
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
698
+ dependencies = [
699
+ "wit-bindgen",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "wasm-bindgen"
704
+ version = "0.2.108"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
707
+ dependencies = [
708
+ "cfg-if",
709
+ "once_cell",
710
+ "rustversion",
711
+ "wasm-bindgen-macro",
712
+ "wasm-bindgen-shared",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "wasm-bindgen-macro"
717
+ version = "0.2.108"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
720
+ dependencies = [
721
+ "quote",
722
+ "wasm-bindgen-macro-support",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "wasm-bindgen-macro-support"
727
+ version = "0.2.108"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
730
+ dependencies = [
731
+ "bumpalo",
732
+ "proc-macro2",
733
+ "quote",
734
+ "syn",
735
+ "wasm-bindgen-shared",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "wasm-bindgen-shared"
740
+ version = "0.2.108"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
743
+ dependencies = [
744
+ "unicode-ident",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "wasm-encoder"
749
+ version = "0.244.0"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
752
+ dependencies = [
753
+ "leb128fmt",
754
+ "wasmparser",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "wasm-metadata"
759
+ version = "0.244.0"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
762
+ dependencies = [
763
+ "anyhow",
764
+ "indexmap",
765
+ "wasm-encoder",
766
+ "wasmparser",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "wasmparser"
771
+ version = "0.244.0"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
774
+ dependencies = [
775
+ "bitflags",
776
+ "hashbrown 0.15.5",
777
+ "indexmap",
778
+ "semver",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "windows-core"
783
+ version = "0.62.2"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
786
+ dependencies = [
787
+ "windows-implement",
788
+ "windows-interface",
789
+ "windows-link",
790
+ "windows-result",
791
+ "windows-strings",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "windows-implement"
796
+ version = "0.60.2"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
799
+ dependencies = [
800
+ "proc-macro2",
801
+ "quote",
802
+ "syn",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "windows-interface"
807
+ version = "0.59.3"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
810
+ dependencies = [
811
+ "proc-macro2",
812
+ "quote",
813
+ "syn",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "windows-link"
818
+ version = "0.2.1"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
821
+
822
+ [[package]]
823
+ name = "windows-result"
824
+ version = "0.4.1"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
827
+ dependencies = [
828
+ "windows-link",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "windows-strings"
833
+ version = "0.5.1"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
836
+ dependencies = [
837
+ "windows-link",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "windows-sys"
842
+ version = "0.61.2"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
845
+ dependencies = [
846
+ "windows-link",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "winnow"
851
+ version = "0.7.14"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
854
+
855
+ [[package]]
856
+ name = "wit-bindgen"
857
+ version = "0.51.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
860
+ dependencies = [
861
+ "wit-bindgen-rust-macro",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "wit-bindgen-core"
866
+ version = "0.51.0"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
869
+ dependencies = [
870
+ "anyhow",
871
+ "heck",
872
+ "wit-parser",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "wit-bindgen-rust"
877
+ version = "0.51.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
880
+ dependencies = [
881
+ "anyhow",
882
+ "heck",
883
+ "indexmap",
884
+ "prettyplease",
885
+ "syn",
886
+ "wasm-metadata",
887
+ "wit-bindgen-core",
888
+ "wit-component",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "wit-bindgen-rust-macro"
893
+ version = "0.51.0"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
896
+ dependencies = [
897
+ "anyhow",
898
+ "prettyplease",
899
+ "proc-macro2",
900
+ "quote",
901
+ "syn",
902
+ "wit-bindgen-core",
903
+ "wit-bindgen-rust",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "wit-component"
908
+ version = "0.244.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
911
+ dependencies = [
912
+ "anyhow",
913
+ "bitflags",
914
+ "indexmap",
915
+ "log",
916
+ "serde",
917
+ "serde_derive",
918
+ "serde_json",
919
+ "wasm-encoder",
920
+ "wasm-metadata",
921
+ "wasmparser",
922
+ "wit-parser",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "wit-parser"
927
+ version = "0.244.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
930
+ dependencies = [
931
+ "anyhow",
932
+ "id-arena",
933
+ "indexmap",
934
+ "log",
935
+ "semver",
936
+ "serde",
937
+ "serde_derive",
938
+ "serde_json",
939
+ "unicode-xid",
940
+ "wasmparser",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "zmij"
945
+ version = "1.0.21"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"