cellrune 0.1.0__tar.gz

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 (184) hide show
  1. cellrune-0.1.0/Cargo.lock +1649 -0
  2. cellrune-0.1.0/Cargo.toml +24 -0
  3. cellrune-0.1.0/LICENSE +21 -0
  4. cellrune-0.1.0/PKG-INFO +319 -0
  5. cellrune-0.1.0/README.md +294 -0
  6. cellrune-0.1.0/THIRD_PARTY_LICENSES.md +2783 -0
  7. cellrune-0.1.0/bindings/common/Cargo.toml +15 -0
  8. cellrune-0.1.0/bindings/common/src/lib.rs +150 -0
  9. cellrune-0.1.0/bindings/python/Cargo.toml +29 -0
  10. cellrune-0.1.0/bindings/python/LICENSE +21 -0
  11. cellrune-0.1.0/bindings/python/THIRD_PARTY_LICENSES.md +2783 -0
  12. cellrune-0.1.0/bindings/python/build.rs +3 -0
  13. cellrune-0.1.0/bindings/python/requirements-dev.in +2 -0
  14. cellrune-0.1.0/bindings/python/requirements-dev.txt +246 -0
  15. cellrune-0.1.0/bindings/python/src/conversion.rs +286 -0
  16. cellrune-0.1.0/bindings/python/src/error.rs +35 -0
  17. cellrune-0.1.0/bindings/python/src/lib.rs +18 -0
  18. cellrune-0.1.0/bindings/python/src/workbook.rs +444 -0
  19. cellrune-0.1.0/bindings/python/tests/conformance.py +137 -0
  20. cellrune-0.1.0/bindings/python/tests/interactive.py +214 -0
  21. cellrune-0.1.0/bindings/python/tests/introspection.py +49 -0
  22. cellrune-0.1.0/bindings/python/tests/responsiveness.py +51 -0
  23. cellrune-0.1.0/bindings/python/tests/typing_check.py +51 -0
  24. cellrune-0.1.0/crates/cellrune/Cargo.toml +32 -0
  25. cellrune-0.1.0/crates/cellrune/LICENSE +21 -0
  26. cellrune-0.1.0/crates/cellrune/README.md +294 -0
  27. cellrune-0.1.0/crates/cellrune/THIRD_PARTY_LICENSES.md +70 -0
  28. cellrune-0.1.0/crates/cellrune/examples/capability_scan_only.rs +49 -0
  29. cellrune-0.1.0/crates/cellrune/examples/compare_saved_vs_calculated.rs +43 -0
  30. cellrune-0.1.0/crates/cellrune/examples/create_and_write.rs +38 -0
  31. cellrune-0.1.0/crates/cellrune/examples/dynamic_array_write.rs +34 -0
  32. cellrune-0.1.0/crates/cellrune/examples/handle_read_error.rs +25 -0
  33. cellrune-0.1.0/crates/cellrune/examples/inspect_phonetic_workbook.rs +51 -0
  34. cellrune-0.1.0/crates/cellrune/examples/read_and_calculate.rs +139 -0
  35. cellrune-0.1.0/crates/cellrune/examples/read_only_inspection.rs +46 -0
  36. cellrune-0.1.0/crates/cellrune/examples/recalculate_and_save.rs +34 -0
  37. cellrune-0.1.0/crates/cellrune/examples/support/mod.rs +165 -0
  38. cellrune-0.1.0/crates/cellrune/examples/write_phonetic_workbook.rs +58 -0
  39. cellrune-0.1.0/crates/cellrune/src/address.rs +223 -0
  40. cellrune-0.1.0/crates/cellrune/src/calculation/ast.rs +274 -0
  41. cellrune-0.1.0/crates/cellrune/src/calculation/coerce.rs +114 -0
  42. cellrune-0.1.0/crates/cellrune/src/calculation/convert.rs +51 -0
  43. cellrune-0.1.0/crates/cellrune/src/calculation/criteria.rs +269 -0
  44. cellrune-0.1.0/crates/cellrune/src/calculation/error.rs +27 -0
  45. cellrune-0.1.0/crates/cellrune/src/calculation/eval/dependency.rs +430 -0
  46. cellrune-0.1.0/crates/cellrune/src/calculation/eval/expression.rs +170 -0
  47. cellrune-0.1.0/crates/cellrune/src/calculation/eval/materialization.rs +310 -0
  48. cellrune-0.1.0/crates/cellrune/src/calculation/eval/name_graph.rs +152 -0
  49. cellrune-0.1.0/crates/cellrune/src/calculation/eval/orchestration.rs +297 -0
  50. cellrune-0.1.0/crates/cellrune/src/calculation/eval/reference.rs +286 -0
  51. cellrune-0.1.0/crates/cellrune/src/calculation/eval.rs +334 -0
  52. cellrune-0.1.0/crates/cellrune/src/calculation/functions/aggregate.rs +329 -0
  53. cellrune-0.1.0/crates/cellrune/src/calculation/functions/array.rs +171 -0
  54. cellrune-0.1.0/crates/cellrune/src/calculation/functions/calendar.rs +241 -0
  55. cellrune-0.1.0/crates/cellrune/src/calculation/functions/combinatorics.rs +250 -0
  56. cellrune-0.1.0/crates/cellrune/src/calculation/functions/date.rs +513 -0
  57. cellrune-0.1.0/crates/cellrune/src/calculation/functions/date_additional.rs +214 -0
  58. cellrune-0.1.0/crates/cellrune/src/calculation/functions/dynamic.rs +78 -0
  59. cellrune-0.1.0/crates/cellrune/src/calculation/functions/engineering.rs +367 -0
  60. cellrune-0.1.0/crates/cellrune/src/calculation/functions/financial.rs +478 -0
  61. cellrune-0.1.0/crates/cellrune/src/calculation/functions/financial_additional.rs +208 -0
  62. cellrune-0.1.0/crates/cellrune/src/calculation/functions/information.rs +143 -0
  63. cellrune-0.1.0/crates/cellrune/src/calculation/functions/legacy.rs +619 -0
  64. cellrune-0.1.0/crates/cellrune/src/calculation/functions/logical.rs +134 -0
  65. cellrune-0.1.0/crates/cellrune/src/calculation/functions/lookup.rs +560 -0
  66. cellrune-0.1.0/crates/cellrune/src/calculation/functions/math.rs +478 -0
  67. cellrune-0.1.0/crates/cellrune/src/calculation/functions/mod.rs +602 -0
  68. cellrune-0.1.0/crates/cellrune/src/calculation/functions/modern_array.rs +533 -0
  69. cellrune-0.1.0/crates/cellrune/src/calculation/functions/statistical.rs +454 -0
  70. cellrune-0.1.0/crates/cellrune/src/calculation/functions/statistical_additional.rs +316 -0
  71. cellrune-0.1.0/crates/cellrune/src/calculation/functions/sum_of_squares.rs +84 -0
  72. cellrune-0.1.0/crates/cellrune/src/calculation/functions/text.rs +441 -0
  73. cellrune-0.1.0/crates/cellrune/src/calculation/functions/text_additional.rs +463 -0
  74. cellrune-0.1.0/crates/cellrune/src/calculation/functions/trigonometry.rs +139 -0
  75. cellrune-0.1.0/crates/cellrune/src/calculation/functions/util.rs +116 -0
  76. cellrune-0.1.0/crates/cellrune/src/calculation/graph.rs +162 -0
  77. cellrune-0.1.0/crates/cellrune/src/calculation/identity.rs +316 -0
  78. cellrune-0.1.0/crates/cellrune/src/calculation/lambda.rs +98 -0
  79. cellrune-0.1.0/crates/cellrune/src/calculation/lexer.rs +329 -0
  80. cellrune-0.1.0/crates/cellrune/src/calculation/limits.rs +222 -0
  81. cellrune-0.1.0/crates/cellrune/src/calculation/mod.rs +648 -0
  82. cellrune-0.1.0/crates/cellrune/src/calculation/operators.rs +173 -0
  83. cellrune-0.1.0/crates/cellrune/src/calculation/parser.rs +538 -0
  84. cellrune-0.1.0/crates/cellrune/src/calculation/pipeline.rs +551 -0
  85. cellrune-0.1.0/crates/cellrune/src/calculation/runtime.rs +71 -0
  86. cellrune-0.1.0/crates/cellrune/src/calculation/session/delta.rs +205 -0
  87. cellrune-0.1.0/crates/cellrune/src/calculation/session/error.rs +133 -0
  88. cellrune-0.1.0/crates/cellrune/src/calculation/session/impact.rs +88 -0
  89. cellrune-0.1.0/crates/cellrune/src/calculation/session/limits.rs +108 -0
  90. cellrune-0.1.0/crates/cellrune/src/calculation/session/mod.rs +688 -0
  91. cellrune-0.1.0/crates/cellrune/src/calculation/textfmt.rs +200 -0
  92. cellrune-0.1.0/crates/cellrune/src/calculation/value.rs +147 -0
  93. cellrune-0.1.0/crates/cellrune/src/cell.rs +272 -0
  94. cellrune-0.1.0/crates/cellrune/src/defined_name.rs +84 -0
  95. cellrune-0.1.0/crates/cellrune/src/diagnostic.rs +323 -0
  96. cellrune-0.1.0/crates/cellrune/src/draft/batch/change.rs +232 -0
  97. cellrune-0.1.0/crates/cellrune/src/draft/batch/executor.rs +383 -0
  98. cellrune-0.1.0/crates/cellrune/src/draft/batch/formula_edit.rs +130 -0
  99. cellrune-0.1.0/crates/cellrune/src/draft/batch/receipt.rs +56 -0
  100. cellrune-0.1.0/crates/cellrune/src/draft/batch/staged.rs +38 -0
  101. cellrune-0.1.0/crates/cellrune/src/draft/batch.rs +8 -0
  102. cellrune-0.1.0/crates/cellrune/src/draft/formula_rewrite.rs +311 -0
  103. cellrune-0.1.0/crates/cellrune/src/draft/metadata.rs +84 -0
  104. cellrune-0.1.0/crates/cellrune/src/draft/presentation.rs +193 -0
  105. cellrune-0.1.0/crates/cellrune/src/draft/single_edit.rs +215 -0
  106. cellrune-0.1.0/crates/cellrune/src/draft.rs +121 -0
  107. cellrune-0.1.0/crates/cellrune/src/draft_tests.rs +216 -0
  108. cellrune-0.1.0/crates/cellrune/src/error.rs +819 -0
  109. cellrune-0.1.0/crates/cellrune/src/formula.rs +258 -0
  110. cellrune-0.1.0/crates/cellrune/src/lib.rs +117 -0
  111. cellrune-0.1.0/crates/cellrune/src/presentation/mod.rs +13 -0
  112. cellrune-0.1.0/crates/cellrune/src/presentation/phonetic.rs +343 -0
  113. cellrune-0.1.0/crates/cellrune/src/presentation/state.rs +467 -0
  114. cellrune-0.1.0/crates/cellrune/src/workbook.rs +593 -0
  115. cellrune-0.1.0/crates/cellrune/src/xlsx/document.rs +313 -0
  116. cellrune-0.1.0/crates/cellrune/src/xlsx/error.rs +391 -0
  117. cellrune-0.1.0/crates/cellrune/src/xlsx/mod.rs +25 -0
  118. cellrune-0.1.0/crates/cellrune/src/xlsx/options.rs +440 -0
  119. cellrune-0.1.0/crates/cellrune/src/xlsx/package/mod.rs +539 -0
  120. cellrune-0.1.0/crates/cellrune/src/xlsx/package/path.rs +167 -0
  121. cellrune-0.1.0/crates/cellrune/src/xlsx/package/relationship_type.rs +57 -0
  122. cellrune-0.1.0/crates/cellrune/src/xlsx/package/summary.rs +86 -0
  123. cellrune-0.1.0/crates/cellrune/src/xlsx/package/tests.rs +469 -0
  124. cellrune-0.1.0/crates/cellrune/src/xlsx/package/xml.rs +380 -0
  125. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/cell_value.rs +204 -0
  126. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/defined_name.rs +164 -0
  127. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/formula_cell.rs +373 -0
  128. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/formula_reference.rs +402 -0
  129. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/formula_tests.rs +391 -0
  130. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/metadata.rs +460 -0
  131. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/mod.rs +292 -0
  132. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/phonetic.rs +445 -0
  133. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/shared_strings.rs +349 -0
  134. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/styles.rs +335 -0
  135. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/tests.rs +562 -0
  136. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/workbook_xml.rs +342 -0
  137. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/worksheet.rs +706 -0
  138. cellrune-0.1.0/crates/cellrune/src/xlsx/reader/worksheet_cell.rs +510 -0
  139. cellrune-0.1.0/crates/cellrune/src/xlsx/write/authoring.rs +73 -0
  140. cellrune-0.1.0/crates/cellrune/src/xlsx/write/canonical.rs +783 -0
  141. cellrune-0.1.0/crates/cellrune/src/xlsx/write/canonical_tests.rs +878 -0
  142. cellrune-0.1.0/crates/cellrune/src/xlsx/write/document_authoring.rs +568 -0
  143. cellrune-0.1.0/crates/cellrune/src/xlsx/write/error.rs +177 -0
  144. cellrune-0.1.0/crates/cellrune/src/xlsx/write/materialization.rs +116 -0
  145. cellrune-0.1.0/crates/cellrune/src/xlsx/write/mod.rs +33 -0
  146. cellrune-0.1.0/crates/cellrune/src/xlsx/write/options.rs +585 -0
  147. cellrune-0.1.0/crates/cellrune/src/xlsx/write/package.rs +797 -0
  148. cellrune-0.1.0/crates/cellrune/src/xlsx/write/package_additions.rs +405 -0
  149. cellrune-0.1.0/crates/cellrune/src/xlsx/write/package_metadata_patch.rs +389 -0
  150. cellrune-0.1.0/crates/cellrune/src/xlsx/write/package_metadata_patch_tests.rs +94 -0
  151. cellrune-0.1.0/crates/cellrune/src/xlsx/write/path_output.rs +550 -0
  152. cellrune-0.1.0/crates/cellrune/src/xlsx/write/phonetic_preservation.rs +447 -0
  153. cellrune-0.1.0/crates/cellrune/src/xlsx/write/recalculation.rs +428 -0
  154. cellrune-0.1.0/crates/cellrune/src/xlsx/write/report.rs +215 -0
  155. cellrune-0.1.0/crates/cellrune/src/xlsx/write/serialization.rs +601 -0
  156. cellrune-0.1.0/crates/cellrune/src/xlsx/write/styles_patch.rs +569 -0
  157. cellrune-0.1.0/crates/cellrune/src/xlsx/write/workbook_edit.rs +590 -0
  158. cellrune-0.1.0/crates/cellrune/src/xlsx/write/workbook_patch.rs +318 -0
  159. cellrune-0.1.0/crates/cellrune/src/xlsx/write/workbook_patch_tests.rs +39 -0
  160. cellrune-0.1.0/crates/cellrune/src/xlsx/write/worksheet_edit.rs +770 -0
  161. cellrune-0.1.0/crates/cellrune/src/xlsx/write/worksheet_patch.rs +784 -0
  162. cellrune-0.1.0/crates/cellrune/src/xlsx/write/worksheet_patch_tests.rs +190 -0
  163. cellrune-0.1.0/crates/cellrune/src/xlsx/write/worksheet_view_edit.rs +587 -0
  164. cellrune-0.1.0/crates/cellrune/src/xlsx/xml.rs +242 -0
  165. cellrune-0.1.0/crates/cellrune-interop/Cargo.toml +25 -0
  166. cellrune-0.1.0/crates/cellrune-interop/README.md +294 -0
  167. cellrune-0.1.0/crates/cellrune-interop/src/convert.rs +354 -0
  168. cellrune-0.1.0/crates/cellrune-interop/src/dto.rs +549 -0
  169. cellrune-0.1.0/crates/cellrune-interop/src/error.rs +426 -0
  170. cellrune-0.1.0/crates/cellrune-interop/src/lib.rs +29 -0
  171. cellrune-0.1.0/crates/cellrune-interop/src/service/calculation.rs +235 -0
  172. cellrune-0.1.0/crates/cellrune-interop/src/service/edit.rs +423 -0
  173. cellrune-0.1.0/crates/cellrune-interop/src/service/query.rs +207 -0
  174. cellrune-0.1.0/crates/cellrune-interop/src/service/save.rs +107 -0
  175. cellrune-0.1.0/crates/cellrune-interop/src/service.rs +138 -0
  176. cellrune-0.1.0/crates/cellrune-interop/tests/conformance.rs +239 -0
  177. cellrune-0.1.0/crates/cellrune-interop/tests/interactive_contract.rs +249 -0
  178. cellrune-0.1.0/crates/cellrune-interop/tests/session_contract.rs +406 -0
  179. cellrune-0.1.0/pyproject.toml +45 -0
  180. cellrune-0.1.0/python/cellrune/__init__.py +85 -0
  181. cellrune-0.1.0/python/cellrune/__init__.pyi +87 -0
  182. cellrune-0.1.0/python/cellrune/_native.pyi +102 -0
  183. cellrune-0.1.0/python/cellrune/_types.py +304 -0
  184. cellrune-0.1.0/python/cellrune/py.typed +1 -0
