furl-ctx 0.27.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 (149) hide show
  1. furl_ctx-0.27.0/Cargo.lock +1464 -0
  2. furl_ctx-0.27.0/Cargo.toml +93 -0
  3. furl_ctx-0.27.0/LICENSE +190 -0
  4. furl_ctx-0.27.0/NOTICE +61 -0
  5. furl_ctx-0.27.0/PKG-INFO +121 -0
  6. furl_ctx-0.27.0/README.md +75 -0
  7. furl_ctx-0.27.0/crates/furl-core/Cargo.toml +78 -0
  8. furl_ctx-0.27.0/crates/furl-core/benches/ccr_store.rs +228 -0
  9. furl_ctx-0.27.0/crates/furl-core/benches/tokenizer.rs +52 -0
  10. furl_ctx-0.27.0/crates/furl-core/examples/byte_pin.rs +325 -0
  11. furl_ctx-0.27.0/crates/furl-core/proptest-regressions/transforms/tag_protector.txt +9 -0
  12. furl_ctx-0.27.0/crates/furl-core/src/ccr/backends/in_memory.rs +643 -0
  13. furl_ctx-0.27.0/crates/furl-core/src/ccr/backends/mod.rs +13 -0
  14. furl_ctx-0.27.0/crates/furl-core/src/ccr/markers.rs +213 -0
  15. furl_ctx-0.27.0/crates/furl-core/src/ccr/mod.rs +84 -0
  16. furl_ctx-0.27.0/crates/furl-core/src/ccr/persist.rs +226 -0
  17. furl_ctx-0.27.0/crates/furl-core/src/lib.rs +24 -0
  18. furl_ctx-0.27.0/crates/furl-core/src/relevance/base.rs +113 -0
  19. furl_ctx-0.27.0/crates/furl-core/src/relevance/bm25.rs +385 -0
  20. furl_ctx-0.27.0/crates/furl-core/src/relevance/hybrid.rs +139 -0
  21. furl_ctx-0.27.0/crates/furl-core/src/relevance/mod.rs +28 -0
  22. furl_ctx-0.27.0/crates/furl-core/src/signals/README.md +58 -0
  23. furl_ctx-0.27.0/crates/furl-core/src/signals/keyword_detector.rs +433 -0
  24. furl_ctx-0.27.0/crates/furl-core/src/signals/line_importance.rs +84 -0
  25. furl_ctx-0.27.0/crates/furl-core/src/signals/mod.rs +60 -0
  26. furl_ctx-0.27.0/crates/furl-core/src/tokenizer/estimator.rs +159 -0
  27. furl_ctx-0.27.0/crates/furl-core/src/tokenizer/mod.rs +46 -0
  28. furl_ctx-0.27.0/crates/furl-core/src/tokenizer/registry.rs +167 -0
  29. furl_ctx-0.27.0/crates/furl-core/src/tokenizer/tiktoken_impl.rs +284 -0
  30. furl_ctx-0.27.0/crates/furl-core/src/transforms/adaptive_sizer.rs +669 -0
  31. furl_ctx-0.27.0/crates/furl-core/src/transforms/anchor_selector.rs +1076 -0
  32. furl_ctx-0.27.0/crates/furl-core/src/transforms/detection.rs +191 -0
  33. furl_ctx-0.27.0/crates/furl-core/src/transforms/diff_compressor.rs +2077 -0
  34. furl_ctx-0.27.0/crates/furl-core/src/transforms/log_compressor.rs +1785 -0
  35. furl_ctx-0.27.0/crates/furl-core/src/transforms/mod.rs +43 -0
  36. furl_ctx-0.27.0/crates/furl-core/src/transforms/search_compressor.rs +1248 -0
  37. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/analyzer.rs +1369 -0
  38. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/anchors.rs +435 -0
  39. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/builder.rs +327 -0
  40. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/classifier.rs +214 -0
  41. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/classifier.rs +291 -0
  42. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/compactor.rs +1805 -0
  43. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/encodings.rs +779 -0
  44. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/formatter.rs +2069 -0
  45. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/ir.rs +634 -0
  46. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/mod.rs +169 -0
  47. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/compaction/walker.rs +602 -0
  48. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/config.rs +271 -0
  49. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/constraints.rs +159 -0
  50. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/crusher.rs +401 -0
  51. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/crushers.rs +864 -0
  52. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/error_keywords.rs +76 -0
  53. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/field_detect.rs +482 -0
  54. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/field_role.rs +380 -0
  55. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/hashing.rs +79 -0
  56. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/mod.rs +87 -0
  57. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/observer.rs +63 -0
  58. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/orchestration.rs +1071 -0
  59. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/outliers.rs +506 -0
  60. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/persist.rs +927 -0
  61. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/planning.rs +1137 -0
  62. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/route.rs +2838 -0
  63. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/statistics.rs +510 -0
  64. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/stats_math.rs +287 -0
  65. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/traits.rs +192 -0
  66. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/types.rs +656 -0
  67. furl_ctx-0.27.0/crates/furl-core/src/transforms/smart_crusher/walk.rs +1705 -0
  68. furl_ctx-0.27.0/crates/furl-core/src/transforms/tag_protector.rs +1512 -0
  69. furl_ctx-0.27.0/crates/furl-core/src/transforms/text_crusher.rs +1782 -0
  70. furl_ctx-0.27.0/crates/furl-core/src/transforms/unidiff_detector.rs +276 -0
  71. furl_ctx-0.27.0/crates/furl-core/src/util/mod.rs +3 -0
  72. furl_ctx-0.27.0/crates/furl-core/src/util/pyjson.rs +389 -0
  73. furl_ctx-0.27.0/crates/furl-core/tests/ccr_roundtrip.rs +631 -0
  74. furl_ctx-0.27.0/crates/furl-core/tests/tokenizer_proptest.rs +82 -0
  75. furl_ctx-0.27.0/crates/furl-core/tests/tokenizer_python_parity.rs +92 -0
  76. furl_ctx-0.27.0/crates/furl-core/tests/typed_dropped_refs.rs +477 -0
  77. furl_ctx-0.27.0/crates/furl-py/Cargo.toml +36 -0
  78. furl_ctx-0.27.0/crates/furl-py/build.rs +83 -0
  79. furl_ctx-0.27.0/crates/furl-py/glibc_compat.c +170 -0
  80. furl_ctx-0.27.0/crates/furl-py/src/lib.rs +2115 -0
  81. furl_ctx-0.27.0/furl_ctx/__init__.py +166 -0
  82. furl_ctx-0.27.0/furl_ctx/_version.py +43 -0
  83. furl_ctx-0.27.0/furl_ctx/cache/__init__.py +48 -0
  84. furl_ctx-0.27.0/furl_ctx/cache/backends/__init__.py +35 -0
  85. furl_ctx-0.27.0/furl_ctx/cache/backends/base.py +122 -0
  86. furl_ctx-0.27.0/furl_ctx/cache/backends/memory.py +148 -0
  87. furl_ctx-0.27.0/furl_ctx/cache/backends/sqlite.py +626 -0
  88. furl_ctx-0.27.0/furl_ctx/cache/base.py +79 -0
  89. furl_ctx-0.27.0/furl_ctx/cache/compression_store.py +1665 -0
  90. furl_ctx-0.27.0/furl_ctx/cache/retrieval_feedback.py +401 -0
  91. furl_ctx-0.27.0/furl_ctx/ccr/__init__.py +40 -0
  92. furl_ctx-0.27.0/furl_ctx/ccr/compress_modes.py +363 -0
  93. furl_ctx-0.27.0/furl_ctx/ccr/marker_grammar.py +172 -0
  94. furl_ctx-0.27.0/furl_ctx/ccr/mcp_server.py +1709 -0
  95. furl_ctx-0.27.0/furl_ctx/ccr/retrieve_filters.py +386 -0
  96. furl_ctx-0.27.0/furl_ctx/compress.py +764 -0
  97. furl_ctx-0.27.0/furl_ctx/config.py +384 -0
  98. furl_ctx-0.27.0/furl_ctx/exceptions.py +43 -0
  99. furl_ctx-0.27.0/furl_ctx/hooks.py +166 -0
  100. furl_ctx-0.27.0/furl_ctx/parser.py +505 -0
  101. furl_ctx-0.27.0/furl_ctx/paths.py +107 -0
  102. furl_ctx-0.27.0/furl_ctx/pipeline.py +131 -0
  103. furl_ctx-0.27.0/furl_ctx/py.typed +0 -0
  104. furl_ctx-0.27.0/furl_ctx/relevance/__init__.py +43 -0
  105. furl_ctx-0.27.0/furl_ctx/relevance/base.py +90 -0
  106. furl_ctx-0.27.0/furl_ctx/relevance/bm25.py +284 -0
  107. furl_ctx-0.27.0/furl_ctx/tokenizer.py +80 -0
  108. furl_ctx-0.27.0/furl_ctx/tokenizers/__init__.py +44 -0
  109. furl_ctx-0.27.0/furl_ctx/tokenizers/base.py +337 -0
  110. furl_ctx-0.27.0/furl_ctx/tokenizers/estimator.py +249 -0
  111. furl_ctx-0.27.0/furl_ctx/tokenizers/registry.py +321 -0
  112. furl_ctx-0.27.0/furl_ctx/tokenizers/tiktoken_counter.py +366 -0
  113. furl_ctx-0.27.0/furl_ctx/tools.json +103 -0
  114. furl_ctx-0.27.0/furl_ctx/transforms/__init__.py +150 -0
  115. furl_ctx-0.27.0/furl_ctx/transforms/_ccr_persist.py +77 -0
  116. furl_ctx-0.27.0/furl_ctx/transforms/base.py +114 -0
  117. furl_ctx-0.27.0/furl_ctx/transforms/cache_aligner.py +406 -0
  118. furl_ctx-0.27.0/furl_ctx/transforms/code_aware_compressor.py +1592 -0
  119. furl_ctx-0.27.0/furl_ctx/transforms/compressor_registry.py +151 -0
  120. furl_ctx-0.27.0/furl_ctx/transforms/content_detector.py +404 -0
  121. furl_ctx-0.27.0/furl_ctx/transforms/content_router.py +1262 -0
  122. furl_ctx-0.27.0/furl_ctx/transforms/cross_message_dedup.py +640 -0
  123. furl_ctx-0.27.0/furl_ctx/transforms/csv_ingest.py +241 -0
  124. furl_ctx-0.27.0/furl_ctx/transforms/csv_schema_decoder.py +726 -0
  125. furl_ctx-0.27.0/furl_ctx/transforms/diff_compressor.py +207 -0
  126. furl_ctx-0.27.0/furl_ctx/transforms/error_detection.py +190 -0
  127. furl_ctx-0.27.0/furl_ctx/transforms/log_compressor.py +264 -0
  128. furl_ctx-0.27.0/furl_ctx/transforms/log_template.py +356 -0
  129. furl_ctx-0.27.0/furl_ctx/transforms/log_template_decoder.py +299 -0
  130. furl_ctx-0.27.0/furl_ctx/transforms/log_template_format.py +122 -0
  131. furl_ctx-0.27.0/furl_ctx/transforms/log_template_miner.py +310 -0
  132. furl_ctx-0.27.0/furl_ctx/transforms/net_mutation_gain.py +66 -0
  133. furl_ctx-0.27.0/furl_ctx/transforms/pipeline.py +439 -0
  134. furl_ctx-0.27.0/furl_ctx/transforms/read_lifecycle.py +487 -0
  135. furl_ctx-0.27.0/furl_ctx/transforms/router_blocks.py +589 -0
  136. furl_ctx-0.27.0/furl_ctx/transforms/router_cache.py +299 -0
  137. furl_ctx-0.27.0/furl_ctx/transforms/router_ccr_mirror.py +159 -0
  138. furl_ctx-0.27.0/furl_ctx/transforms/router_debug.py +95 -0
  139. furl_ctx-0.27.0/furl_ctx/transforms/router_dispatch.py +447 -0
  140. furl_ctx-0.27.0/furl_ctx/transforms/router_engine.py +1282 -0
  141. furl_ctx-0.27.0/furl_ctx/transforms/router_message_policy.py +547 -0
  142. furl_ctx-0.27.0/furl_ctx/transforms/router_policy.py +139 -0
  143. furl_ctx-0.27.0/furl_ctx/transforms/router_split.py +214 -0
  144. furl_ctx-0.27.0/furl_ctx/transforms/search_compressor.py +253 -0
  145. furl_ctx-0.27.0/furl_ctx/transforms/smart_crusher.py +1248 -0
  146. furl_ctx-0.27.0/furl_ctx/transforms/tag_protector.py +149 -0
  147. furl_ctx-0.27.0/furl_ctx/transforms/text_crusher.py +217 -0
  148. furl_ctx-0.27.0/furl_ctx/utils.py +106 -0
  149. furl_ctx-0.27.0/pyproject.toml +231 -0
