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,1462 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.17",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "anstream"
18
+ version = "0.6.21"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
21
+ dependencies = [
22
+ "anstyle",
23
+ "anstyle-parse",
24
+ "anstyle-query",
25
+ "anstyle-wincon",
26
+ "colorchoice",
27
+ "is_terminal_polyfill",
28
+ "utf8parse",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "anstyle"
33
+ version = "1.0.13"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
36
+
37
+ [[package]]
38
+ name = "anstyle-parse"
39
+ version = "0.2.7"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
42
+ dependencies = [
43
+ "utf8parse",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anstyle-query"
48
+ version = "1.1.5"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
51
+ dependencies = [
52
+ "windows-sys",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anstyle-wincon"
57
+ version = "3.0.11"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
60
+ dependencies = [
61
+ "anstyle",
62
+ "once_cell_polyfill",
63
+ "windows-sys",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "approx"
68
+ version = "0.5.1"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
71
+ dependencies = [
72
+ "num-traits",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "arrayvec"
77
+ version = "0.7.6"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
80
+
81
+ [[package]]
82
+ name = "async-trait"
83
+ version = "0.1.89"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
86
+ dependencies = [
87
+ "proc-macro2",
88
+ "quote",
89
+ "syn 2.0.111",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "asynchronous-codec"
94
+ version = "0.6.2"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568"
97
+ dependencies = [
98
+ "bytes",
99
+ "futures-sink",
100
+ "futures-util",
101
+ "memchr",
102
+ "pin-project-lite",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "autocfg"
107
+ version = "1.5.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
110
+
111
+ [[package]]
112
+ name = "bit-set"
113
+ version = "0.8.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
116
+ dependencies = [
117
+ "bit-vec",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "bit-vec"
122
+ version = "0.8.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
125
+
126
+ [[package]]
127
+ name = "bitflags"
128
+ version = "2.10.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
131
+
132
+ [[package]]
133
+ name = "bitvec"
134
+ version = "1.0.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
137
+ dependencies = [
138
+ "funty",
139
+ "radium",
140
+ "tap",
141
+ "wyz",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "borsh"
146
+ version = "1.6.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
149
+ dependencies = [
150
+ "borsh-derive",
151
+ "cfg_aliases",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "borsh-derive"
156
+ version = "1.6.0"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
159
+ dependencies = [
160
+ "once_cell",
161
+ "proc-macro-crate",
162
+ "proc-macro2",
163
+ "quote",
164
+ "syn 2.0.111",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "bumpalo"
169
+ version = "3.19.1"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
172
+
173
+ [[package]]
174
+ name = "bytecheck"
175
+ version = "0.6.12"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
178
+ dependencies = [
179
+ "bytecheck_derive",
180
+ "ptr_meta",
181
+ "simdutf8",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "bytecheck_derive"
186
+ version = "0.6.12"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
189
+ dependencies = [
190
+ "proc-macro2",
191
+ "quote",
192
+ "syn 1.0.109",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "byteorder"
197
+ version = "1.5.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
200
+
201
+ [[package]]
202
+ name = "bytes"
203
+ version = "1.11.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
206
+
207
+ [[package]]
208
+ name = "cbindgen"
209
+ version = "0.29.2"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
212
+ dependencies = [
213
+ "clap",
214
+ "heck",
215
+ "indexmap",
216
+ "log",
217
+ "proc-macro2",
218
+ "quote",
219
+ "serde",
220
+ "serde_json",
221
+ "syn 2.0.111",
222
+ "tempfile",
223
+ "toml",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "cfg-if"
228
+ version = "1.0.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
231
+
232
+ [[package]]
233
+ name = "cfg_aliases"
234
+ version = "0.2.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
237
+
238
+ [[package]]
239
+ name = "clap"
240
+ version = "4.5.53"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
243
+ dependencies = [
244
+ "clap_builder",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "clap_builder"
249
+ version = "4.5.53"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
252
+ dependencies = [
253
+ "anstream",
254
+ "anstyle",
255
+ "clap_lex",
256
+ "strsim",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "clap_lex"
261
+ version = "0.7.6"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
264
+
265
+ [[package]]
266
+ name = "colorchoice"
267
+ version = "1.0.4"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
270
+
271
+ [[package]]
272
+ name = "connection-string"
273
+ version = "0.2.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "510ca239cf13b7f8d16a2b48f263de7b4f8c566f0af58d901031473c76afb1e3"
276
+
277
+ [[package]]
278
+ name = "darling"
279
+ version = "0.21.3"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
282
+ dependencies = [
283
+ "darling_core",
284
+ "darling_macro",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "darling_core"
289
+ version = "0.21.3"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
292
+ dependencies = [
293
+ "fnv",
294
+ "ident_case",
295
+ "proc-macro2",
296
+ "quote",
297
+ "strsim",
298
+ "syn 2.0.111",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "darling_macro"
303
+ version = "0.21.3"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
306
+ dependencies = [
307
+ "darling_core",
308
+ "quote",
309
+ "syn 2.0.111",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "diesel"
314
+ version = "2.3.5"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "e130c806dccc85428c564f2dc5a96e05b6615a27c9a28776bd7761a9af4bb552"
317
+ dependencies = [
318
+ "diesel_derives",
319
+ "downcast-rs",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "diesel_derives"
324
+ version = "2.3.6"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "c30b2969f923fa1f73744b92bb7df60b858df8832742d9a3aceb79236c0be1d2"
327
+ dependencies = [
328
+ "diesel_table_macro_syntax",
329
+ "dsl_auto_type",
330
+ "proc-macro2",
331
+ "quote",
332
+ "syn 2.0.111",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "diesel_table_macro_syntax"
337
+ version = "0.3.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "fe2444076b48641147115697648dc743c2c00b61adade0f01ce67133c7babe8c"
340
+ dependencies = [
341
+ "syn 2.0.111",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "downcast-rs"
346
+ version = "2.0.2"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
349
+
350
+ [[package]]
351
+ name = "dsl_auto_type"
352
+ version = "0.2.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "dd122633e4bef06db27737f21d3738fb89c8f6d5360d6d9d7635dda142a7757e"
355
+ dependencies = [
356
+ "darling",
357
+ "either",
358
+ "heck",
359
+ "proc-macro2",
360
+ "quote",
361
+ "syn 2.0.111",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "either"
366
+ version = "1.15.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
369
+
370
+ [[package]]
371
+ name = "encoding_rs"
372
+ version = "0.8.35"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
375
+ dependencies = [
376
+ "cfg-if",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "enumflags2"
381
+ version = "0.7.12"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
384
+ dependencies = [
385
+ "enumflags2_derive",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "enumflags2_derive"
390
+ version = "0.7.12"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
393
+ dependencies = [
394
+ "proc-macro2",
395
+ "quote",
396
+ "syn 2.0.111",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "equivalent"
401
+ version = "1.0.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
404
+
405
+ [[package]]
406
+ name = "errno"
407
+ version = "0.3.14"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
410
+ dependencies = [
411
+ "libc",
412
+ "windows-sys",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "fastrand"
417
+ version = "2.3.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
420
+
421
+ [[package]]
422
+ name = "fnv"
423
+ version = "1.0.7"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
426
+
427
+ [[package]]
428
+ name = "funty"
429
+ version = "2.0.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
432
+
433
+ [[package]]
434
+ name = "futures-core"
435
+ version = "0.3.31"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
438
+
439
+ [[package]]
440
+ name = "futures-io"
441
+ version = "0.3.31"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
444
+
445
+ [[package]]
446
+ name = "futures-macro"
447
+ version = "0.3.31"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
450
+ dependencies = [
451
+ "proc-macro2",
452
+ "quote",
453
+ "syn 2.0.111",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "futures-sink"
458
+ version = "0.3.31"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
461
+
462
+ [[package]]
463
+ name = "futures-task"
464
+ version = "0.3.31"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
467
+
468
+ [[package]]
469
+ name = "futures-util"
470
+ version = "0.3.31"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
473
+ dependencies = [
474
+ "futures-core",
475
+ "futures-io",
476
+ "futures-macro",
477
+ "futures-sink",
478
+ "futures-task",
479
+ "memchr",
480
+ "pin-project-lite",
481
+ "pin-utils",
482
+ "slab",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "getrandom"
487
+ version = "0.2.17"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
490
+ dependencies = [
491
+ "cfg-if",
492
+ "libc",
493
+ "wasi",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "getrandom"
498
+ version = "0.3.4"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
501
+ dependencies = [
502
+ "cfg-if",
503
+ "libc",
504
+ "r-efi",
505
+ "wasip2",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "hashbrown"
510
+ version = "0.12.3"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
513
+ dependencies = [
514
+ "ahash",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "hashbrown"
519
+ version = "0.16.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
522
+
523
+ [[package]]
524
+ name = "heck"
525
+ version = "0.5.0"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
528
+
529
+ [[package]]
530
+ name = "ident_case"
531
+ version = "1.0.1"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
534
+
535
+ [[package]]
536
+ name = "indexmap"
537
+ version = "2.12.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
540
+ dependencies = [
541
+ "equivalent",
542
+ "hashbrown 0.16.1",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "is_terminal_polyfill"
547
+ version = "1.70.2"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
550
+
551
+ [[package]]
552
+ name = "itoa"
553
+ version = "1.0.15"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
556
+
557
+ [[package]]
558
+ name = "js-sys"
559
+ version = "0.3.85"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
562
+ dependencies = [
563
+ "once_cell",
564
+ "wasm-bindgen",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "libc"
569
+ version = "0.2.178"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
572
+
573
+ [[package]]
574
+ name = "libm"
575
+ version = "0.2.15"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
578
+
579
+ [[package]]
580
+ name = "linux-raw-sys"
581
+ version = "0.11.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
584
+
585
+ [[package]]
586
+ name = "log"
587
+ version = "0.4.29"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
590
+
591
+ [[package]]
592
+ name = "memchr"
593
+ version = "2.7.6"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
596
+
597
+ [[package]]
598
+ name = "num-integer"
599
+ version = "0.1.46"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
602
+ dependencies = [
603
+ "num-traits",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "num-rational"
608
+ version = "0.4.2"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
611
+ dependencies = [
612
+ "num-integer",
613
+ "num-traits",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "num-traits"
618
+ version = "0.2.19"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
621
+ dependencies = [
622
+ "autocfg",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "once_cell"
627
+ version = "1.21.3"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
630
+
631
+ [[package]]
632
+ name = "once_cell_polyfill"
633
+ version = "1.70.2"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
636
+
637
+ [[package]]
638
+ name = "pin-project-lite"
639
+ version = "0.2.16"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
642
+
643
+ [[package]]
644
+ name = "pin-utils"
645
+ version = "0.1.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
648
+
649
+ [[package]]
650
+ name = "portable-atomic"
651
+ version = "1.13.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
654
+
655
+ [[package]]
656
+ name = "ppv-lite86"
657
+ version = "0.2.21"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
660
+ dependencies = [
661
+ "zerocopy",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "pretty-hex"
666
+ version = "0.3.0"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5"
669
+
670
+ [[package]]
671
+ name = "proc-macro-crate"
672
+ version = "3.4.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
675
+ dependencies = [
676
+ "toml_edit",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "proc-macro2"
681
+ version = "1.0.103"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
684
+ dependencies = [
685
+ "unicode-ident",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "proptest"
690
+ version = "1.9.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
693
+ dependencies = [
694
+ "bit-set",
695
+ "bit-vec",
696
+ "bitflags",
697
+ "num-traits",
698
+ "rand 0.9.2",
699
+ "rand_chacha 0.9.0",
700
+ "rand_xorshift",
701
+ "regex-syntax",
702
+ "rusty-fork",
703
+ "tempfile",
704
+ "unarray",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "ptr_meta"
709
+ version = "0.1.4"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
712
+ dependencies = [
713
+ "ptr_meta_derive",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "ptr_meta_derive"
718
+ version = "0.1.4"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
721
+ dependencies = [
722
+ "proc-macro2",
723
+ "quote",
724
+ "syn 1.0.109",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "pyo3"
729
+ version = "0.28.2"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
732
+ dependencies = [
733
+ "libc",
734
+ "once_cell",
735
+ "portable-atomic",
736
+ "pyo3-build-config",
737
+ "pyo3-ffi",
738
+ "pyo3-macros",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "pyo3-build-config"
743
+ version = "0.28.2"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
746
+ dependencies = [
747
+ "target-lexicon",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "pyo3-ffi"
752
+ version = "0.28.2"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
755
+ dependencies = [
756
+ "libc",
757
+ "pyo3-build-config",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "pyo3-macros"
762
+ version = "0.28.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
765
+ dependencies = [
766
+ "proc-macro2",
767
+ "pyo3-macros-backend",
768
+ "quote",
769
+ "syn 2.0.111",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "pyo3-macros-backend"
774
+ version = "0.28.2"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
777
+ dependencies = [
778
+ "heck",
779
+ "proc-macro2",
780
+ "pyo3-build-config",
781
+ "quote",
782
+ "syn 2.0.111",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "qtty"
787
+ version = "0.4.0"
788
+ dependencies = [
789
+ "approx",
790
+ "proptest",
791
+ "pyo3",
792
+ "qtty-core",
793
+ "qtty-derive",
794
+ "serde",
795
+ "serde_json",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "qtty-core"
800
+ version = "0.4.0"
801
+ dependencies = [
802
+ "approx",
803
+ "diesel",
804
+ "libm",
805
+ "num-rational",
806
+ "proptest",
807
+ "pyo3",
808
+ "qtty-derive",
809
+ "rust_decimal",
810
+ "serde",
811
+ "serde_json",
812
+ "tiberius",
813
+ "typenum",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "qtty-derive"
818
+ version = "0.4.0"
819
+ dependencies = [
820
+ "proc-macro2",
821
+ "qtty-core",
822
+ "quote",
823
+ "syn 2.0.111",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "qtty-ffi"
828
+ version = "0.4.0"
829
+ dependencies = [
830
+ "approx",
831
+ "cbindgen",
832
+ "pyo3",
833
+ "qtty",
834
+ "quote",
835
+ "serde",
836
+ "serde_json",
837
+ "syn 2.0.111",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "quick-error"
842
+ version = "1.2.3"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
845
+
846
+ [[package]]
847
+ name = "quote"
848
+ version = "1.0.42"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
851
+ dependencies = [
852
+ "proc-macro2",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "r-efi"
857
+ version = "5.3.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
860
+
861
+ [[package]]
862
+ name = "radium"
863
+ version = "0.7.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
866
+
867
+ [[package]]
868
+ name = "rand"
869
+ version = "0.8.5"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
872
+ dependencies = [
873
+ "libc",
874
+ "rand_chacha 0.3.1",
875
+ "rand_core 0.6.4",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "rand"
880
+ version = "0.9.2"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
883
+ dependencies = [
884
+ "rand_chacha 0.9.0",
885
+ "rand_core 0.9.3",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "rand_chacha"
890
+ version = "0.3.1"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
893
+ dependencies = [
894
+ "ppv-lite86",
895
+ "rand_core 0.6.4",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "rand_chacha"
900
+ version = "0.9.0"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
903
+ dependencies = [
904
+ "ppv-lite86",
905
+ "rand_core 0.9.3",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "rand_core"
910
+ version = "0.6.4"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
913
+ dependencies = [
914
+ "getrandom 0.2.17",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "rand_core"
919
+ version = "0.9.3"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
922
+ dependencies = [
923
+ "getrandom 0.3.4",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "rand_xorshift"
928
+ version = "0.4.0"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
931
+ dependencies = [
932
+ "rand_core 0.9.3",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "regex-syntax"
937
+ version = "0.8.8"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
940
+
941
+ [[package]]
942
+ name = "rend"
943
+ version = "0.4.2"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
946
+ dependencies = [
947
+ "bytecheck",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "rkyv"
952
+ version = "0.7.46"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
955
+ dependencies = [
956
+ "bitvec",
957
+ "bytecheck",
958
+ "bytes",
959
+ "hashbrown 0.12.3",
960
+ "ptr_meta",
961
+ "rend",
962
+ "rkyv_derive",
963
+ "seahash",
964
+ "tinyvec",
965
+ "uuid",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "rkyv_derive"
970
+ version = "0.7.46"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
973
+ dependencies = [
974
+ "proc-macro2",
975
+ "quote",
976
+ "syn 1.0.109",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "rust_decimal"
981
+ version = "1.40.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
984
+ dependencies = [
985
+ "arrayvec",
986
+ "borsh",
987
+ "bytes",
988
+ "num-traits",
989
+ "rand 0.8.5",
990
+ "rkyv",
991
+ "serde",
992
+ "serde_json",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "rustix"
997
+ version = "1.1.2"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1000
+ dependencies = [
1001
+ "bitflags",
1002
+ "errno",
1003
+ "libc",
1004
+ "linux-raw-sys",
1005
+ "windows-sys",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "rustversion"
1010
+ version = "1.0.22"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1013
+
1014
+ [[package]]
1015
+ name = "rusty-fork"
1016
+ version = "0.3.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1019
+ dependencies = [
1020
+ "fnv",
1021
+ "quick-error",
1022
+ "tempfile",
1023
+ "wait-timeout",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "ryu"
1028
+ version = "1.0.20"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1031
+
1032
+ [[package]]
1033
+ name = "seahash"
1034
+ version = "4.1.0"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1037
+
1038
+ [[package]]
1039
+ name = "serde"
1040
+ version = "1.0.228"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1043
+ dependencies = [
1044
+ "serde_core",
1045
+ "serde_derive",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "serde_core"
1050
+ version = "1.0.228"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1053
+ dependencies = [
1054
+ "serde_derive",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "serde_derive"
1059
+ version = "1.0.228"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1062
+ dependencies = [
1063
+ "proc-macro2",
1064
+ "quote",
1065
+ "syn 2.0.111",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "serde_json"
1070
+ version = "1.0.145"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1073
+ dependencies = [
1074
+ "itoa",
1075
+ "memchr",
1076
+ "ryu",
1077
+ "serde",
1078
+ "serde_core",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "serde_spanned"
1083
+ version = "1.0.4"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
1086
+ dependencies = [
1087
+ "serde_core",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "simdutf8"
1092
+ version = "0.1.5"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1095
+
1096
+ [[package]]
1097
+ name = "slab"
1098
+ version = "0.4.11"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1101
+
1102
+ [[package]]
1103
+ name = "strsim"
1104
+ version = "0.11.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1107
+
1108
+ [[package]]
1109
+ name = "syn"
1110
+ version = "1.0.109"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1113
+ dependencies = [
1114
+ "proc-macro2",
1115
+ "quote",
1116
+ "unicode-ident",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "syn"
1121
+ version = "2.0.111"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1124
+ dependencies = [
1125
+ "proc-macro2",
1126
+ "quote",
1127
+ "unicode-ident",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "tap"
1132
+ version = "1.0.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1135
+
1136
+ [[package]]
1137
+ name = "target-lexicon"
1138
+ version = "0.13.4"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
1141
+
1142
+ [[package]]
1143
+ name = "tempfile"
1144
+ version = "3.23.0"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1147
+ dependencies = [
1148
+ "fastrand",
1149
+ "getrandom 0.3.4",
1150
+ "once_cell",
1151
+ "rustix",
1152
+ "windows-sys",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "thiserror"
1157
+ version = "1.0.69"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1160
+ dependencies = [
1161
+ "thiserror-impl",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "thiserror-impl"
1166
+ version = "1.0.69"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1169
+ dependencies = [
1170
+ "proc-macro2",
1171
+ "quote",
1172
+ "syn 2.0.111",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "tiberius"
1177
+ version = "0.12.3"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "a1446cb4198848d1562301a3340424b4f425ef79f35ef9ee034769a9dd92c10d"
1180
+ dependencies = [
1181
+ "async-trait",
1182
+ "asynchronous-codec",
1183
+ "byteorder",
1184
+ "bytes",
1185
+ "connection-string",
1186
+ "encoding_rs",
1187
+ "enumflags2",
1188
+ "futures-util",
1189
+ "num-traits",
1190
+ "once_cell",
1191
+ "pin-project-lite",
1192
+ "pretty-hex",
1193
+ "thiserror",
1194
+ "tracing",
1195
+ "uuid",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "tinyvec"
1200
+ version = "1.10.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1203
+ dependencies = [
1204
+ "tinyvec_macros",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "tinyvec_macros"
1209
+ version = "0.1.1"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1212
+
1213
+ [[package]]
1214
+ name = "toml"
1215
+ version = "0.9.11+spec-1.1.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
1218
+ dependencies = [
1219
+ "indexmap",
1220
+ "serde_core",
1221
+ "serde_spanned",
1222
+ "toml_datetime",
1223
+ "toml_parser",
1224
+ "toml_writer",
1225
+ "winnow",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "toml_datetime"
1230
+ version = "0.7.5+spec-1.1.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1233
+ dependencies = [
1234
+ "serde_core",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "toml_edit"
1239
+ version = "0.23.10+spec-1.0.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
1242
+ dependencies = [
1243
+ "indexmap",
1244
+ "toml_datetime",
1245
+ "toml_parser",
1246
+ "winnow",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "toml_parser"
1251
+ version = "1.0.6+spec-1.1.0"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
1254
+ dependencies = [
1255
+ "winnow",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "toml_writer"
1260
+ version = "1.0.6+spec-1.1.0"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
1263
+
1264
+ [[package]]
1265
+ name = "tracing"
1266
+ version = "0.1.44"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1269
+ dependencies = [
1270
+ "log",
1271
+ "pin-project-lite",
1272
+ "tracing-attributes",
1273
+ "tracing-core",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "tracing-attributes"
1278
+ version = "0.1.31"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1281
+ dependencies = [
1282
+ "proc-macro2",
1283
+ "quote",
1284
+ "syn 2.0.111",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "tracing-core"
1289
+ version = "0.1.36"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1292
+ dependencies = [
1293
+ "once_cell",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "typenum"
1298
+ version = "1.19.0"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1301
+
1302
+ [[package]]
1303
+ name = "unarray"
1304
+ version = "0.1.4"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1307
+
1308
+ [[package]]
1309
+ name = "unicode-ident"
1310
+ version = "1.0.22"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1313
+
1314
+ [[package]]
1315
+ name = "utf8parse"
1316
+ version = "0.2.2"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1319
+
1320
+ [[package]]
1321
+ name = "uuid"
1322
+ version = "1.19.0"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
1325
+ dependencies = [
1326
+ "js-sys",
1327
+ "wasm-bindgen",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "version_check"
1332
+ version = "0.9.5"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1335
+
1336
+ [[package]]
1337
+ name = "wait-timeout"
1338
+ version = "0.2.1"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1341
+ dependencies = [
1342
+ "libc",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "wasi"
1347
+ version = "0.11.1+wasi-snapshot-preview1"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1350
+
1351
+ [[package]]
1352
+ name = "wasip2"
1353
+ version = "1.0.1+wasi-0.2.4"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1356
+ dependencies = [
1357
+ "wit-bindgen",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "wasm-bindgen"
1362
+ version = "0.2.108"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1365
+ dependencies = [
1366
+ "cfg-if",
1367
+ "once_cell",
1368
+ "rustversion",
1369
+ "wasm-bindgen-macro",
1370
+ "wasm-bindgen-shared",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "wasm-bindgen-macro"
1375
+ version = "0.2.108"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1378
+ dependencies = [
1379
+ "quote",
1380
+ "wasm-bindgen-macro-support",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "wasm-bindgen-macro-support"
1385
+ version = "0.2.108"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1388
+ dependencies = [
1389
+ "bumpalo",
1390
+ "proc-macro2",
1391
+ "quote",
1392
+ "syn 2.0.111",
1393
+ "wasm-bindgen-shared",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "wasm-bindgen-shared"
1398
+ version = "0.2.108"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1401
+ dependencies = [
1402
+ "unicode-ident",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "windows-link"
1407
+ version = "0.2.1"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1410
+
1411
+ [[package]]
1412
+ name = "windows-sys"
1413
+ version = "0.61.2"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1416
+ dependencies = [
1417
+ "windows-link",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "winnow"
1422
+ version = "0.7.14"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
1425
+ dependencies = [
1426
+ "memchr",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "wit-bindgen"
1431
+ version = "0.46.0"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1434
+
1435
+ [[package]]
1436
+ name = "wyz"
1437
+ version = "0.5.1"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1440
+ dependencies = [
1441
+ "tap",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "zerocopy"
1446
+ version = "0.8.31"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
1449
+ dependencies = [
1450
+ "zerocopy-derive",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "zerocopy-derive"
1455
+ version = "0.8.31"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
1458
+ dependencies = [
1459
+ "proc-macro2",
1460
+ "quote",
1461
+ "syn 2.0.111",
1462
+ ]