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