@@ -0,0 +1,1649 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ambient-authority"
13
+ version = "0.0.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
16
+
17
+ [[package]]
18
+ name = "android_system_properties"
19
+ version = "0.1.5"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
22
+ dependencies = [
23
+ "libc",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys 0.61.2",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "async-trait"
78
+ version = "0.1.91"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
81
+ dependencies = [
82
+ "proc-macro2",
83
+ "quote",
84
+ "syn 3.0.3",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "atoi_simd"
89
+ version = "0.18.1"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "f3cdb3708a128e559a30fb830e8a77a5022ee6902806925c216658652b452a44"
92
+ dependencies = [
93
+ "debug_unsafe",
94
+ "rustversion",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "autocfg"
99
+ version = "1.5.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
102
+
103
+ [[package]]
104
+ name = "bitflags"
105
+ version = "2.13.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
108
+
109
+ [[package]]
110
+ name = "block-buffer"
111
+ version = "0.12.1"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
114
+ dependencies = [
115
+ "hybrid-array",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "bumpalo"
120
+ version = "3.20.3"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
123
+
124
+ [[package]]
125
+ name = "byteorder"
126
+ version = "1.5.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
129
+
130
+ [[package]]
131
+ name = "bytes"
132
+ version = "1.12.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
135
+
136
+ [[package]]
137
+ name = "calamine"
138
+ version = "0.36.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "6975084f43060e56343ffba7f9731fa52a7dcf2e1cd8e2459fd4c6bf4a1bff59"
141
+ dependencies = [
142
+ "atoi_simd",
143
+ "byteorder",
144
+ "codepage",
145
+ "encoding_rs",
146
+ "fast-float2",
147
+ "log",
148
+ "quick-xml",
149
+ "serde",
150
+ "zip",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "cap-primitives"
155
+ version = "4.0.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "cdadbd7c002d3a484b35243669abdae85a0ebaded5a61117169dc3400f9a7ff0"
158
+ dependencies = [
159
+ "ambient-authority",
160
+ "fs-set-times",
161
+ "io-extras",
162
+ "io-lifetimes 3.0.1",
163
+ "ipnet",
164
+ "maybe-owned",
165
+ "rustix",
166
+ "rustix-linux-procfs",
167
+ "windows-sys 0.61.2",
168
+ "winx",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "cap-std"
173
+ version = "4.0.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "7281235d6e96d3544ca18bba9049be92f4190f8d923e3caef1b5f66cfa752608"
176
+ dependencies = [
177
+ "cap-primitives",
178
+ "io-extras",
179
+ "io-lifetimes 3.0.1",
180
+ "rustix",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "cc"
185
+ version = "1.3.0"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
188
+ dependencies = [
189
+ "find-msvc-tools",
190
+ "shlex",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "cellrune"
195
+ version = "0.1.0"
196
+ dependencies = [
197
+ "cap-std",
198
+ "libm",
199
+ "quick-xml",
200
+ "sha2",
201
+ "zip",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "cellrune-binding-support"
206
+ version = "0.1.0"
207
+ dependencies = [
208
+ "cellrune-interop",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "cellrune-integration-tests"
213
+ version = "0.1.0"
214
+ dependencies = [
215
+ "calamine",
216
+ "cellrune",
217
+ "libm",
218
+ "serde",
219
+ "serde_json",
220
+ "sha2",
221
+ "zip",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "cellrune-interop"
226
+ version = "0.1.0"
227
+ dependencies = [
228
+ "cap-std",
229
+ "cellrune",
230
+ "schemars",
231
+ "serde",
232
+ "serde_json",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "cellrune-mcp"
237
+ version = "0.1.0"
238
+ dependencies = [
239
+ "cap-std",
240
+ "cellrune-interop",
241
+ "clap",
242
+ "rmcp",
243
+ "schemars",
244
+ "serde",
245
+ "serde_json",
246
+ "tokio",
247
+ "tokio-util",
248
+ "tracing",
249
+ "tracing-subscriber",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "cellrune-node"
254
+ version = "0.1.0"
255
+ dependencies = [
256
+ "cellrune-binding-support",
257
+ "cellrune-interop",
258
+ "napi",
259
+ "napi-build",
260
+ "napi-derive",
261
+ "serde_json",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "cellrune-python"
266
+ version = "0.1.0"
267
+ dependencies = [
268
+ "cellrune-binding-support",
269
+ "cellrune-interop",
270
+ "pyo3",
271
+ "pyo3-build-config",
272
+ "serde_json",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "cfg-if"
277
+ version = "1.0.4"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
280
+
281
+ [[package]]
282
+ name = "chrono"
283
+ version = "0.4.45"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
286
+ dependencies = [
287
+ "iana-time-zone",
288
+ "num-traits",
289
+ "serde",
290
+ "windows-link",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "clap"
295
+ version = "4.6.4"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
298
+ dependencies = [
299
+ "clap_builder",
300
+ "clap_derive",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "clap_builder"
305
+ version = "4.6.2"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
308
+ dependencies = [
309
+ "anstream",
310
+ "anstyle",
311
+ "clap_lex",
312
+ "strsim",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "clap_derive"
317
+ version = "4.6.4"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
320
+ dependencies = [
321
+ "heck",
322
+ "proc-macro2",
323
+ "quote",
324
+ "syn 3.0.3",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "clap_lex"
329
+ version = "1.1.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
332
+
333
+ [[package]]
334
+ name = "codepage"
335
+ version = "0.1.2"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
338
+ dependencies = [
339
+ "encoding_rs",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "colorchoice"
344
+ version = "1.0.5"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
347
+
348
+ [[package]]
349
+ name = "convert_case"
350
+ version = "0.11.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
353
+ dependencies = [
354
+ "unicode-segmentation",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "core-foundation-sys"
359
+ version = "0.8.7"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
362
+
363
+ [[package]]
364
+ name = "cpufeatures"
365
+ version = "0.3.0"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
368
+ dependencies = [
369
+ "libc",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "crc32fast"
374
+ version = "1.5.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
377
+ dependencies = [
378
+ "cfg-if",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "crypto-common"
383
+ version = "0.2.2"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
386
+ dependencies = [
387
+ "hybrid-array",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "ctor"
392
+ version = "1.0.10"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "e2e30e509674ef0ec91e21a7735766db37d163d46151b6a361d8b83dd79116bd"
395
+
396
+ [[package]]
397
+ name = "darling"
398
+ version = "0.23.0"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
401
+ dependencies = [
402
+ "darling_core",
403
+ "darling_macro",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "darling_core"
408
+ version = "0.23.0"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
411
+ dependencies = [
412
+ "ident_case",
413
+ "proc-macro2",
414
+ "quote",
415
+ "strsim",
416
+ "syn 2.0.119",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "darling_macro"
421
+ version = "0.23.0"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
424
+ dependencies = [
425
+ "darling_core",
426
+ "quote",
427
+ "syn 2.0.119",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "debug_unsafe"
432
+ version = "0.1.4"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
435
+
436
+ [[package]]
437
+ name = "digest"
438
+ version = "0.11.3"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
441
+ dependencies = [
442
+ "block-buffer",
443
+ "crypto-common",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "dyn-clone"
448
+ version = "1.0.20"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
451
+
452
+ [[package]]
453
+ name = "encoding_rs"
454
+ version = "0.8.35"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
457
+ dependencies = [
458
+ "cfg-if",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "equivalent"
463
+ version = "1.0.2"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
466
+
467
+ [[package]]
468
+ name = "errno"
469
+ version = "0.3.14"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
472
+ dependencies = [
473
+ "libc",
474
+ "windows-sys 0.61.2",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "fast-float2"
479
+ version = "0.2.3"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
482
+
483
+ [[package]]
484
+ name = "find-msvc-tools"
485
+ version = "0.1.9"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
488
+
489
+ [[package]]
490
+ name = "flate2"
491
+ version = "1.1.9"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
494
+ dependencies = [
495
+ "miniz_oxide",
496
+ "zlib-rs",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "fs-set-times"
501
+ version = "0.20.3"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
504
+ dependencies = [
505
+ "io-lifetimes 2.0.4",
506
+ "rustix",
507
+ "windows-sys 0.59.0",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "futures"
512
+ version = "0.3.33"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
515
+ dependencies = [
516
+ "futures-channel",
517
+ "futures-core",
518
+ "futures-executor",
519
+ "futures-io",
520
+ "futures-sink",
521
+ "futures-task",
522
+ "futures-util",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "futures-channel"
527
+ version = "0.3.33"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
530
+ dependencies = [
531
+ "futures-core",
532
+ "futures-sink",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "futures-core"
537
+ version = "0.3.33"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
540
+
541
+ [[package]]
542
+ name = "futures-executor"
543
+ version = "0.3.33"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
546
+ dependencies = [
547
+ "futures-core",
548
+ "futures-task",
549
+ "futures-util",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "futures-io"
554
+ version = "0.3.33"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
557
+
558
+ [[package]]
559
+ name = "futures-macro"
560
+ version = "0.3.33"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
563
+ dependencies = [
564
+ "proc-macro2",
565
+ "quote",
566
+ "syn 2.0.119",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "futures-sink"
571
+ version = "0.3.33"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
574
+
575
+ [[package]]
576
+ name = "futures-task"
577
+ version = "0.3.33"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
580
+
581
+ [[package]]
582
+ name = "futures-util"
583
+ version = "0.3.33"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
586
+ dependencies = [
587
+ "futures-channel",
588
+ "futures-core",
589
+ "futures-io",
590
+ "futures-macro",
591
+ "futures-sink",
592
+ "futures-task",
593
+ "memchr",
594
+ "pin-project-lite",
595
+ "slab",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "hashbrown"
600
+ version = "0.17.1"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
603
+
604
+ [[package]]
605
+ name = "heck"
606
+ version = "0.5.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
609
+
610
+ [[package]]
611
+ name = "hybrid-array"
612
+ version = "0.4.13"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
615
+ dependencies = [
616
+ "typenum",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "iana-time-zone"
621
+ version = "0.1.65"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
624
+ dependencies = [
625
+ "android_system_properties",
626
+ "core-foundation-sys",
627
+ "iana-time-zone-haiku",
628
+ "js-sys",
629
+ "log",
630
+ "wasm-bindgen",
631
+ "windows-core",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "iana-time-zone-haiku"
636
+ version = "0.1.2"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
639
+ dependencies = [
640
+ "cc",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "ident_case"
645
+ version = "1.0.1"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
648
+
649
+ [[package]]
650
+ name = "indexmap"
651
+ version = "2.14.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
654
+ dependencies = [
655
+ "equivalent",
656
+ "hashbrown",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "io-extras"
661
+ version = "0.19.0"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "20fd6de4ccfcc187e38bc21cfa543cb5a302cb86a8b114eb7f0bf0dc9f8ac00f"
664
+ dependencies = [
665
+ "io-lifetimes 3.0.1",
666
+ "windows-sys 0.60.2",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "io-lifetimes"
671
+ version = "2.0.4"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
674
+
675
+ [[package]]
676
+ name = "io-lifetimes"
677
+ version = "3.0.1"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "2f0fb0570afe1fed943c5c3d4102d5358592d8625fda6a0007fdbe65a92fba96"
680
+
681
+ [[package]]
682
+ name = "ipnet"
683
+ version = "2.12.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
686
+
687
+ [[package]]
688
+ name = "is_terminal_polyfill"
689
+ version = "1.70.2"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
692
+
693
+ [[package]]
694
+ name = "itoa"
695
+ version = "1.0.18"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
698
+
699
+ [[package]]
700
+ name = "js-sys"
701
+ version = "0.3.103"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
704
+ dependencies = [
705
+ "cfg-if",
706
+ "futures-util",
707
+ "wasm-bindgen",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "lazy_static"
712
+ version = "1.5.0"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
715
+
716
+ [[package]]
717
+ name = "libc"
718
+ version = "0.2.189"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
721
+
722
+ [[package]]
723
+ name = "libloading"
724
+ version = "0.9.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
727
+ dependencies = [
728
+ "cfg-if",
729
+ "windows-link",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "libm"
734
+ version = "0.2.16"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
737
+
738
+ [[package]]
739
+ name = "linux-raw-sys"
740
+ version = "0.12.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
743
+
744
+ [[package]]
745
+ name = "log"
746
+ version = "0.4.33"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
749
+
750
+ [[package]]
751
+ name = "maybe-owned"
752
+ version = "0.3.4"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
755
+
756
+ [[package]]
757
+ name = "memchr"
758
+ version = "2.8.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
761
+
762
+ [[package]]
763
+ name = "miniz_oxide"
764
+ version = "0.8.9"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
767
+ dependencies = [
768
+ "adler2",
769
+ "simd-adler32",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "napi"
774
+ version = "3.11.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "de33522036981030a75c231829566bc63414e08101a6f5ff4ac6cef19c8e0941"
777
+ dependencies = [
778
+ "bitflags",
779
+ "ctor",
780
+ "futures",
781
+ "napi-build",
782
+ "napi-sys",
783
+ "nohash-hasher",
784
+ "rustc-hash",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "napi-build"
789
+ version = "2.3.2"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
792
+
793
+ [[package]]
794
+ name = "napi-derive"
795
+ version = "3.6.0"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "a49c513341a61a16a10af6efcce46b30d0822ba2d4fb197d24d33dfc199c78d5"
798
+ dependencies = [
799
+ "convert_case",
800
+ "ctor",
801
+ "napi-derive-backend",
802
+ "proc-macro2",
803
+ "quote",
804
+ "syn 2.0.119",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "napi-derive-backend"
809
+ version = "6.0.0"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "4747005fa3e2c9989ac45a723a514c5db2411238b72981a3cda4c701a9dfea17"
812
+ dependencies = [
813
+ "convert_case",
814
+ "proc-macro2",
815
+ "quote",
816
+ "semver",
817
+ "syn 2.0.119",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "napi-sys"
822
+ version = "3.3.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
825
+ dependencies = [
826
+ "libloading",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "nohash-hasher"
831
+ version = "0.2.0"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
834
+
835
+ [[package]]
836
+ name = "num-traits"
837
+ version = "0.2.19"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
840
+ dependencies = [
841
+ "autocfg",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "once_cell"
846
+ version = "1.21.4"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
849
+
850
+ [[package]]
851
+ name = "once_cell_polyfill"
852
+ version = "1.70.2"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
855
+
856
+ [[package]]
857
+ name = "pastey"
858
+ version = "0.2.3"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
861
+
862
+ [[package]]
863
+ name = "pin-project-lite"
864
+ version = "0.2.17"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
867
+
868
+ [[package]]
869
+ name = "portable-atomic"
870
+ version = "1.14.0"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
873
+
874
+ [[package]]
875
+ name = "proc-macro2"
876
+ version = "1.0.107"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
879
+ dependencies = [
880
+ "unicode-ident",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "pyo3"
885
+ version = "0.29.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
888
+ dependencies = [
889
+ "libc",
890
+ "once_cell",
891
+ "portable-atomic",
892
+ "pyo3-build-config",
893
+ "pyo3-ffi",
894
+ "pyo3-macros",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "pyo3-build-config"
899
+ version = "0.29.0"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
902
+ dependencies = [
903
+ "target-lexicon",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "pyo3-ffi"
908
+ version = "0.29.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
911
+ dependencies = [
912
+ "libc",
913
+ "pyo3-build-config",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "pyo3-macros"
918
+ version = "0.29.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
921
+ dependencies = [
922
+ "proc-macro2",
923
+ "pyo3-macros-backend",
924
+ "quote",
925
+ "syn 2.0.119",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "pyo3-macros-backend"
930
+ version = "0.29.0"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
933
+ dependencies = [
934
+ "heck",
935
+ "proc-macro2",
936
+ "quote",
937
+ "syn 2.0.119",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "quick-xml"
942
+ version = "0.41.0"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
945
+ dependencies = [
946
+ "encoding_rs",
947
+ "memchr",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "quote"
952
+ version = "1.0.47"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
955
+ dependencies = [
956
+ "proc-macro2",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "ref-cast"
961
+ version = "1.0.26"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
964
+ dependencies = [
965
+ "ref-cast-impl",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "ref-cast-impl"
970
+ version = "1.0.26"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
973
+ dependencies = [
974
+ "proc-macro2",
975
+ "quote",
976
+ "syn 3.0.3",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "rmcp"
981
+ version = "2.2.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "14db48ee17a9ba61810ab1a9c1beb7d06d8136ae39ac25a1137f10d357af01af"
984
+ dependencies = [
985
+ "async-trait",
986
+ "chrono",
987
+ "futures",
988
+ "pastey",
989
+ "pin-project-lite",
990
+ "rmcp-macros",
991
+ "schemars",
992
+ "serde",
993
+ "serde_json",
994
+ "thiserror",
995
+ "tokio",
996
+ "tokio-util",
997
+ "tracing",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "rmcp-macros"
1002
+ version = "2.2.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "783d787bf21813b285f13019adc49e11af501c658890c1e519f31f937c68b7e3"
1005
+ dependencies = [
1006
+ "darling",
1007
+ "proc-macro2",
1008
+ "quote",
1009
+ "serde_json",
1010
+ "syn 2.0.119",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "rustc-hash"
1015
+ version = "2.1.3"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1018
+
1019
+ [[package]]
1020
+ name = "rustix"
1021
+ version = "1.1.4"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1024
+ dependencies = [
1025
+ "bitflags",
1026
+ "errno",
1027
+ "libc",
1028
+ "linux-raw-sys",
1029
+ "windows-sys 0.61.2",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "rustix-linux-procfs"
1034
+ version = "0.1.1"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
1037
+ dependencies = [
1038
+ "once_cell",
1039
+ "rustix",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "rustversion"
1044
+ version = "1.0.23"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1047
+
1048
+ [[package]]
1049
+ name = "schemars"
1050
+ version = "1.2.1"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1053
+ dependencies = [
1054
+ "chrono",
1055
+ "dyn-clone",
1056
+ "ref-cast",
1057
+ "schemars_derive",
1058
+ "serde",
1059
+ "serde_json",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "schemars_derive"
1064
+ version = "1.2.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
1067
+ dependencies = [
1068
+ "proc-macro2",
1069
+ "quote",
1070
+ "serde_derive_internals",
1071
+ "syn 2.0.119",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "semver"
1076
+ version = "1.0.28"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1079
+
1080
+ [[package]]
1081
+ name = "serde"
1082
+ version = "1.0.229"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1085
+ dependencies = [
1086
+ "serde_core",
1087
+ "serde_derive",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "serde_core"
1092
+ version = "1.0.229"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1095
+ dependencies = [
1096
+ "serde_derive",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "serde_derive"
1101
+ version = "1.0.229"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1104
+ dependencies = [
1105
+ "proc-macro2",
1106
+ "quote",
1107
+ "syn 3.0.3",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "serde_derive_internals"
1112
+ version = "0.29.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1115
+ dependencies = [
1116
+ "proc-macro2",
1117
+ "quote",
1118
+ "syn 2.0.119",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "serde_json"
1123
+ version = "1.0.151"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1126
+ dependencies = [
1127
+ "itoa",
1128
+ "memchr",
1129
+ "serde",
1130
+ "serde_core",
1131
+ "zmij",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "sha2"
1136
+ version = "0.11.0"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1139
+ dependencies = [
1140
+ "cfg-if",
1141
+ "cpufeatures",
1142
+ "digest",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "sharded-slab"
1147
+ version = "0.1.7"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1150
+ dependencies = [
1151
+ "lazy_static",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "shlex"
1156
+ version = "2.0.1"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1159
+
1160
+ [[package]]
1161
+ name = "simd-adler32"
1162
+ version = "0.3.10"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1165
+
1166
+ [[package]]
1167
+ name = "slab"
1168
+ version = "0.4.12"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1171
+
1172
+ [[package]]
1173
+ name = "strsim"
1174
+ version = "0.11.1"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1177
+
1178
+ [[package]]
1179
+ name = "syn"
1180
+ version = "2.0.119"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1183
+ dependencies = [
1184
+ "proc-macro2",
1185
+ "quote",
1186
+ "unicode-ident",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "syn"
1191
+ version = "3.0.3"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1194
+ dependencies = [
1195
+ "proc-macro2",
1196
+ "quote",
1197
+ "unicode-ident",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "target-lexicon"
1202
+ version = "0.13.5"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1205
+
1206
+ [[package]]
1207
+ name = "thiserror"
1208
+ version = "2.0.19"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1211
+ dependencies = [
1212
+ "thiserror-impl",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "thiserror-impl"
1217
+ version = "2.0.19"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1220
+ dependencies = [
1221
+ "proc-macro2",
1222
+ "quote",
1223
+ "syn 3.0.3",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "thread_local"
1228
+ version = "1.1.10"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1231
+ dependencies = [
1232
+ "cfg-if",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "tokio"
1237
+ version = "1.53.1"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1240
+ dependencies = [
1241
+ "bytes",
1242
+ "pin-project-lite",
1243
+ "tokio-macros",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "tokio-macros"
1248
+ version = "2.7.1"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
1251
+ dependencies = [
1252
+ "proc-macro2",
1253
+ "quote",
1254
+ "syn 2.0.119",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "tokio-util"
1259
+ version = "0.7.19"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
1262
+ dependencies = [
1263
+ "bytes",
1264
+ "futures-core",
1265
+ "futures-sink",
1266
+ "libc",
1267
+ "pin-project-lite",
1268
+ "tokio",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "tracing"
1273
+ version = "0.1.44"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1276
+ dependencies = [
1277
+ "pin-project-lite",
1278
+ "tracing-attributes",
1279
+ "tracing-core",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "tracing-attributes"
1284
+ version = "0.1.31"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1287
+ dependencies = [
1288
+ "proc-macro2",
1289
+ "quote",
1290
+ "syn 2.0.119",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "tracing-core"
1295
+ version = "0.1.36"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1298
+ dependencies = [
1299
+ "once_cell",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "tracing-subscriber"
1304
+ version = "0.3.23"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1307
+ dependencies = [
1308
+ "sharded-slab",
1309
+ "thread_local",
1310
+ "tracing-core",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "typed-path"
1315
+ version = "0.12.3"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
1318
+
1319
+ [[package]]
1320
+ name = "typenum"
1321
+ version = "1.20.1"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1324
+
1325
+ [[package]]
1326
+ name = "unicode-ident"
1327
+ version = "1.0.24"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1330
+
1331
+ [[package]]
1332
+ name = "unicode-segmentation"
1333
+ version = "1.13.3"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1336
+
1337
+ [[package]]
1338
+ name = "utf8parse"
1339
+ version = "0.2.2"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1342
+
1343
+ [[package]]
1344
+ name = "wasm-bindgen"
1345
+ version = "0.2.126"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1348
+ dependencies = [
1349
+ "cfg-if",
1350
+ "once_cell",
1351
+ "rustversion",
1352
+ "wasm-bindgen-macro",
1353
+ "wasm-bindgen-shared",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "wasm-bindgen-macro"
1358
+ version = "0.2.126"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1361
+ dependencies = [
1362
+ "quote",
1363
+ "wasm-bindgen-macro-support",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "wasm-bindgen-macro-support"
1368
+ version = "0.2.126"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1371
+ dependencies = [
1372
+ "bumpalo",
1373
+ "proc-macro2",
1374
+ "quote",
1375
+ "syn 2.0.119",
1376
+ "wasm-bindgen-shared",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "wasm-bindgen-shared"
1381
+ version = "0.2.126"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1384
+ dependencies = [
1385
+ "unicode-ident",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "windows-core"
1390
+ version = "0.62.2"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1393
+ dependencies = [
1394
+ "windows-implement",
1395
+ "windows-interface",
1396
+ "windows-link",
1397
+ "windows-result",
1398
+ "windows-strings",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "windows-implement"
1403
+ version = "0.60.2"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1406
+ dependencies = [
1407
+ "proc-macro2",
1408
+ "quote",
1409
+ "syn 2.0.119",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "windows-interface"
1414
+ version = "0.59.3"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1417
+ dependencies = [
1418
+ "proc-macro2",
1419
+ "quote",
1420
+ "syn 2.0.119",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "windows-link"
1425
+ version = "0.2.1"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1428
+
1429
+ [[package]]
1430
+ name = "windows-result"
1431
+ version = "0.4.1"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1434
+ dependencies = [
1435
+ "windows-link",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "windows-strings"
1440
+ version = "0.5.1"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1443
+ dependencies = [
1444
+ "windows-link",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "windows-sys"
1449
+ version = "0.59.0"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1452
+ dependencies = [
1453
+ "windows-targets 0.52.6",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "windows-sys"
1458
+ version = "0.60.2"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1461
+ dependencies = [
1462
+ "windows-targets 0.53.5",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "windows-sys"
1467
+ version = "0.61.2"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1470
+ dependencies = [
1471
+ "windows-link",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "windows-targets"
1476
+ version = "0.52.6"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1479
+ dependencies = [
1480
+ "windows_aarch64_gnullvm 0.52.6",
1481
+ "windows_aarch64_msvc 0.52.6",
1482
+ "windows_i686_gnu 0.52.6",
1483
+ "windows_i686_gnullvm 0.52.6",
1484
+ "windows_i686_msvc 0.52.6",
1485
+ "windows_x86_64_gnu 0.52.6",
1486
+ "windows_x86_64_gnullvm 0.52.6",
1487
+ "windows_x86_64_msvc 0.52.6",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "windows-targets"
1492
+ version = "0.53.5"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1495
+ dependencies = [
1496
+ "windows-link",
1497
+ "windows_aarch64_gnullvm 0.53.1",
1498
+ "windows_aarch64_msvc 0.53.1",
1499
+ "windows_i686_gnu 0.53.1",
1500
+ "windows_i686_gnullvm 0.53.1",
1501
+ "windows_i686_msvc 0.53.1",
1502
+ "windows_x86_64_gnu 0.53.1",
1503
+ "windows_x86_64_gnullvm 0.53.1",
1504
+ "windows_x86_64_msvc 0.53.1",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "windows_aarch64_gnullvm"
1509
+ version = "0.52.6"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1512
+
1513
+ [[package]]
1514
+ name = "windows_aarch64_gnullvm"
1515
+ version = "0.53.1"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1518
+
1519
+ [[package]]
1520
+ name = "windows_aarch64_msvc"
1521
+ version = "0.52.6"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1524
+
1525
+ [[package]]
1526
+ name = "windows_aarch64_msvc"
1527
+ version = "0.53.1"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1530
+
1531
+ [[package]]
1532
+ name = "windows_i686_gnu"
1533
+ version = "0.52.6"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1536
+
1537
+ [[package]]
1538
+ name = "windows_i686_gnu"
1539
+ version = "0.53.1"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1542
+
1543
+ [[package]]
1544
+ name = "windows_i686_gnullvm"
1545
+ version = "0.52.6"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1548
+
1549
+ [[package]]
1550
+ name = "windows_i686_gnullvm"
1551
+ version = "0.53.1"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1554
+
1555
+ [[package]]
1556
+ name = "windows_i686_msvc"
1557
+ version = "0.52.6"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1560
+
1561
+ [[package]]
1562
+ name = "windows_i686_msvc"
1563
+ version = "0.53.1"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1566
+
1567
+ [[package]]
1568
+ name = "windows_x86_64_gnu"
1569
+ version = "0.52.6"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1572
+
1573
+ [[package]]
1574
+ name = "windows_x86_64_gnu"
1575
+ version = "0.53.1"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1578
+
1579
+ [[package]]
1580
+ name = "windows_x86_64_gnullvm"
1581
+ version = "0.52.6"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1584
+
1585
+ [[package]]
1586
+ name = "windows_x86_64_gnullvm"
1587
+ version = "0.53.1"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1590
+
1591
+ [[package]]
1592
+ name = "windows_x86_64_msvc"
1593
+ version = "0.52.6"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1596
+
1597
+ [[package]]
1598
+ name = "windows_x86_64_msvc"
1599
+ version = "0.53.1"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1602
+
1603
+ [[package]]
1604
+ name = "winx"
1605
+ version = "0.36.4"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
1608
+ dependencies = [
1609
+ "bitflags",
1610
+ "windows-sys 0.59.0",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "zip"
1615
+ version = "8.6.0"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
1618
+ dependencies = [
1619
+ "crc32fast",
1620
+ "flate2",
1621
+ "indexmap",
1622
+ "memchr",
1623
+ "typed-path",
1624
+ "zopfli",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "zlib-rs"
1629
+ version = "0.6.6"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
1632
+
1633
+ [[package]]
1634
+ name = "zmij"
1635
+ version = "1.0.23"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
1638
+
1639
+ [[package]]
1640
+ name = "zopfli"
1641
+ version = "0.8.3"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
1644
+ dependencies = [
1645
+ "bumpalo",
1646
+ "crc32fast",
1647
+ "log",
1648
+ "simd-adler32",
1649
+ ]