biors 0.47.3__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 (96) hide show
  1. biors-0.47.3/Cargo.lock +3286 -0
  2. biors-0.47.3/Cargo.toml +19 -0
  3. biors-0.47.3/PKG-INFO +77 -0
  4. biors-0.47.3/README.md +68 -0
  5. biors-0.47.3/packages/rust/biors-core/Cargo.toml +22 -0
  6. biors-0.47.3/packages/rust/biors-core/README.md +332 -0
  7. biors-0.47.3/packages/rust/biors-core/benches/fasta_workloads.rs +226 -0
  8. biors-0.47.3/packages/rust/biors-core/examples/benchmark_fasta.rs +108 -0
  9. biors-0.47.3/packages/rust/biors-core/examples/tokenize.rs +12 -0
  10. biors-0.47.3/packages/rust/biors-core/src/error.rs +194 -0
  11. biors-0.47.3/packages/rust/biors-core/src/fasta.rs +236 -0
  12. biors-0.47.3/packages/rust/biors-core/src/fasta_scan/tests.rs +43 -0
  13. biors-0.47.3/packages/rust/biors-core/src/fasta_scan.rs +248 -0
  14. biors-0.47.3/packages/rust/biors-core/src/hash.rs +27 -0
  15. biors-0.47.3/packages/rust/biors-core/src/lib.rs +29 -0
  16. biors-0.47.3/packages/rust/biors-core/src/model_input/tests.rs +266 -0
  17. biors-0.47.3/packages/rust/biors-core/src/model_input.rs +151 -0
  18. biors-0.47.3/packages/rust/biors-core/src/package/artifacts.rs +195 -0
  19. biors-0.47.3/packages/rust/biors-core/src/package/checksum.rs +2 -0
  20. biors-0.47.3/packages/rust/biors-core/src/package/layout.rs +147 -0
  21. biors-0.47.3/packages/rust/biors-core/src/package/manifest.rs +170 -0
  22. biors-0.47.3/packages/rust/biors-core/src/package/paths.rs +99 -0
  23. biors-0.47.3/packages/rust/biors-core/src/package/reports.rs +221 -0
  24. biors-0.47.3/packages/rust/biors-core/src/package/runtime.rs +160 -0
  25. biors-0.47.3/packages/rust/biors-core/src/package/summary.rs +82 -0
  26. biors-0.47.3/packages/rust/biors-core/src/package/tooling/tests.rs +262 -0
  27. biors-0.47.3/packages/rust/biors-core/src/package/tooling.rs +223 -0
  28. biors-0.47.3/packages/rust/biors-core/src/package/types.rs +104 -0
  29. biors-0.47.3/packages/rust/biors-core/src/package/validation.rs +223 -0
  30. biors-0.47.3/packages/rust/biors-core/src/package.rs +45 -0
  31. biors-0.47.3/packages/rust/biors-core/src/runtime/contracts.rs +213 -0
  32. biors-0.47.3/packages/rust/biors-core/src/runtime/errors.rs +133 -0
  33. biors-0.47.3/packages/rust/biors-core/src/runtime/process.rs +271 -0
  34. biors-0.47.3/packages/rust/biors-core/src/runtime/process_io.rs +97 -0
  35. biors-0.47.3/packages/rust/biors-core/src/runtime.rs +19 -0
  36. biors-0.47.3/packages/rust/biors-core/src/sequence/alphabet.rs +75 -0
  37. biors-0.47.3/packages/rust/biors-core/src/sequence/detection.rs +100 -0
  38. biors-0.47.3/packages/rust/biors-core/src/sequence/kind.rs +64 -0
  39. biors-0.47.3/packages/rust/biors-core/src/sequence/kind_validation.rs +185 -0
  40. biors-0.47.3/packages/rust/biors-core/src/sequence/normalization/tests.rs +19 -0
  41. biors-0.47.3/packages/rust/biors-core/src/sequence/normalization.rs +56 -0
  42. biors-0.47.3/packages/rust/biors-core/src/sequence/report.rs +41 -0
  43. biors-0.47.3/packages/rust/biors-core/src/sequence/residue.rs +63 -0
  44. biors-0.47.3/packages/rust/biors-core/src/sequence/types.rs +252 -0
  45. biors-0.47.3/packages/rust/biors-core/src/sequence/validation.rs +225 -0
  46. biors-0.47.3/packages/rust/biors-core/src/sequence.rs +41 -0
  47. biors-0.47.3/packages/rust/biors-core/src/service.rs +196 -0
  48. biors-0.47.3/packages/rust/biors-core/src/tokenizer/config.rs +142 -0
  49. biors-0.47.3/packages/rust/biors-core/src/tokenizer/lookup.rs +184 -0
  50. biors-0.47.3/packages/rust/biors-core/src/tokenizer/protein.rs +89 -0
  51. biors-0.47.3/packages/rust/biors-core/src/tokenizer/sinks/tests.rs +121 -0
  52. biors-0.47.3/packages/rust/biors-core/src/tokenizer/sinks.rs +199 -0
  53. biors-0.47.3/packages/rust/biors-core/src/tokenizer/types.rs +54 -0
  54. biors-0.47.3/packages/rust/biors-core/src/tokenizer/vocab.rs +168 -0
  55. biors-0.47.3/packages/rust/biors-core/src/tokenizer.rs +262 -0
  56. biors-0.47.3/packages/rust/biors-core/src/verification/diff.rs +82 -0
  57. biors-0.47.3/packages/rust/biors-core/src/verification/fixtures.rs +211 -0
  58. biors-0.47.3/packages/rust/biors-core/src/verification/hash.rs +40 -0
  59. biors-0.47.3/packages/rust/biors-core/src/verification/types.rs +177 -0
  60. biors-0.47.3/packages/rust/biors-core/src/verification.rs +14 -0
  61. biors-0.47.3/packages/rust/biors-core/src/versioning.rs +201 -0
  62. biors-0.47.3/packages/rust/biors-core/src/workflow/reproducibility.rs +83 -0
  63. biors-0.47.3/packages/rust/biors-core/src/workflow.rs +246 -0
  64. biors-0.47.3/packages/rust/biors-core/tests/api_parity.rs +32 -0
  65. biors-0.47.3/packages/rust/biors-core/tests/fasta_parsing.rs +110 -0
  66. biors-0.47.3/packages/rust/biors-core/tests/fasta_phase3.rs +81 -0
  67. biors-0.47.3/packages/rust/biors-core/tests/fasta_validation.rs +70 -0
  68. biors-0.47.3/packages/rust/biors-core/tests/fixture_contract.rs +75 -0
  69. biors-0.47.3/packages/rust/biors-core/tests/fixtures/fasta/invalid/empty_identifier.fasta +2 -0
  70. biors-0.47.3/packages/rust/biors-core/tests/fixtures/fasta/invalid/missing_header.fasta +1 -0
  71. biors-0.47.3/packages/rust/biors-core/tests/fixtures/fasta/invalid/missing_sequence.fasta +1 -0
  72. biors-0.47.3/packages/rust/biors-core/tests/fixtures/fasta/valid/mixed_case_whitespace.fasta +4 -0
  73. biors-0.47.3/packages/rust/biors-core/tests/fixtures/manifest/invalid_manifest.json +19 -0
  74. biors-0.47.3/packages/rust/biors-core/tests/fixtures/runtime_process.py +64 -0
  75. biors-0.47.3/packages/rust/biors-core/tests/fixtures/tokenizer/protein_20_expected.json +41 -0
  76. biors-0.47.3/packages/rust/biors-core/tests/model_input_build.rs +100 -0
  77. biors-0.47.3/packages/rust/biors-core/tests/model_input_contract.rs +79 -0
  78. biors-0.47.3/packages/rust/biors-core/tests/module_boundaries.rs +111 -0
  79. biors-0.47.3/packages/rust/biors-core/tests/package.rs +629 -0
  80. biors-0.47.3/packages/rust/biors-core/tests/package_validation.rs +167 -0
  81. biors-0.47.3/packages/rust/biors-core/tests/runtime.rs +397 -0
  82. biors-0.47.3/packages/rust/biors-core/tests/schema_versioning.rs +72 -0
  83. biors-0.47.3/packages/rust/biors-core/tests/sequence_phase3.rs +86 -0
  84. biors-0.47.3/packages/rust/biors-core/tests/service_interface.rs +49 -0
  85. biors-0.47.3/packages/rust/biors-core/tests/tokenizer_contract.rs +150 -0
  86. biors-0.47.3/packages/rust/biors-core/tests/tokenizer_profiles.rs +59 -0
  87. biors-0.47.3/packages/rust/biors-core/tests/verification.rs +171 -0
  88. biors-0.47.3/packages/rust/biors-core/tests/wasm_readiness.rs +33 -0
  89. biors-0.47.3/packages/rust/biors-python/.gitignore +18 -0
  90. biors-0.47.3/packages/rust/biors-python/Cargo.toml +20 -0
  91. biors-0.47.3/packages/rust/biors-python/README.md +68 -0
  92. biors-0.47.3/packages/rust/biors-python/src/lib.rs +258 -0
  93. biors-0.47.3/packages/rust/biors-python/tests/test_python_api.py +50 -0
  94. biors-0.47.3/pyproject.toml +16 -0
  95. biors-0.47.3/python/biors/__init__.py +33 -0
  96. biors-0.47.3/python/biors/py.typed +0 -0