@@ -0,0 +1,1464 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloca"
22
+ version = "0.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
25
+ dependencies = [
26
+ "cc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anyhow"
43
+ version = "1.0.103"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
46
+
47
+ [[package]]
48
+ name = "autocfg"
49
+ version = "1.5.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
52
+
53
+ [[package]]
54
+ name = "base64"
55
+ version = "0.22.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
58
+
59
+ [[package]]
60
+ name = "bit-set"
61
+ version = "0.8.0"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
64
+ dependencies = [
65
+ "bit-vec",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "bit-vec"
70
+ version = "0.8.0"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
73
+
74
+ [[package]]
75
+ name = "bitflags"
76
+ version = "2.11.1"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
79
+
80
+ [[package]]
81
+ name = "block-buffer"
82
+ version = "0.12.1"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
85
+ dependencies = [
86
+ "hybrid-array",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "bstr"
91
+ version = "1.12.1"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
94
+ dependencies = [
95
+ "memchr",
96
+ "regex-automata",
97
+ "serde",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "bumpalo"
102
+ version = "3.20.2"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
105
+
106
+ [[package]]
107
+ name = "cast"
108
+ version = "0.3.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
111
+
112
+ [[package]]
113
+ name = "cc"
114
+ version = "1.2.65"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
117
+ dependencies = [
118
+ "find-msvc-tools",
119
+ "shlex",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "cfg-if"
124
+ version = "1.0.4"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
127
+
128
+ [[package]]
129
+ name = "ciborium"
130
+ version = "0.2.2"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
133
+ dependencies = [
134
+ "ciborium-io",
135
+ "ciborium-ll",
136
+ "serde",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "ciborium-io"
141
+ version = "0.2.2"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
144
+
145
+ [[package]]
146
+ name = "ciborium-ll"
147
+ version = "0.2.2"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
150
+ dependencies = [
151
+ "ciborium-io",
152
+ "half",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "clap"
157
+ version = "4.6.1"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
160
+ dependencies = [
161
+ "clap_builder",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "clap_builder"
166
+ version = "4.6.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
169
+ dependencies = [
170
+ "anstyle",
171
+ "clap_lex",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "clap_lex"
176
+ version = "1.1.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
179
+
180
+ [[package]]
181
+ name = "const-oid"
182
+ version = "0.10.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
185
+
186
+ [[package]]
187
+ name = "cpufeatures"
188
+ version = "0.3.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
191
+ dependencies = [
192
+ "libc",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "crc32fast"
197
+ version = "1.5.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
200
+ dependencies = [
201
+ "cfg-if",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "criterion"
206
+ version = "0.8.2"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
209
+ dependencies = [
210
+ "alloca",
211
+ "anes",
212
+ "cast",
213
+ "ciborium",
214
+ "clap",
215
+ "criterion-plot",
216
+ "itertools",
217
+ "num-traits",
218
+ "oorandom",
219
+ "page_size",
220
+ "plotters",
221
+ "rayon",
222
+ "regex",
223
+ "serde",
224
+ "serde_json",
225
+ "tinytemplate",
226
+ "walkdir",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "criterion-plot"
231
+ version = "0.8.2"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
234
+ dependencies = [
235
+ "cast",
236
+ "itertools",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "crossbeam-deque"
241
+ version = "0.8.6"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
244
+ dependencies = [
245
+ "crossbeam-epoch",
246
+ "crossbeam-utils",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "crossbeam-epoch"
251
+ version = "0.9.18"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
254
+ dependencies = [
255
+ "crossbeam-utils",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "crossbeam-utils"
260
+ version = "0.8.21"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
263
+
264
+ [[package]]
265
+ name = "crunchy"
266
+ version = "0.2.4"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
269
+
270
+ [[package]]
271
+ name = "crypto-common"
272
+ version = "0.2.2"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
275
+ dependencies = [
276
+ "hybrid-array",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "dashmap"
281
+ version = "6.2.1"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
284
+ dependencies = [
285
+ "cfg-if",
286
+ "crossbeam-utils",
287
+ "hashbrown 0.14.5",
288
+ "lock_api",
289
+ "once_cell",
290
+ "parking_lot_core",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "digest"
295
+ version = "0.11.3"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
298
+ dependencies = [
299
+ "block-buffer",
300
+ "const-oid",
301
+ "crypto-common",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "either"
306
+ version = "1.15.0"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
309
+
310
+ [[package]]
311
+ name = "encoding_rs"
312
+ version = "0.8.35"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
315
+ dependencies = [
316
+ "cfg-if",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "equivalent"
321
+ version = "1.0.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
324
+
325
+ [[package]]
326
+ name = "errno"
327
+ version = "0.3.14"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
330
+ dependencies = [
331
+ "libc",
332
+ "windows-sys",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "fancy-regex"
337
+ version = "0.17.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
340
+ dependencies = [
341
+ "bit-set",
342
+ "regex-automata",
343
+ "regex-syntax",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "fastrand"
348
+ version = "2.4.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
351
+
352
+ [[package]]
353
+ name = "find-msvc-tools"
354
+ version = "0.1.9"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
357
+
358
+ [[package]]
359
+ name = "flate2"
360
+ version = "1.1.9"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
363
+ dependencies = [
364
+ "crc32fast",
365
+ "miniz_oxide",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "fnv"
370
+ version = "1.0.7"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
373
+
374
+ [[package]]
375
+ name = "foldhash"
376
+ version = "0.1.5"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
379
+
380
+ [[package]]
381
+ name = "furl-core"
382
+ version = "0.1.0"
383
+ dependencies = [
384
+ "aho-corasick",
385
+ "criterion",
386
+ "dashmap",
387
+ "flate2",
388
+ "md-5",
389
+ "proptest",
390
+ "regex",
391
+ "rustc-hash",
392
+ "serde",
393
+ "serde_json",
394
+ "sha2",
395
+ "tempfile",
396
+ "thiserror",
397
+ "tiktoken-rs",
398
+ "tracing",
399
+ "unidiff",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "furl-py"
404
+ version = "0.1.0"
405
+ dependencies = [
406
+ "cc",
407
+ "furl-core",
408
+ "pyo3",
409
+ "serde_json",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "getrandom"
414
+ version = "0.3.4"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
417
+ dependencies = [
418
+ "cfg-if",
419
+ "libc",
420
+ "r-efi 5.3.0",
421
+ "wasip2",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "getrandom"
426
+ version = "0.4.2"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
429
+ dependencies = [
430
+ "cfg-if",
431
+ "libc",
432
+ "r-efi 6.0.0",
433
+ "wasip2",
434
+ "wasip3",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "half"
439
+ version = "2.7.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
442
+ dependencies = [
443
+ "cfg-if",
444
+ "crunchy",
445
+ "zerocopy",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "hashbrown"
450
+ version = "0.14.5"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
453
+
454
+ [[package]]
455
+ name = "hashbrown"
456
+ version = "0.15.5"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
459
+ dependencies = [
460
+ "foldhash",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "hashbrown"
465
+ version = "0.17.0"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
468
+
469
+ [[package]]
470
+ name = "heck"
471
+ version = "0.5.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
474
+
475
+ [[package]]
476
+ name = "hybrid-array"
477
+ version = "0.4.13"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
480
+ dependencies = [
481
+ "typenum",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "id-arena"
486
+ version = "2.3.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
489
+
490
+ [[package]]
491
+ name = "indexmap"
492
+ version = "2.14.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
495
+ dependencies = [
496
+ "equivalent",
497
+ "hashbrown 0.17.0",
498
+ "serde",
499
+ "serde_core",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "itertools"
504
+ version = "0.13.0"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
507
+ dependencies = [
508
+ "either",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "itoa"
513
+ version = "1.0.18"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
516
+
517
+ [[package]]
518
+ name = "js-sys"
519
+ version = "0.3.95"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
522
+ dependencies = [
523
+ "once_cell",
524
+ "wasm-bindgen",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "lazy_static"
529
+ version = "1.5.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
532
+
533
+ [[package]]
534
+ name = "leb128fmt"
535
+ version = "0.1.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
538
+
539
+ [[package]]
540
+ name = "libc"
541
+ version = "0.2.185"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
544
+
545
+ [[package]]
546
+ name = "linux-raw-sys"
547
+ version = "0.12.1"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
550
+
551
+ [[package]]
552
+ name = "lock_api"
553
+ version = "0.4.14"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
556
+ dependencies = [
557
+ "scopeguard",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "log"
562
+ version = "0.4.29"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
565
+
566
+ [[package]]
567
+ name = "md-5"
568
+ version = "0.11.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
571
+ dependencies = [
572
+ "cfg-if",
573
+ "digest",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "memchr"
578
+ version = "2.8.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
581
+
582
+ [[package]]
583
+ name = "miniz_oxide"
584
+ version = "0.8.9"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
587
+ dependencies = [
588
+ "adler2",
589
+ "simd-adler32",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "num-traits"
594
+ version = "0.2.19"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
597
+ dependencies = [
598
+ "autocfg",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "once_cell"
603
+ version = "1.21.4"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
606
+
607
+ [[package]]
608
+ name = "oorandom"
609
+ version = "11.1.5"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
612
+
613
+ [[package]]
614
+ name = "page_size"
615
+ version = "0.6.0"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
618
+ dependencies = [
619
+ "libc",
620
+ "winapi",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "parking_lot_core"
625
+ version = "0.9.12"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
628
+ dependencies = [
629
+ "cfg-if",
630
+ "libc",
631
+ "redox_syscall",
632
+ "smallvec",
633
+ "windows-link",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "pin-project-lite"
638
+ version = "0.2.17"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
641
+
642
+ [[package]]
643
+ name = "plotters"
644
+ version = "0.3.7"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
647
+ dependencies = [
648
+ "num-traits",
649
+ "plotters-backend",
650
+ "plotters-svg",
651
+ "wasm-bindgen",
652
+ "web-sys",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "plotters-backend"
657
+ version = "0.3.7"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
660
+
661
+ [[package]]
662
+ name = "plotters-svg"
663
+ version = "0.3.7"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
666
+ dependencies = [
667
+ "plotters-backend",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "portable-atomic"
672
+ version = "1.13.1"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
675
+
676
+ [[package]]
677
+ name = "ppv-lite86"
678
+ version = "0.2.21"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
681
+ dependencies = [
682
+ "zerocopy",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "prettyplease"
687
+ version = "0.2.37"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
690
+ dependencies = [
691
+ "proc-macro2",
692
+ "syn",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "proc-macro2"
697
+ version = "1.0.106"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
700
+ dependencies = [
701
+ "unicode-ident",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "proptest"
706
+ version = "1.11.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
709
+ dependencies = [
710
+ "bit-set",
711
+ "bit-vec",
712
+ "bitflags",
713
+ "num-traits",
714
+ "rand",
715
+ "rand_chacha",
716
+ "rand_xorshift",
717
+ "regex-syntax",
718
+ "rusty-fork",
719
+ "tempfile",
720
+ "unarray",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "pyo3"
725
+ version = "0.29.0"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
728
+ dependencies = [
729
+ "libc",
730
+ "once_cell",
731
+ "portable-atomic",
732
+ "pyo3-build-config",
733
+ "pyo3-ffi",
734
+ "pyo3-macros",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "pyo3-build-config"
739
+ version = "0.29.0"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
742
+ dependencies = [
743
+ "target-lexicon",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "pyo3-ffi"
748
+ version = "0.29.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
751
+ dependencies = [
752
+ "libc",
753
+ "pyo3-build-config",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "pyo3-macros"
758
+ version = "0.29.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
761
+ dependencies = [
762
+ "proc-macro2",
763
+ "pyo3-macros-backend",
764
+ "quote",
765
+ "syn",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "pyo3-macros-backend"
770
+ version = "0.29.0"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
773
+ dependencies = [
774
+ "heck",
775
+ "proc-macro2",
776
+ "quote",
777
+ "syn",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "quick-error"
782
+ version = "1.2.3"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
785
+
786
+ [[package]]
787
+ name = "quote"
788
+ version = "1.0.45"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
791
+ dependencies = [
792
+ "proc-macro2",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "r-efi"
797
+ version = "5.3.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
800
+
801
+ [[package]]
802
+ name = "r-efi"
803
+ version = "6.0.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
806
+
807
+ [[package]]
808
+ name = "rand"
809
+ version = "0.9.4"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
812
+ dependencies = [
813
+ "rand_chacha",
814
+ "rand_core",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "rand_chacha"
819
+ version = "0.9.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
822
+ dependencies = [
823
+ "ppv-lite86",
824
+ "rand_core",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "rand_core"
829
+ version = "0.9.5"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
832
+ dependencies = [
833
+ "getrandom 0.3.4",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "rand_xorshift"
838
+ version = "0.4.0"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
841
+ dependencies = [
842
+ "rand_core",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "rayon"
847
+ version = "1.12.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
850
+ dependencies = [
851
+ "either",
852
+ "rayon-core",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "rayon-core"
857
+ version = "1.13.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
860
+ dependencies = [
861
+ "crossbeam-deque",
862
+ "crossbeam-utils",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "redox_syscall"
867
+ version = "0.5.18"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
870
+ dependencies = [
871
+ "bitflags",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "regex"
876
+ version = "1.12.4"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
879
+ dependencies = [
880
+ "aho-corasick",
881
+ "memchr",
882
+ "regex-automata",
883
+ "regex-syntax",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "regex-automata"
888
+ version = "0.4.14"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
891
+ dependencies = [
892
+ "aho-corasick",
893
+ "memchr",
894
+ "regex-syntax",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "regex-syntax"
899
+ version = "0.8.11"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
902
+
903
+ [[package]]
904
+ name = "rustc-hash"
905
+ version = "2.1.3"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
908
+
909
+ [[package]]
910
+ name = "rustix"
911
+ version = "1.1.4"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
914
+ dependencies = [
915
+ "bitflags",
916
+ "errno",
917
+ "libc",
918
+ "linux-raw-sys",
919
+ "windows-sys",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "rustversion"
924
+ version = "1.0.22"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
927
+
928
+ [[package]]
929
+ name = "rusty-fork"
930
+ version = "0.3.1"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
933
+ dependencies = [
934
+ "fnv",
935
+ "quick-error",
936
+ "tempfile",
937
+ "wait-timeout",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "same-file"
942
+ version = "1.0.6"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
945
+ dependencies = [
946
+ "winapi-util",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "scopeguard"
951
+ version = "1.2.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
954
+
955
+ [[package]]
956
+ name = "semver"
957
+ version = "1.0.28"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
960
+
961
+ [[package]]
962
+ name = "serde"
963
+ version = "1.0.228"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
966
+ dependencies = [
967
+ "serde_core",
968
+ "serde_derive",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "serde_core"
973
+ version = "1.0.228"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
976
+ dependencies = [
977
+ "serde_derive",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "serde_derive"
982
+ version = "1.0.228"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
985
+ dependencies = [
986
+ "proc-macro2",
987
+ "quote",
988
+ "syn",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "serde_json"
993
+ version = "1.0.150"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
996
+ dependencies = [
997
+ "indexmap",
998
+ "itoa",
999
+ "memchr",
1000
+ "serde",
1001
+ "serde_core",
1002
+ "zmij",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "sha2"
1007
+ version = "0.11.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1010
+ dependencies = [
1011
+ "cfg-if",
1012
+ "cpufeatures",
1013
+ "digest",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "shlex"
1018
+ version = "2.0.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1021
+
1022
+ [[package]]
1023
+ name = "simd-adler32"
1024
+ version = "0.3.9"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1027
+
1028
+ [[package]]
1029
+ name = "smallvec"
1030
+ version = "1.15.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1033
+
1034
+ [[package]]
1035
+ name = "syn"
1036
+ version = "2.0.117"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1039
+ dependencies = [
1040
+ "proc-macro2",
1041
+ "quote",
1042
+ "unicode-ident",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "target-lexicon"
1047
+ version = "0.13.5"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1050
+
1051
+ [[package]]
1052
+ name = "tempfile"
1053
+ version = "3.27.0"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1056
+ dependencies = [
1057
+ "fastrand",
1058
+ "getrandom 0.4.2",
1059
+ "once_cell",
1060
+ "rustix",
1061
+ "windows-sys",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "thiserror"
1066
+ version = "2.0.18"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1069
+ dependencies = [
1070
+ "thiserror-impl",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "thiserror-impl"
1075
+ version = "2.0.18"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1078
+ dependencies = [
1079
+ "proc-macro2",
1080
+ "quote",
1081
+ "syn",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "tiktoken-rs"
1086
+ version = "0.12.0"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "027853bbf8c7763b77c5c595f1c271c7d536ced7d6f83452911b944621e57fc2"
1089
+ dependencies = [
1090
+ "anyhow",
1091
+ "base64",
1092
+ "bstr",
1093
+ "fancy-regex",
1094
+ "lazy_static",
1095
+ "regex",
1096
+ "rustc-hash",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "tinytemplate"
1101
+ version = "1.2.1"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1104
+ dependencies = [
1105
+ "serde",
1106
+ "serde_json",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "tracing"
1111
+ version = "0.1.44"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1114
+ dependencies = [
1115
+ "pin-project-lite",
1116
+ "tracing-attributes",
1117
+ "tracing-core",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "tracing-attributes"
1122
+ version = "0.1.31"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1125
+ dependencies = [
1126
+ "proc-macro2",
1127
+ "quote",
1128
+ "syn",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "tracing-core"
1133
+ version = "0.1.36"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1136
+ dependencies = [
1137
+ "once_cell",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "typenum"
1142
+ version = "1.20.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1145
+
1146
+ [[package]]
1147
+ name = "unarray"
1148
+ version = "0.1.4"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1151
+
1152
+ [[package]]
1153
+ name = "unicode-ident"
1154
+ version = "1.0.24"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1157
+
1158
+ [[package]]
1159
+ name = "unicode-xid"
1160
+ version = "0.2.6"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1163
+
1164
+ [[package]]
1165
+ name = "unidiff"
1166
+ version = "0.4.0"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "e3ae26d2e6582eb32eff85cffebf74d20b6510e8b558bbac3a23b48965cf952f"
1169
+ dependencies = [
1170
+ "encoding_rs",
1171
+ "regex",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "wait-timeout"
1176
+ version = "0.2.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1179
+ dependencies = [
1180
+ "libc",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "walkdir"
1185
+ version = "2.5.0"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1188
+ dependencies = [
1189
+ "same-file",
1190
+ "winapi-util",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "wasip2"
1195
+ version = "1.0.3+wasi-0.2.9"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1198
+ dependencies = [
1199
+ "wit-bindgen 0.57.1",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "wasip3"
1204
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1207
+ dependencies = [
1208
+ "wit-bindgen 0.51.0",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "wasm-bindgen"
1213
+ version = "0.2.118"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
1216
+ dependencies = [
1217
+ "cfg-if",
1218
+ "once_cell",
1219
+ "rustversion",
1220
+ "wasm-bindgen-macro",
1221
+ "wasm-bindgen-shared",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "wasm-bindgen-macro"
1226
+ version = "0.2.118"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
1229
+ dependencies = [
1230
+ "quote",
1231
+ "wasm-bindgen-macro-support",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "wasm-bindgen-macro-support"
1236
+ version = "0.2.118"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
1239
+ dependencies = [
1240
+ "bumpalo",
1241
+ "proc-macro2",
1242
+ "quote",
1243
+ "syn",
1244
+ "wasm-bindgen-shared",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "wasm-bindgen-shared"
1249
+ version = "0.2.118"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
1252
+ dependencies = [
1253
+ "unicode-ident",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "wasm-encoder"
1258
+ version = "0.244.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1261
+ dependencies = [
1262
+ "leb128fmt",
1263
+ "wasmparser",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "wasm-metadata"
1268
+ version = "0.244.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1271
+ dependencies = [
1272
+ "anyhow",
1273
+ "indexmap",
1274
+ "wasm-encoder",
1275
+ "wasmparser",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "wasmparser"
1280
+ version = "0.244.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1283
+ dependencies = [
1284
+ "bitflags",
1285
+ "hashbrown 0.15.5",
1286
+ "indexmap",
1287
+ "semver",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "web-sys"
1292
+ version = "0.3.95"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
1295
+ dependencies = [
1296
+ "js-sys",
1297
+ "wasm-bindgen",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "winapi"
1302
+ version = "0.3.9"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1305
+ dependencies = [
1306
+ "winapi-i686-pc-windows-gnu",
1307
+ "winapi-x86_64-pc-windows-gnu",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "winapi-i686-pc-windows-gnu"
1312
+ version = "0.4.0"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1315
+
1316
+ [[package]]
1317
+ name = "winapi-util"
1318
+ version = "0.1.11"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1321
+ dependencies = [
1322
+ "windows-sys",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "winapi-x86_64-pc-windows-gnu"
1327
+ version = "0.4.0"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1330
+
1331
+ [[package]]
1332
+ name = "windows-link"
1333
+ version = "0.2.1"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1336
+
1337
+ [[package]]
1338
+ name = "windows-sys"
1339
+ version = "0.61.2"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1342
+ dependencies = [
1343
+ "windows-link",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "wit-bindgen"
1348
+ version = "0.51.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1351
+ dependencies = [
1352
+ "wit-bindgen-rust-macro",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "wit-bindgen"
1357
+ version = "0.57.1"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1360
+
1361
+ [[package]]
1362
+ name = "wit-bindgen-core"
1363
+ version = "0.51.0"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1366
+ dependencies = [
1367
+ "anyhow",
1368
+ "heck",
1369
+ "wit-parser",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "wit-bindgen-rust"
1374
+ version = "0.51.0"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1377
+ dependencies = [
1378
+ "anyhow",
1379
+ "heck",
1380
+ "indexmap",
1381
+ "prettyplease",
1382
+ "syn",
1383
+ "wasm-metadata",
1384
+ "wit-bindgen-core",
1385
+ "wit-component",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "wit-bindgen-rust-macro"
1390
+ version = "0.51.0"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1393
+ dependencies = [
1394
+ "anyhow",
1395
+ "prettyplease",
1396
+ "proc-macro2",
1397
+ "quote",
1398
+ "syn",
1399
+ "wit-bindgen-core",
1400
+ "wit-bindgen-rust",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "wit-component"
1405
+ version = "0.244.0"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1408
+ dependencies = [
1409
+ "anyhow",
1410
+ "bitflags",
1411
+ "indexmap",
1412
+ "log",
1413
+ "serde",
1414
+ "serde_derive",
1415
+ "serde_json",
1416
+ "wasm-encoder",
1417
+ "wasm-metadata",
1418
+ "wasmparser",
1419
+ "wit-parser",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "wit-parser"
1424
+ version = "0.244.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1427
+ dependencies = [
1428
+ "anyhow",
1429
+ "id-arena",
1430
+ "indexmap",
1431
+ "log",
1432
+ "semver",
1433
+ "serde",
1434
+ "serde_derive",
1435
+ "serde_json",
1436
+ "unicode-xid",
1437
+ "wasmparser",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "zerocopy"
1442
+ version = "0.8.48"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1445
+ dependencies = [
1446
+ "zerocopy-derive",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "zerocopy-derive"
1451
+ version = "0.8.48"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1454
+ dependencies = [
1455
+ "proc-macro2",
1456
+ "quote",
1457
+ "syn",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "zmij"
1462
+ version = "1.0.21"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"