@@ -0,0 +1,3286 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "serde",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "aho-corasick"
21
+ version = "1.1.4"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
24
+ dependencies = [
25
+ "memchr",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "anes"
45
+ version = "0.1.6"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
48
+
49
+ [[package]]
50
+ name = "anstream"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
54
+ dependencies = [
55
+ "anstyle",
56
+ "anstyle-parse",
57
+ "anstyle-query",
58
+ "anstyle-wincon",
59
+ "colorchoice",
60
+ "is_terminal_polyfill",
61
+ "utf8parse",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle"
66
+ version = "1.0.14"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
69
+
70
+ [[package]]
71
+ name = "anstyle-parse"
72
+ version = "1.0.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
75
+ dependencies = [
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle-query"
81
+ version = "1.1.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
84
+ dependencies = [
85
+ "windows-sys",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle-wincon"
90
+ version = "3.0.11"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
93
+ dependencies = [
94
+ "anstyle",
95
+ "once_cell_polyfill",
96
+ "windows-sys",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anyhow"
101
+ version = "1.0.102"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
104
+
105
+ [[package]]
106
+ name = "async-trait"
107
+ version = "0.1.89"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
110
+ dependencies = [
111
+ "proc-macro2",
112
+ "quote",
113
+ "syn",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "atomic-waker"
118
+ version = "1.1.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
121
+
122
+ [[package]]
123
+ name = "autocfg"
124
+ version = "1.5.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
127
+
128
+ [[package]]
129
+ name = "base64"
130
+ version = "0.13.1"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
133
+
134
+ [[package]]
135
+ name = "base64"
136
+ version = "0.22.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
139
+
140
+ [[package]]
141
+ name = "biors"
142
+ version = "0.47.3"
143
+ dependencies = [
144
+ "biors-core",
145
+ "clap",
146
+ "clap_complete",
147
+ "jsonschema",
148
+ "serde",
149
+ "serde_json",
150
+ "serde_yml",
151
+ "toml",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "biors-backend-candle"
156
+ version = "0.47.3"
157
+ dependencies = [
158
+ "biors-core",
159
+ "candle-core",
160
+ "criterion",
161
+ "serde",
162
+ "serde_json",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "biors-core"
167
+ version = "0.47.3"
168
+ dependencies = [
169
+ "criterion",
170
+ "serde",
171
+ "serde_json",
172
+ "sha2",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "biors-mcp-server"
177
+ version = "0.47.3"
178
+ dependencies = [
179
+ "biors-core",
180
+ "rmcp",
181
+ "serde",
182
+ "serde_json",
183
+ "tokio",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "biors-python"
188
+ version = "0.47.3"
189
+ dependencies = [
190
+ "biors-core",
191
+ "pyo3",
192
+ "serde_json",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "biors-wasm"
197
+ version = "0.47.3"
198
+ dependencies = [
199
+ "biors-core",
200
+ "console_error_panic_hook",
201
+ "js-sys",
202
+ "serde",
203
+ "serde_json",
204
+ "wasm-bindgen",
205
+ "wasm-bindgen-test",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "bit-set"
210
+ version = "0.5.3"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
213
+ dependencies = [
214
+ "bit-vec",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "bit-vec"
219
+ version = "0.6.3"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
222
+
223
+ [[package]]
224
+ name = "bitflags"
225
+ version = "2.11.1"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
228
+
229
+ [[package]]
230
+ name = "block-buffer"
231
+ version = "0.10.4"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
234
+ dependencies = [
235
+ "generic-array",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "bumpalo"
240
+ version = "3.20.2"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
243
+
244
+ [[package]]
245
+ name = "bytecount"
246
+ version = "0.6.9"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
249
+
250
+ [[package]]
251
+ name = "bytemuck"
252
+ version = "1.25.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
255
+ dependencies = [
256
+ "bytemuck_derive",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "bytemuck_derive"
261
+ version = "1.10.2"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
264
+ dependencies = [
265
+ "proc-macro2",
266
+ "quote",
267
+ "syn",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "byteorder"
272
+ version = "1.5.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
275
+
276
+ [[package]]
277
+ name = "bytes"
278
+ version = "1.11.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
281
+
282
+ [[package]]
283
+ name = "candle-core"
284
+ version = "0.10.2"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "6bd9895436c1ba5dc1037a19935d084b838db066ff4e15ef7dded020b7c12a4a"
287
+ dependencies = [
288
+ "byteorder",
289
+ "float8",
290
+ "gemm",
291
+ "half",
292
+ "libm",
293
+ "memmap2",
294
+ "num-traits",
295
+ "num_cpus",
296
+ "rand",
297
+ "rand_distr",
298
+ "rayon",
299
+ "safetensors",
300
+ "thiserror 2.0.18",
301
+ "tokenizers",
302
+ "yoke",
303
+ "zip",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "cast"
308
+ version = "0.3.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
311
+
312
+ [[package]]
313
+ name = "castaway"
314
+ version = "0.2.4"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
317
+ dependencies = [
318
+ "rustversion",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "cc"
323
+ version = "1.2.62"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
326
+ dependencies = [
327
+ "find-msvc-tools",
328
+ "shlex",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "cfg-if"
333
+ version = "1.0.4"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
336
+
337
+ [[package]]
338
+ name = "cfg_aliases"
339
+ version = "0.2.1"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
342
+
343
+ [[package]]
344
+ name = "chrono"
345
+ version = "0.4.44"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
348
+ dependencies = [
349
+ "iana-time-zone",
350
+ "num-traits",
351
+ "serde",
352
+ "windows-link",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "ciborium"
357
+ version = "0.2.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
360
+ dependencies = [
361
+ "ciborium-io",
362
+ "ciborium-ll",
363
+ "serde",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "ciborium-io"
368
+ version = "0.2.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
371
+
372
+ [[package]]
373
+ name = "ciborium-ll"
374
+ version = "0.2.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
377
+ dependencies = [
378
+ "ciborium-io",
379
+ "half",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "clap"
384
+ version = "4.6.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
387
+ dependencies = [
388
+ "clap_builder",
389
+ "clap_derive",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "clap_builder"
394
+ version = "4.6.0"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
397
+ dependencies = [
398
+ "anstream",
399
+ "anstyle",
400
+ "clap_lex",
401
+ "strsim",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "clap_complete"
406
+ version = "4.6.3"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "660c0520455b1013b9bcb0393d5f643d7e4454fb69c915b8d6d2aa0e9a45acc3"
409
+ dependencies = [
410
+ "clap",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "clap_derive"
415
+ version = "4.6.1"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
418
+ dependencies = [
419
+ "heck",
420
+ "proc-macro2",
421
+ "quote",
422
+ "syn",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "clap_lex"
427
+ version = "1.1.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
430
+
431
+ [[package]]
432
+ name = "colorchoice"
433
+ version = "1.0.5"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
436
+
437
+ [[package]]
438
+ name = "compact_str"
439
+ version = "0.9.0"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
442
+ dependencies = [
443
+ "castaway",
444
+ "cfg-if",
445
+ "itoa",
446
+ "rustversion",
447
+ "ryu",
448
+ "serde",
449
+ "static_assertions",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "console_error_panic_hook"
454
+ version = "0.1.7"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
457
+ dependencies = [
458
+ "cfg-if",
459
+ "wasm-bindgen",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "core-foundation-sys"
464
+ version = "0.8.7"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
467
+
468
+ [[package]]
469
+ name = "cpufeatures"
470
+ version = "0.2.17"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
473
+ dependencies = [
474
+ "libc",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "crc32fast"
479
+ version = "1.5.0"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
482
+ dependencies = [
483
+ "cfg-if",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "criterion"
488
+ version = "0.5.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
491
+ dependencies = [
492
+ "anes",
493
+ "cast",
494
+ "ciborium",
495
+ "clap",
496
+ "criterion-plot",
497
+ "is-terminal",
498
+ "itertools 0.10.5",
499
+ "num-traits",
500
+ "once_cell",
501
+ "oorandom",
502
+ "plotters",
503
+ "rayon",
504
+ "regex",
505
+ "serde",
506
+ "serde_derive",
507
+ "serde_json",
508
+ "tinytemplate",
509
+ "walkdir",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "criterion-plot"
514
+ version = "0.5.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
517
+ dependencies = [
518
+ "cast",
519
+ "itertools 0.10.5",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "crossbeam-deque"
524
+ version = "0.8.6"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
527
+ dependencies = [
528
+ "crossbeam-epoch",
529
+ "crossbeam-utils",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "crossbeam-epoch"
534
+ version = "0.9.18"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
537
+ dependencies = [
538
+ "crossbeam-utils",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "crossbeam-utils"
543
+ version = "0.8.21"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
546
+
547
+ [[package]]
548
+ name = "crunchy"
549
+ version = "0.2.4"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
552
+
553
+ [[package]]
554
+ name = "crypto-common"
555
+ version = "0.1.7"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
558
+ dependencies = [
559
+ "generic-array",
560
+ "typenum",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "darling"
565
+ version = "0.20.11"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
568
+ dependencies = [
569
+ "darling_core 0.20.11",
570
+ "darling_macro 0.20.11",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "darling"
575
+ version = "0.23.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
578
+ dependencies = [
579
+ "darling_core 0.23.0",
580
+ "darling_macro 0.23.0",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "darling_core"
585
+ version = "0.20.11"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
588
+ dependencies = [
589
+ "fnv",
590
+ "ident_case",
591
+ "proc-macro2",
592
+ "quote",
593
+ "strsim",
594
+ "syn",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "darling_core"
599
+ version = "0.23.0"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
602
+ dependencies = [
603
+ "ident_case",
604
+ "proc-macro2",
605
+ "quote",
606
+ "strsim",
607
+ "syn",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "darling_macro"
612
+ version = "0.20.11"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
615
+ dependencies = [
616
+ "darling_core 0.20.11",
617
+ "quote",
618
+ "syn",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "darling_macro"
623
+ version = "0.23.0"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
626
+ dependencies = [
627
+ "darling_core 0.23.0",
628
+ "quote",
629
+ "syn",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "dary_heap"
634
+ version = "0.3.9"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "8b1e3a325bc115f096c8b77bbf027a7c2592230e70be2d985be950d3d5e60ebe"
637
+ dependencies = [
638
+ "serde",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "deranged"
643
+ version = "0.5.8"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
646
+ dependencies = [
647
+ "powerfmt",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "derive_builder"
652
+ version = "0.20.2"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
655
+ dependencies = [
656
+ "derive_builder_macro",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "derive_builder_core"
661
+ version = "0.20.2"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
664
+ dependencies = [
665
+ "darling 0.20.11",
666
+ "proc-macro2",
667
+ "quote",
668
+ "syn",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "derive_builder_macro"
673
+ version = "0.20.2"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
676
+ dependencies = [
677
+ "derive_builder_core",
678
+ "syn",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "digest"
683
+ version = "0.10.7"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
686
+ dependencies = [
687
+ "block-buffer",
688
+ "crypto-common",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "displaydoc"
693
+ version = "0.2.5"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
696
+ dependencies = [
697
+ "proc-macro2",
698
+ "quote",
699
+ "syn",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "dyn-clone"
704
+ version = "1.0.20"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
707
+
708
+ [[package]]
709
+ name = "dyn-stack"
710
+ version = "0.13.2"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
713
+ dependencies = [
714
+ "bytemuck",
715
+ "dyn-stack-macros",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "dyn-stack-macros"
720
+ version = "0.1.3"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
723
+
724
+ [[package]]
725
+ name = "either"
726
+ version = "1.15.0"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
729
+
730
+ [[package]]
731
+ name = "enum-as-inner"
732
+ version = "0.6.1"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
735
+ dependencies = [
736
+ "heck",
737
+ "proc-macro2",
738
+ "quote",
739
+ "syn",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "equivalent"
744
+ version = "1.0.2"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
747
+
748
+ [[package]]
749
+ name = "errno"
750
+ version = "0.3.14"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
753
+ dependencies = [
754
+ "libc",
755
+ "windows-sys",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "esaxx-rs"
760
+ version = "0.1.10"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
763
+
764
+ [[package]]
765
+ name = "fancy-regex"
766
+ version = "0.13.0"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
769
+ dependencies = [
770
+ "bit-set",
771
+ "regex-automata",
772
+ "regex-syntax",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "find-msvc-tools"
777
+ version = "0.1.9"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
780
+
781
+ [[package]]
782
+ name = "float8"
783
+ version = "0.7.0"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "c2d1f04709a8ac06e8e8042875a3c466cc4832d3c1a18dbcb9dba3c6e83046bc"
786
+ dependencies = [
787
+ "half",
788
+ "num-traits",
789
+ "rand",
790
+ "rand_distr",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "fnv"
795
+ version = "1.0.7"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
798
+
799
+ [[package]]
800
+ name = "foldhash"
801
+ version = "0.2.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
804
+
805
+ [[package]]
806
+ name = "form_urlencoded"
807
+ version = "1.2.2"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
810
+ dependencies = [
811
+ "percent-encoding",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "fraction"
816
+ version = "0.15.4"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "e076045bb43dac435333ed5f04caf35c7463631d0dae2deb2638d94dd0a5b872"
819
+ dependencies = [
820
+ "lazy_static",
821
+ "num",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "futures"
826
+ version = "0.3.32"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
829
+ dependencies = [
830
+ "futures-channel",
831
+ "futures-core",
832
+ "futures-executor",
833
+ "futures-io",
834
+ "futures-sink",
835
+ "futures-task",
836
+ "futures-util",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "futures-channel"
841
+ version = "0.3.32"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
844
+ dependencies = [
845
+ "futures-core",
846
+ "futures-sink",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "futures-core"
851
+ version = "0.3.32"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
854
+
855
+ [[package]]
856
+ name = "futures-executor"
857
+ version = "0.3.32"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
860
+ dependencies = [
861
+ "futures-core",
862
+ "futures-task",
863
+ "futures-util",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "futures-io"
868
+ version = "0.3.32"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
871
+
872
+ [[package]]
873
+ name = "futures-macro"
874
+ version = "0.3.32"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
877
+ dependencies = [
878
+ "proc-macro2",
879
+ "quote",
880
+ "syn",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "futures-sink"
885
+ version = "0.3.32"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
888
+
889
+ [[package]]
890
+ name = "futures-task"
891
+ version = "0.3.32"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
894
+
895
+ [[package]]
896
+ name = "futures-util"
897
+ version = "0.3.32"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
900
+ dependencies = [
901
+ "futures-channel",
902
+ "futures-core",
903
+ "futures-io",
904
+ "futures-macro",
905
+ "futures-sink",
906
+ "futures-task",
907
+ "memchr",
908
+ "pin-project-lite",
909
+ "slab",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "gemm"
914
+ version = "0.19.0"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
917
+ dependencies = [
918
+ "dyn-stack",
919
+ "gemm-c32",
920
+ "gemm-c64",
921
+ "gemm-common",
922
+ "gemm-f16",
923
+ "gemm-f32",
924
+ "gemm-f64",
925
+ "num-complex",
926
+ "num-traits",
927
+ "paste",
928
+ "raw-cpuid",
929
+ "seq-macro",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "gemm-c32"
934
+ version = "0.19.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
937
+ dependencies = [
938
+ "dyn-stack",
939
+ "gemm-common",
940
+ "num-complex",
941
+ "num-traits",
942
+ "paste",
943
+ "raw-cpuid",
944
+ "seq-macro",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "gemm-c64"
949
+ version = "0.19.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
952
+ dependencies = [
953
+ "dyn-stack",
954
+ "gemm-common",
955
+ "num-complex",
956
+ "num-traits",
957
+ "paste",
958
+ "raw-cpuid",
959
+ "seq-macro",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "gemm-common"
964
+ version = "0.19.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
967
+ dependencies = [
968
+ "bytemuck",
969
+ "dyn-stack",
970
+ "half",
971
+ "libm",
972
+ "num-complex",
973
+ "num-traits",
974
+ "once_cell",
975
+ "paste",
976
+ "pulp",
977
+ "raw-cpuid",
978
+ "rayon",
979
+ "seq-macro",
980
+ "sysctl",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "gemm-f16"
985
+ version = "0.19.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
988
+ dependencies = [
989
+ "dyn-stack",
990
+ "gemm-common",
991
+ "gemm-f32",
992
+ "half",
993
+ "num-complex",
994
+ "num-traits",
995
+ "paste",
996
+ "raw-cpuid",
997
+ "rayon",
998
+ "seq-macro",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "gemm-f32"
1003
+ version = "0.19.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
1006
+ dependencies = [
1007
+ "dyn-stack",
1008
+ "gemm-common",
1009
+ "num-complex",
1010
+ "num-traits",
1011
+ "paste",
1012
+ "raw-cpuid",
1013
+ "seq-macro",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "gemm-f64"
1018
+ version = "0.19.0"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
1021
+ dependencies = [
1022
+ "dyn-stack",
1023
+ "gemm-common",
1024
+ "num-complex",
1025
+ "num-traits",
1026
+ "paste",
1027
+ "raw-cpuid",
1028
+ "seq-macro",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "generic-array"
1033
+ version = "0.14.7"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1036
+ dependencies = [
1037
+ "typenum",
1038
+ "version_check",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "getrandom"
1043
+ version = "0.2.17"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1046
+ dependencies = [
1047
+ "cfg-if",
1048
+ "js-sys",
1049
+ "libc",
1050
+ "wasi",
1051
+ "wasm-bindgen",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "getrandom"
1056
+ version = "0.3.4"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1059
+ dependencies = [
1060
+ "cfg-if",
1061
+ "libc",
1062
+ "r-efi",
1063
+ "wasip2",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "half"
1068
+ version = "2.7.1"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1071
+ dependencies = [
1072
+ "bytemuck",
1073
+ "cfg-if",
1074
+ "crunchy",
1075
+ "num-traits",
1076
+ "rand",
1077
+ "rand_distr",
1078
+ "zerocopy",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "hashbrown"
1083
+ version = "0.16.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1086
+ dependencies = [
1087
+ "allocator-api2",
1088
+ "equivalent",
1089
+ "foldhash",
1090
+ "serde",
1091
+ "serde_core",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "hashbrown"
1096
+ version = "0.17.0"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1099
+
1100
+ [[package]]
1101
+ name = "heck"
1102
+ version = "0.5.0"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1105
+
1106
+ [[package]]
1107
+ name = "hermit-abi"
1108
+ version = "0.5.2"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1111
+
1112
+ [[package]]
1113
+ name = "http"
1114
+ version = "1.4.0"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1117
+ dependencies = [
1118
+ "bytes",
1119
+ "itoa",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "http-body"
1124
+ version = "1.0.1"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1127
+ dependencies = [
1128
+ "bytes",
1129
+ "http",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "http-body-util"
1134
+ version = "0.1.3"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1137
+ dependencies = [
1138
+ "bytes",
1139
+ "futures-core",
1140
+ "http",
1141
+ "http-body",
1142
+ "pin-project-lite",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "httparse"
1147
+ version = "1.10.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1150
+
1151
+ [[package]]
1152
+ name = "hyper"
1153
+ version = "1.9.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1156
+ dependencies = [
1157
+ "atomic-waker",
1158
+ "bytes",
1159
+ "futures-channel",
1160
+ "futures-core",
1161
+ "http",
1162
+ "http-body",
1163
+ "httparse",
1164
+ "itoa",
1165
+ "pin-project-lite",
1166
+ "smallvec",
1167
+ "tokio",
1168
+ "want",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "hyper-util"
1173
+ version = "0.1.20"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1176
+ dependencies = [
1177
+ "base64 0.22.1",
1178
+ "bytes",
1179
+ "futures-channel",
1180
+ "futures-util",
1181
+ "http",
1182
+ "http-body",
1183
+ "hyper",
1184
+ "ipnet",
1185
+ "libc",
1186
+ "percent-encoding",
1187
+ "pin-project-lite",
1188
+ "socket2",
1189
+ "tokio",
1190
+ "tower-service",
1191
+ "tracing",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "iana-time-zone"
1196
+ version = "0.1.65"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1199
+ dependencies = [
1200
+ "android_system_properties",
1201
+ "core-foundation-sys",
1202
+ "iana-time-zone-haiku",
1203
+ "js-sys",
1204
+ "log",
1205
+ "wasm-bindgen",
1206
+ "windows-core",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "iana-time-zone-haiku"
1211
+ version = "0.1.2"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1214
+ dependencies = [
1215
+ "cc",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "icu_collections"
1220
+ version = "2.2.0"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1223
+ dependencies = [
1224
+ "displaydoc",
1225
+ "potential_utf",
1226
+ "utf8_iter",
1227
+ "yoke",
1228
+ "zerofrom",
1229
+ "zerovec",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "icu_locale_core"
1234
+ version = "2.2.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1237
+ dependencies = [
1238
+ "displaydoc",
1239
+ "litemap",
1240
+ "tinystr",
1241
+ "writeable",
1242
+ "zerovec",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "icu_normalizer"
1247
+ version = "2.2.0"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1250
+ dependencies = [
1251
+ "icu_collections",
1252
+ "icu_normalizer_data",
1253
+ "icu_properties",
1254
+ "icu_provider",
1255
+ "smallvec",
1256
+ "zerovec",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "icu_normalizer_data"
1261
+ version = "2.2.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1264
+
1265
+ [[package]]
1266
+ name = "icu_properties"
1267
+ version = "2.2.0"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1270
+ dependencies = [
1271
+ "icu_collections",
1272
+ "icu_locale_core",
1273
+ "icu_properties_data",
1274
+ "icu_provider",
1275
+ "zerotrie",
1276
+ "zerovec",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "icu_properties_data"
1281
+ version = "2.2.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1284
+
1285
+ [[package]]
1286
+ name = "icu_provider"
1287
+ version = "2.2.0"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1290
+ dependencies = [
1291
+ "displaydoc",
1292
+ "icu_locale_core",
1293
+ "writeable",
1294
+ "yoke",
1295
+ "zerofrom",
1296
+ "zerotrie",
1297
+ "zerovec",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "ident_case"
1302
+ version = "1.0.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1305
+
1306
+ [[package]]
1307
+ name = "idna"
1308
+ version = "1.1.0"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1311
+ dependencies = [
1312
+ "idna_adapter",
1313
+ "smallvec",
1314
+ "utf8_iter",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "idna_adapter"
1319
+ version = "1.2.1"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1322
+ dependencies = [
1323
+ "icu_normalizer",
1324
+ "icu_properties",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "indexmap"
1329
+ version = "2.14.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1332
+ dependencies = [
1333
+ "equivalent",
1334
+ "hashbrown 0.17.0",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "indoc"
1339
+ version = "2.0.7"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1342
+ dependencies = [
1343
+ "rustversion",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "ipnet"
1348
+ version = "2.12.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1351
+
1352
+ [[package]]
1353
+ name = "iri-string"
1354
+ version = "0.7.12"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
1357
+ dependencies = [
1358
+ "memchr",
1359
+ "serde",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "is-terminal"
1364
+ version = "0.4.17"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1367
+ dependencies = [
1368
+ "hermit-abi",
1369
+ "libc",
1370
+ "windows-sys",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "is_terminal_polyfill"
1375
+ version = "1.70.2"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1378
+
1379
+ [[package]]
1380
+ name = "iso8601"
1381
+ version = "0.6.3"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "e1082f0c48f143442a1ac6122f67e360ceee130b967af4d50996e5154a45df46"
1384
+ dependencies = [
1385
+ "nom 8.0.0",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "itertools"
1390
+ version = "0.10.5"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1393
+ dependencies = [
1394
+ "either",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "itertools"
1399
+ version = "0.14.0"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1402
+ dependencies = [
1403
+ "either",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "itoa"
1408
+ version = "1.0.18"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1411
+
1412
+ [[package]]
1413
+ name = "js-sys"
1414
+ version = "0.3.95"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
1417
+ dependencies = [
1418
+ "cfg-if",
1419
+ "futures-util",
1420
+ "once_cell",
1421
+ "wasm-bindgen",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "jsonschema"
1426
+ version = "0.18.3"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "fa0f4bea31643be4c6a678e9aa4ae44f0db9e5609d5ca9dc9083d06eb3e9a27a"
1429
+ dependencies = [
1430
+ "ahash",
1431
+ "anyhow",
1432
+ "base64 0.22.1",
1433
+ "bytecount",
1434
+ "clap",
1435
+ "fancy-regex",
1436
+ "fraction",
1437
+ "getrandom 0.2.17",
1438
+ "iso8601",
1439
+ "itoa",
1440
+ "memchr",
1441
+ "num-cmp",
1442
+ "once_cell",
1443
+ "parking_lot",
1444
+ "percent-encoding",
1445
+ "regex",
1446
+ "reqwest",
1447
+ "serde",
1448
+ "serde_json",
1449
+ "time",
1450
+ "url",
1451
+ "uuid",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "lazy_static"
1456
+ version = "1.5.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1459
+
1460
+ [[package]]
1461
+ name = "libc"
1462
+ version = "0.2.186"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1465
+
1466
+ [[package]]
1467
+ name = "libm"
1468
+ version = "0.2.16"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1471
+
1472
+ [[package]]
1473
+ name = "libyml"
1474
+ version = "0.0.5"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "3302702afa434ffa30847a83305f0a69d6abd74293b6554c18ec85c7ef30c980"
1477
+ dependencies = [
1478
+ "anyhow",
1479
+ "version_check",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "litemap"
1484
+ version = "0.8.2"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1487
+
1488
+ [[package]]
1489
+ name = "lock_api"
1490
+ version = "0.4.14"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1493
+ dependencies = [
1494
+ "scopeguard",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "log"
1499
+ version = "0.4.29"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1502
+
1503
+ [[package]]
1504
+ name = "macro_rules_attribute"
1505
+ version = "0.2.2"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
1508
+ dependencies = [
1509
+ "macro_rules_attribute-proc_macro",
1510
+ "paste",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "macro_rules_attribute-proc_macro"
1515
+ version = "0.2.2"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
1518
+
1519
+ [[package]]
1520
+ name = "memchr"
1521
+ version = "2.8.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1524
+
1525
+ [[package]]
1526
+ name = "memmap2"
1527
+ version = "0.9.10"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1530
+ dependencies = [
1531
+ "libc",
1532
+ "stable_deref_trait",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "memoffset"
1537
+ version = "0.9.1"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1540
+ dependencies = [
1541
+ "autocfg",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "minicov"
1546
+ version = "0.3.8"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1549
+ dependencies = [
1550
+ "cc",
1551
+ "walkdir",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "minimal-lexical"
1556
+ version = "0.2.1"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1559
+
1560
+ [[package]]
1561
+ name = "mio"
1562
+ version = "1.2.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1565
+ dependencies = [
1566
+ "libc",
1567
+ "wasi",
1568
+ "windows-sys",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "monostate"
1573
+ version = "0.1.18"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
1576
+ dependencies = [
1577
+ "monostate-impl",
1578
+ "serde",
1579
+ "serde_core",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "monostate-impl"
1584
+ version = "0.1.18"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
1587
+ dependencies = [
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "syn",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "nix"
1595
+ version = "0.31.3"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
1598
+ dependencies = [
1599
+ "bitflags",
1600
+ "cfg-if",
1601
+ "cfg_aliases",
1602
+ "libc",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "nom"
1607
+ version = "7.1.3"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1610
+ dependencies = [
1611
+ "memchr",
1612
+ "minimal-lexical",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "nom"
1617
+ version = "8.0.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1620
+ dependencies = [
1621
+ "memchr",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "nu-ansi-term"
1626
+ version = "0.50.3"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1629
+ dependencies = [
1630
+ "windows-sys",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "num"
1635
+ version = "0.4.3"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1638
+ dependencies = [
1639
+ "num-bigint",
1640
+ "num-complex",
1641
+ "num-integer",
1642
+ "num-iter",
1643
+ "num-rational",
1644
+ "num-traits",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "num-bigint"
1649
+ version = "0.4.6"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1652
+ dependencies = [
1653
+ "num-integer",
1654
+ "num-traits",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "num-cmp"
1659
+ version = "0.1.0"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
1662
+
1663
+ [[package]]
1664
+ name = "num-complex"
1665
+ version = "0.4.6"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1668
+ dependencies = [
1669
+ "bytemuck",
1670
+ "num-traits",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "num-conv"
1675
+ version = "0.2.1"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1678
+
1679
+ [[package]]
1680
+ name = "num-integer"
1681
+ version = "0.1.46"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1684
+ dependencies = [
1685
+ "num-traits",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "num-iter"
1690
+ version = "0.1.45"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1693
+ dependencies = [
1694
+ "autocfg",
1695
+ "num-integer",
1696
+ "num-traits",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "num-rational"
1701
+ version = "0.4.2"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1704
+ dependencies = [
1705
+ "num-bigint",
1706
+ "num-integer",
1707
+ "num-traits",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "num-traits"
1712
+ version = "0.2.19"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1715
+ dependencies = [
1716
+ "autocfg",
1717
+ "libm",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "num_cpus"
1722
+ version = "1.17.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1725
+ dependencies = [
1726
+ "hermit-abi",
1727
+ "libc",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "once_cell"
1732
+ version = "1.21.4"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1735
+
1736
+ [[package]]
1737
+ name = "once_cell_polyfill"
1738
+ version = "1.70.2"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1741
+
1742
+ [[package]]
1743
+ name = "onig"
1744
+ version = "6.5.3"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "0cc3cbf698f9438986c11a880c90a6d04b9de27575afd28bbf45b154b6c709e2"
1747
+ dependencies = [
1748
+ "bitflags",
1749
+ "libc",
1750
+ "once_cell",
1751
+ "onig_sys",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "onig_sys"
1756
+ version = "69.9.3"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "1e68317604e77e53b85896388e1a803c1d21b74c899ec9e5e1112db90735edd7"
1759
+ dependencies = [
1760
+ "cc",
1761
+ "pkg-config",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "oorandom"
1766
+ version = "11.1.5"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1769
+
1770
+ [[package]]
1771
+ name = "parking_lot"
1772
+ version = "0.12.5"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1775
+ dependencies = [
1776
+ "lock_api",
1777
+ "parking_lot_core",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "parking_lot_core"
1782
+ version = "0.9.12"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1785
+ dependencies = [
1786
+ "cfg-if",
1787
+ "libc",
1788
+ "redox_syscall",
1789
+ "smallvec",
1790
+ "windows-link",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "paste"
1795
+ version = "1.0.15"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1798
+
1799
+ [[package]]
1800
+ name = "pastey"
1801
+ version = "0.2.3"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
1804
+
1805
+ [[package]]
1806
+ name = "percent-encoding"
1807
+ version = "2.3.2"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1810
+
1811
+ [[package]]
1812
+ name = "pin-project-lite"
1813
+ version = "0.2.17"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1816
+
1817
+ [[package]]
1818
+ name = "pkg-config"
1819
+ version = "0.3.33"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1822
+
1823
+ [[package]]
1824
+ name = "plotters"
1825
+ version = "0.3.7"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1828
+ dependencies = [
1829
+ "num-traits",
1830
+ "plotters-backend",
1831
+ "plotters-svg",
1832
+ "wasm-bindgen",
1833
+ "web-sys",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "plotters-backend"
1838
+ version = "0.3.7"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1841
+
1842
+ [[package]]
1843
+ name = "plotters-svg"
1844
+ version = "0.3.7"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1847
+ dependencies = [
1848
+ "plotters-backend",
1849
+ ]
1850
+
1851
+ [[package]]
1852
+ name = "portable-atomic"
1853
+ version = "1.13.1"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1856
+
1857
+ [[package]]
1858
+ name = "potential_utf"
1859
+ version = "0.1.5"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1862
+ dependencies = [
1863
+ "zerovec",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "powerfmt"
1868
+ version = "0.2.0"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1871
+
1872
+ [[package]]
1873
+ name = "ppv-lite86"
1874
+ version = "0.2.21"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1877
+ dependencies = [
1878
+ "zerocopy",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "proc-macro2"
1883
+ version = "1.0.106"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1886
+ dependencies = [
1887
+ "unicode-ident",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "process-wrap"
1892
+ version = "9.1.0"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "2e842efad9119158434d193c6682e2ebee4b44d6ad801d7b349623b3f57cdf55"
1895
+ dependencies = [
1896
+ "futures",
1897
+ "indexmap",
1898
+ "nix",
1899
+ "tokio",
1900
+ "tracing",
1901
+ "windows",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "pulp"
1906
+ version = "0.22.2"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
1909
+ dependencies = [
1910
+ "bytemuck",
1911
+ "cfg-if",
1912
+ "libm",
1913
+ "num-complex",
1914
+ "paste",
1915
+ "pulp-wasm-simd-flag",
1916
+ "raw-cpuid",
1917
+ "reborrow",
1918
+ "version_check",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "pulp-wasm-simd-flag"
1923
+ version = "0.1.0"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
1926
+
1927
+ [[package]]
1928
+ name = "pyo3"
1929
+ version = "0.24.2"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1932
+ dependencies = [
1933
+ "cfg-if",
1934
+ "indoc",
1935
+ "libc",
1936
+ "memoffset",
1937
+ "once_cell",
1938
+ "portable-atomic",
1939
+ "pyo3-build-config",
1940
+ "pyo3-ffi",
1941
+ "pyo3-macros",
1942
+ "unindent",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "pyo3-build-config"
1947
+ version = "0.24.2"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1950
+ dependencies = [
1951
+ "once_cell",
1952
+ "target-lexicon",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "pyo3-ffi"
1957
+ version = "0.24.2"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1960
+ dependencies = [
1961
+ "libc",
1962
+ "pyo3-build-config",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "pyo3-macros"
1967
+ version = "0.24.2"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1970
+ dependencies = [
1971
+ "proc-macro2",
1972
+ "pyo3-macros-backend",
1973
+ "quote",
1974
+ "syn",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "pyo3-macros-backend"
1979
+ version = "0.24.2"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1982
+ dependencies = [
1983
+ "heck",
1984
+ "proc-macro2",
1985
+ "pyo3-build-config",
1986
+ "quote",
1987
+ "syn",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "quote"
1992
+ version = "1.0.45"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1995
+ dependencies = [
1996
+ "proc-macro2",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "r-efi"
2001
+ version = "5.3.0"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2004
+
2005
+ [[package]]
2006
+ name = "rand"
2007
+ version = "0.9.4"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2010
+ dependencies = [
2011
+ "rand_chacha",
2012
+ "rand_core",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "rand_chacha"
2017
+ version = "0.9.0"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2020
+ dependencies = [
2021
+ "ppv-lite86",
2022
+ "rand_core",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "rand_core"
2027
+ version = "0.9.5"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2030
+ dependencies = [
2031
+ "getrandom 0.3.4",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "rand_distr"
2036
+ version = "0.5.1"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2039
+ dependencies = [
2040
+ "num-traits",
2041
+ "rand",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "raw-cpuid"
2046
+ version = "11.6.0"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2049
+ dependencies = [
2050
+ "bitflags",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "rayon"
2055
+ version = "1.12.0"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2058
+ dependencies = [
2059
+ "either",
2060
+ "rayon-core",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "rayon-cond"
2065
+ version = "0.4.0"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
2068
+ dependencies = [
2069
+ "either",
2070
+ "itertools 0.14.0",
2071
+ "rayon",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "rayon-core"
2076
+ version = "1.13.0"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2079
+ dependencies = [
2080
+ "crossbeam-deque",
2081
+ "crossbeam-utils",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "reborrow"
2086
+ version = "0.5.5"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
2089
+
2090
+ [[package]]
2091
+ name = "redox_syscall"
2092
+ version = "0.5.18"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2095
+ dependencies = [
2096
+ "bitflags",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "ref-cast"
2101
+ version = "1.0.25"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2104
+ dependencies = [
2105
+ "ref-cast-impl",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "ref-cast-impl"
2110
+ version = "1.0.25"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2113
+ dependencies = [
2114
+ "proc-macro2",
2115
+ "quote",
2116
+ "syn",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "regex"
2121
+ version = "1.12.3"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2124
+ dependencies = [
2125
+ "aho-corasick",
2126
+ "memchr",
2127
+ "regex-automata",
2128
+ "regex-syntax",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "regex-automata"
2133
+ version = "0.4.14"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2136
+ dependencies = [
2137
+ "aho-corasick",
2138
+ "memchr",
2139
+ "regex-syntax",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "regex-syntax"
2144
+ version = "0.8.10"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2147
+
2148
+ [[package]]
2149
+ name = "reqwest"
2150
+ version = "0.12.28"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2153
+ dependencies = [
2154
+ "base64 0.22.1",
2155
+ "bytes",
2156
+ "futures-channel",
2157
+ "futures-core",
2158
+ "futures-util",
2159
+ "http",
2160
+ "http-body",
2161
+ "http-body-util",
2162
+ "hyper",
2163
+ "hyper-util",
2164
+ "js-sys",
2165
+ "log",
2166
+ "percent-encoding",
2167
+ "pin-project-lite",
2168
+ "serde",
2169
+ "serde_json",
2170
+ "serde_urlencoded",
2171
+ "sync_wrapper",
2172
+ "tokio",
2173
+ "tower",
2174
+ "tower-http",
2175
+ "tower-service",
2176
+ "url",
2177
+ "wasm-bindgen",
2178
+ "wasm-bindgen-futures",
2179
+ "web-sys",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "rmcp"
2184
+ version = "1.7.0"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
2187
+ dependencies = [
2188
+ "async-trait",
2189
+ "base64 0.22.1",
2190
+ "chrono",
2191
+ "futures",
2192
+ "pastey",
2193
+ "pin-project-lite",
2194
+ "process-wrap",
2195
+ "rmcp-macros",
2196
+ "schemars",
2197
+ "serde",
2198
+ "serde_json",
2199
+ "thiserror 2.0.18",
2200
+ "tokio",
2201
+ "tokio-stream",
2202
+ "tokio-util",
2203
+ "tracing",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "rmcp-macros"
2208
+ version = "1.7.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
2211
+ dependencies = [
2212
+ "darling 0.23.0",
2213
+ "proc-macro2",
2214
+ "quote",
2215
+ "serde_json",
2216
+ "syn",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "rustversion"
2221
+ version = "1.0.22"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2224
+
2225
+ [[package]]
2226
+ name = "ryu"
2227
+ version = "1.0.23"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2230
+
2231
+ [[package]]
2232
+ name = "safetensors"
2233
+ version = "0.7.0"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "675656c1eabb620b921efea4f9199f97fc86e36dd6ffd1fbbe48d0f59a4987f5"
2236
+ dependencies = [
2237
+ "hashbrown 0.16.1",
2238
+ "serde",
2239
+ "serde_json",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "same-file"
2244
+ version = "1.0.6"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2247
+ dependencies = [
2248
+ "winapi-util",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "schemars"
2253
+ version = "1.2.1"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2256
+ dependencies = [
2257
+ "chrono",
2258
+ "dyn-clone",
2259
+ "ref-cast",
2260
+ "schemars_derive",
2261
+ "serde",
2262
+ "serde_json",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "schemars_derive"
2267
+ version = "1.2.1"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
2270
+ dependencies = [
2271
+ "proc-macro2",
2272
+ "quote",
2273
+ "serde_derive_internals",
2274
+ "syn",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "scopeguard"
2279
+ version = "1.2.0"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2282
+
2283
+ [[package]]
2284
+ name = "seq-macro"
2285
+ version = "0.3.6"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2288
+
2289
+ [[package]]
2290
+ name = "serde"
2291
+ version = "1.0.228"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2294
+ dependencies = [
2295
+ "serde_core",
2296
+ "serde_derive",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "serde_core"
2301
+ version = "1.0.228"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2304
+ dependencies = [
2305
+ "serde_derive",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "serde_derive"
2310
+ version = "1.0.228"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2313
+ dependencies = [
2314
+ "proc-macro2",
2315
+ "quote",
2316
+ "syn",
2317
+ ]
2318
+
2319
+ [[package]]
2320
+ name = "serde_derive_internals"
2321
+ version = "0.29.1"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2324
+ dependencies = [
2325
+ "proc-macro2",
2326
+ "quote",
2327
+ "syn",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "serde_json"
2332
+ version = "1.0.149"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2335
+ dependencies = [
2336
+ "itoa",
2337
+ "memchr",
2338
+ "serde",
2339
+ "serde_core",
2340
+ "zmij",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "serde_spanned"
2345
+ version = "1.1.1"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2348
+ dependencies = [
2349
+ "serde_core",
2350
+ ]
2351
+
2352
+ [[package]]
2353
+ name = "serde_urlencoded"
2354
+ version = "0.7.1"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2357
+ dependencies = [
2358
+ "form_urlencoded",
2359
+ "itoa",
2360
+ "ryu",
2361
+ "serde",
2362
+ ]
2363
+
2364
+ [[package]]
2365
+ name = "serde_yml"
2366
+ version = "0.0.12"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "59e2dd588bf1597a252c3b920e0143eb99b0f76e4e082f4c92ce34fbc9e71ddd"
2369
+ dependencies = [
2370
+ "indexmap",
2371
+ "itoa",
2372
+ "libyml",
2373
+ "memchr",
2374
+ "ryu",
2375
+ "serde",
2376
+ "version_check",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "sha2"
2381
+ version = "0.10.9"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2384
+ dependencies = [
2385
+ "cfg-if",
2386
+ "cpufeatures",
2387
+ "digest",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "shlex"
2392
+ version = "1.3.0"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2395
+
2396
+ [[package]]
2397
+ name = "signal-hook-registry"
2398
+ version = "1.4.8"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2401
+ dependencies = [
2402
+ "errno",
2403
+ "libc",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "slab"
2408
+ version = "0.4.12"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2411
+
2412
+ [[package]]
2413
+ name = "smallvec"
2414
+ version = "1.15.1"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2417
+
2418
+ [[package]]
2419
+ name = "socket2"
2420
+ version = "0.6.3"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2423
+ dependencies = [
2424
+ "libc",
2425
+ "windows-sys",
2426
+ ]
2427
+
2428
+ [[package]]
2429
+ name = "spm_precompiled"
2430
+ version = "0.1.4"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
2433
+ dependencies = [
2434
+ "base64 0.13.1",
2435
+ "nom 7.1.3",
2436
+ "serde",
2437
+ "unicode-segmentation",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "stable_deref_trait"
2442
+ version = "1.2.1"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2445
+
2446
+ [[package]]
2447
+ name = "static_assertions"
2448
+ version = "1.1.0"
2449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2450
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2451
+
2452
+ [[package]]
2453
+ name = "strsim"
2454
+ version = "0.11.1"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2457
+
2458
+ [[package]]
2459
+ name = "syn"
2460
+ version = "2.0.117"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2463
+ dependencies = [
2464
+ "proc-macro2",
2465
+ "quote",
2466
+ "unicode-ident",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "sync_wrapper"
2471
+ version = "1.0.2"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2474
+ dependencies = [
2475
+ "futures-core",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "synstructure"
2480
+ version = "0.13.2"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2483
+ dependencies = [
2484
+ "proc-macro2",
2485
+ "quote",
2486
+ "syn",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "sysctl"
2491
+ version = "0.6.0"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
2494
+ dependencies = [
2495
+ "bitflags",
2496
+ "byteorder",
2497
+ "enum-as-inner",
2498
+ "libc",
2499
+ "thiserror 1.0.69",
2500
+ "walkdir",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "target-lexicon"
2505
+ version = "0.13.5"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2508
+
2509
+ [[package]]
2510
+ name = "thiserror"
2511
+ version = "1.0.69"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2514
+ dependencies = [
2515
+ "thiserror-impl 1.0.69",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "thiserror"
2520
+ version = "2.0.18"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2523
+ dependencies = [
2524
+ "thiserror-impl 2.0.18",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "thiserror-impl"
2529
+ version = "1.0.69"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2532
+ dependencies = [
2533
+ "proc-macro2",
2534
+ "quote",
2535
+ "syn",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "thiserror-impl"
2540
+ version = "2.0.18"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2543
+ dependencies = [
2544
+ "proc-macro2",
2545
+ "quote",
2546
+ "syn",
2547
+ ]
2548
+
2549
+ [[package]]
2550
+ name = "time"
2551
+ version = "0.3.47"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2554
+ dependencies = [
2555
+ "deranged",
2556
+ "num-conv",
2557
+ "powerfmt",
2558
+ "serde_core",
2559
+ "time-core",
2560
+ "time-macros",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "time-core"
2565
+ version = "0.1.8"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2568
+
2569
+ [[package]]
2570
+ name = "time-macros"
2571
+ version = "0.2.27"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2574
+ dependencies = [
2575
+ "num-conv",
2576
+ "time-core",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "tinystr"
2581
+ version = "0.8.3"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2584
+ dependencies = [
2585
+ "displaydoc",
2586
+ "zerovec",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "tinytemplate"
2591
+ version = "1.2.1"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2594
+ dependencies = [
2595
+ "serde",
2596
+ "serde_json",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "tokenizers"
2601
+ version = "0.22.2"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "b238e22d44a15349529690fb07bd645cf58149a1b1e44d6cb5bd1641ff1a6223"
2604
+ dependencies = [
2605
+ "ahash",
2606
+ "aho-corasick",
2607
+ "compact_str",
2608
+ "dary_heap",
2609
+ "derive_builder",
2610
+ "esaxx-rs",
2611
+ "getrandom 0.3.4",
2612
+ "itertools 0.14.0",
2613
+ "log",
2614
+ "macro_rules_attribute",
2615
+ "monostate",
2616
+ "onig",
2617
+ "paste",
2618
+ "rand",
2619
+ "rayon",
2620
+ "rayon-cond",
2621
+ "regex",
2622
+ "regex-syntax",
2623
+ "serde",
2624
+ "serde_json",
2625
+ "spm_precompiled",
2626
+ "thiserror 2.0.18",
2627
+ "unicode-normalization-alignments",
2628
+ "unicode-segmentation",
2629
+ "unicode_categories",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "tokio"
2634
+ version = "1.52.1"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
2637
+ dependencies = [
2638
+ "bytes",
2639
+ "libc",
2640
+ "mio",
2641
+ "pin-project-lite",
2642
+ "signal-hook-registry",
2643
+ "socket2",
2644
+ "tokio-macros",
2645
+ "windows-sys",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "tokio-macros"
2650
+ version = "2.7.0"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2653
+ dependencies = [
2654
+ "proc-macro2",
2655
+ "quote",
2656
+ "syn",
2657
+ ]
2658
+
2659
+ [[package]]
2660
+ name = "tokio-stream"
2661
+ version = "0.1.18"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2664
+ dependencies = [
2665
+ "futures-core",
2666
+ "pin-project-lite",
2667
+ "tokio",
2668
+ ]
2669
+
2670
+ [[package]]
2671
+ name = "tokio-util"
2672
+ version = "0.7.18"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2675
+ dependencies = [
2676
+ "bytes",
2677
+ "futures-core",
2678
+ "futures-sink",
2679
+ "pin-project-lite",
2680
+ "tokio",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "toml"
2685
+ version = "1.1.2+spec-1.1.0"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
2688
+ dependencies = [
2689
+ "indexmap",
2690
+ "serde_core",
2691
+ "serde_spanned",
2692
+ "toml_datetime",
2693
+ "toml_parser",
2694
+ "toml_writer",
2695
+ "winnow",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "toml_datetime"
2700
+ version = "1.1.1+spec-1.1.0"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2703
+ dependencies = [
2704
+ "serde_core",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "toml_parser"
2709
+ version = "1.1.2+spec-1.1.0"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2712
+ dependencies = [
2713
+ "winnow",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "toml_writer"
2718
+ version = "1.1.1+spec-1.1.0"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2721
+
2722
+ [[package]]
2723
+ name = "tower"
2724
+ version = "0.5.3"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2727
+ dependencies = [
2728
+ "futures-core",
2729
+ "futures-util",
2730
+ "pin-project-lite",
2731
+ "sync_wrapper",
2732
+ "tokio",
2733
+ "tower-layer",
2734
+ "tower-service",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "tower-http"
2739
+ version = "0.6.8"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2742
+ dependencies = [
2743
+ "bitflags",
2744
+ "bytes",
2745
+ "futures-util",
2746
+ "http",
2747
+ "http-body",
2748
+ "iri-string",
2749
+ "pin-project-lite",
2750
+ "tower",
2751
+ "tower-layer",
2752
+ "tower-service",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "tower-layer"
2757
+ version = "0.3.3"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2760
+
2761
+ [[package]]
2762
+ name = "tower-service"
2763
+ version = "0.3.3"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2766
+
2767
+ [[package]]
2768
+ name = "tracing"
2769
+ version = "0.1.44"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2772
+ dependencies = [
2773
+ "pin-project-lite",
2774
+ "tracing-attributes",
2775
+ "tracing-core",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "tracing-attributes"
2780
+ version = "0.1.31"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2783
+ dependencies = [
2784
+ "proc-macro2",
2785
+ "quote",
2786
+ "syn",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "tracing-core"
2791
+ version = "0.1.36"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2794
+ dependencies = [
2795
+ "once_cell",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "try-lock"
2800
+ version = "0.2.5"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2803
+
2804
+ [[package]]
2805
+ name = "typed-path"
2806
+ version = "0.12.3"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
2809
+
2810
+ [[package]]
2811
+ name = "typenum"
2812
+ version = "1.20.0"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2815
+
2816
+ [[package]]
2817
+ name = "unicode-ident"
2818
+ version = "1.0.24"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2821
+
2822
+ [[package]]
2823
+ name = "unicode-normalization-alignments"
2824
+ version = "0.1.12"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
2827
+ dependencies = [
2828
+ "smallvec",
2829
+ ]
2830
+
2831
+ [[package]]
2832
+ name = "unicode-segmentation"
2833
+ version = "1.13.2"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2836
+
2837
+ [[package]]
2838
+ name = "unicode_categories"
2839
+ version = "0.1.1"
2840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2841
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2842
+
2843
+ [[package]]
2844
+ name = "unindent"
2845
+ version = "0.2.4"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2848
+
2849
+ [[package]]
2850
+ name = "url"
2851
+ version = "2.5.8"
2852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2853
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2854
+ dependencies = [
2855
+ "form_urlencoded",
2856
+ "idna",
2857
+ "percent-encoding",
2858
+ "serde",
2859
+ ]
2860
+
2861
+ [[package]]
2862
+ name = "utf8_iter"
2863
+ version = "1.0.4"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2866
+
2867
+ [[package]]
2868
+ name = "utf8parse"
2869
+ version = "0.2.2"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2872
+
2873
+ [[package]]
2874
+ name = "uuid"
2875
+ version = "1.23.1"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
2878
+ dependencies = [
2879
+ "js-sys",
2880
+ "wasm-bindgen",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "version_check"
2885
+ version = "0.9.5"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2888
+
2889
+ [[package]]
2890
+ name = "walkdir"
2891
+ version = "2.5.0"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2894
+ dependencies = [
2895
+ "same-file",
2896
+ "winapi-util",
2897
+ ]
2898
+
2899
+ [[package]]
2900
+ name = "want"
2901
+ version = "0.3.1"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2904
+ dependencies = [
2905
+ "try-lock",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "wasi"
2910
+ version = "0.11.1+wasi-snapshot-preview1"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2913
+
2914
+ [[package]]
2915
+ name = "wasip2"
2916
+ version = "1.0.3+wasi-0.2.9"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2919
+ dependencies = [
2920
+ "wit-bindgen",
2921
+ ]
2922
+
2923
+ [[package]]
2924
+ name = "wasm-bindgen"
2925
+ version = "0.2.118"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
2928
+ dependencies = [
2929
+ "cfg-if",
2930
+ "once_cell",
2931
+ "rustversion",
2932
+ "wasm-bindgen-macro",
2933
+ "wasm-bindgen-shared",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "wasm-bindgen-futures"
2938
+ version = "0.4.68"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
2941
+ dependencies = [
2942
+ "js-sys",
2943
+ "wasm-bindgen",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "wasm-bindgen-macro"
2948
+ version = "0.2.118"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
2951
+ dependencies = [
2952
+ "quote",
2953
+ "wasm-bindgen-macro-support",
2954
+ ]
2955
+
2956
+ [[package]]
2957
+ name = "wasm-bindgen-macro-support"
2958
+ version = "0.2.118"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
2961
+ dependencies = [
2962
+ "bumpalo",
2963
+ "proc-macro2",
2964
+ "quote",
2965
+ "syn",
2966
+ "wasm-bindgen-shared",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "wasm-bindgen-shared"
2971
+ version = "0.2.118"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
2974
+ dependencies = [
2975
+ "unicode-ident",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "wasm-bindgen-test"
2980
+ version = "0.3.68"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "6bb55e2540ad1c56eec35fd63e2aea15f83b11ce487fd2de9ad11578dfc047ea"
2983
+ dependencies = [
2984
+ "async-trait",
2985
+ "cast",
2986
+ "js-sys",
2987
+ "libm",
2988
+ "minicov",
2989
+ "nu-ansi-term",
2990
+ "num-traits",
2991
+ "oorandom",
2992
+ "serde",
2993
+ "serde_json",
2994
+ "wasm-bindgen",
2995
+ "wasm-bindgen-futures",
2996
+ "wasm-bindgen-test-macro",
2997
+ "wasm-bindgen-test-shared",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "wasm-bindgen-test-macro"
3002
+ version = "0.3.68"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "caf0ca1bd612b988616bac1ab34c4e4290ef18f7148a1d8b7f31c150080e9295"
3005
+ dependencies = [
3006
+ "proc-macro2",
3007
+ "quote",
3008
+ "syn",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "wasm-bindgen-test-shared"
3013
+ version = "0.2.118"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "23cda5ecc67248c48d3e705d3e03e00af905769b78b9d2a1678b663b8b9d4472"
3016
+
3017
+ [[package]]
3018
+ name = "web-sys"
3019
+ version = "0.3.95"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
3022
+ dependencies = [
3023
+ "js-sys",
3024
+ "wasm-bindgen",
3025
+ ]
3026
+
3027
+ [[package]]
3028
+ name = "winapi-util"
3029
+ version = "0.1.11"
3030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3031
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3032
+ dependencies = [
3033
+ "windows-sys",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "windows"
3038
+ version = "0.62.2"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
3041
+ dependencies = [
3042
+ "windows-collections",
3043
+ "windows-core",
3044
+ "windows-future",
3045
+ "windows-numerics",
3046
+ ]
3047
+
3048
+ [[package]]
3049
+ name = "windows-collections"
3050
+ version = "0.3.2"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
3053
+ dependencies = [
3054
+ "windows-core",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "windows-core"
3059
+ version = "0.62.2"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3062
+ dependencies = [
3063
+ "windows-implement",
3064
+ "windows-interface",
3065
+ "windows-link",
3066
+ "windows-result",
3067
+ "windows-strings",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "windows-future"
3072
+ version = "0.3.2"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
3075
+ dependencies = [
3076
+ "windows-core",
3077
+ "windows-link",
3078
+ "windows-threading",
3079
+ ]
3080
+
3081
+ [[package]]
3082
+ name = "windows-implement"
3083
+ version = "0.60.2"
3084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3085
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3086
+ dependencies = [
3087
+ "proc-macro2",
3088
+ "quote",
3089
+ "syn",
3090
+ ]
3091
+
3092
+ [[package]]
3093
+ name = "windows-interface"
3094
+ version = "0.59.3"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3097
+ dependencies = [
3098
+ "proc-macro2",
3099
+ "quote",
3100
+ "syn",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "windows-link"
3105
+ version = "0.2.1"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3108
+
3109
+ [[package]]
3110
+ name = "windows-numerics"
3111
+ version = "0.3.1"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
3114
+ dependencies = [
3115
+ "windows-core",
3116
+ "windows-link",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "windows-result"
3121
+ version = "0.4.1"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3124
+ dependencies = [
3125
+ "windows-link",
3126
+ ]
3127
+
3128
+ [[package]]
3129
+ name = "windows-strings"
3130
+ version = "0.5.1"
3131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3132
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3133
+ dependencies = [
3134
+ "windows-link",
3135
+ ]
3136
+
3137
+ [[package]]
3138
+ name = "windows-sys"
3139
+ version = "0.61.2"
3140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3141
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3142
+ dependencies = [
3143
+ "windows-link",
3144
+ ]
3145
+
3146
+ [[package]]
3147
+ name = "windows-threading"
3148
+ version = "0.2.1"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
3151
+ dependencies = [
3152
+ "windows-link",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "winnow"
3157
+ version = "1.0.2"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
3160
+
3161
+ [[package]]
3162
+ name = "wit-bindgen"
3163
+ version = "0.57.1"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3166
+
3167
+ [[package]]
3168
+ name = "writeable"
3169
+ version = "0.6.3"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3172
+
3173
+ [[package]]
3174
+ name = "yoke"
3175
+ version = "0.8.2"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3178
+ dependencies = [
3179
+ "stable_deref_trait",
3180
+ "yoke-derive",
3181
+ "zerofrom",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "yoke-derive"
3186
+ version = "0.8.2"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3189
+ dependencies = [
3190
+ "proc-macro2",
3191
+ "quote",
3192
+ "syn",
3193
+ "synstructure",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "zerocopy"
3198
+ version = "0.8.48"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3201
+ dependencies = [
3202
+ "zerocopy-derive",
3203
+ ]
3204
+
3205
+ [[package]]
3206
+ name = "zerocopy-derive"
3207
+ version = "0.8.48"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3210
+ dependencies = [
3211
+ "proc-macro2",
3212
+ "quote",
3213
+ "syn",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "zerofrom"
3218
+ version = "0.1.7"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
3221
+ dependencies = [
3222
+ "zerofrom-derive",
3223
+ ]
3224
+
3225
+ [[package]]
3226
+ name = "zerofrom-derive"
3227
+ version = "0.1.7"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3230
+ dependencies = [
3231
+ "proc-macro2",
3232
+ "quote",
3233
+ "syn",
3234
+ "synstructure",
3235
+ ]
3236
+
3237
+ [[package]]
3238
+ name = "zerotrie"
3239
+ version = "0.2.4"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3242
+ dependencies = [
3243
+ "displaydoc",
3244
+ "yoke",
3245
+ "zerofrom",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "zerovec"
3250
+ version = "0.11.6"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3253
+ dependencies = [
3254
+ "yoke",
3255
+ "zerofrom",
3256
+ "zerovec-derive",
3257
+ ]
3258
+
3259
+ [[package]]
3260
+ name = "zerovec-derive"
3261
+ version = "0.11.3"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3264
+ dependencies = [
3265
+ "proc-macro2",
3266
+ "quote",
3267
+ "syn",
3268
+ ]
3269
+
3270
+ [[package]]
3271
+ name = "zip"
3272
+ version = "7.2.0"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
3275
+ dependencies = [
3276
+ "crc32fast",
3277
+ "indexmap",
3278
+ "memchr",
3279
+ "typed-path",
3280
+ ]
3281
+
3282
+ [[package]]
3283
+ name = "zmij"
3284
+ version = "1.0.21"
3285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3286
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"