headson 0.8.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- headson-0.8.0/Cargo.lock +2281 -0
- headson-0.8.0/Cargo.toml +150 -0
- headson-0.8.0/PKG-INFO +295 -0
- headson-0.8.0/README.md +280 -0
- headson-0.8.0/docs/assets/algorithm.svg +81 -0
- headson-0.8.0/docs/assets/logo.png +0 -0
- headson-0.8.0/docs/assets/logo.svg +83 -0
- headson-0.8.0/docs/assets/tapes/demo.gif +0 -0
- headson-0.8.0/pyproject.toml +47 -0
- headson-0.8.0/python/Cargo.toml +15 -0
- headson-0.8.0/python/README.md +57 -0
- headson-0.8.0/python/headson/__init__.py +6 -0
- headson-0.8.0/python/src/lib.rs +172 -0
- headson-0.8.0/src/cli/args.rs +268 -0
- headson-0.8.0/src/cli/budget.rs +140 -0
- headson-0.8.0/src/cli/mod.rs +3 -0
- headson-0.8.0/src/cli/run.rs +537 -0
- headson-0.8.0/src/debug.rs +522 -0
- headson-0.8.0/src/grep.rs +95 -0
- headson-0.8.0/src/ingest/fileset.rs +140 -0
- headson-0.8.0/src/ingest/format.rs +53 -0
- headson-0.8.0/src/ingest/formats/json/builder.rs +276 -0
- headson-0.8.0/src/ingest/formats/json/mod.rs +92 -0
- headson-0.8.0/src/ingest/formats/json/samplers/default.rs +215 -0
- headson-0.8.0/src/ingest/formats/json/samplers/head.rs +80 -0
- headson-0.8.0/src/ingest/formats/json/samplers/mod.rs +35 -0
- headson-0.8.0/src/ingest/formats/json/samplers/tail.rs +110 -0
- headson-0.8.0/src/ingest/formats/mod.rs +9 -0
- headson-0.8.0/src/ingest/formats/text/mod.rs +636 -0
- headson-0.8.0/src/ingest/formats/yaml/mod.rs +276 -0
- headson-0.8.0/src/ingest/mod.rs +76 -0
- headson-0.8.0/src/ingest/sampling/mod.rs +142 -0
- headson-0.8.0/src/lib.rs +78 -0
- headson-0.8.0/src/main.rs +24 -0
- headson-0.8.0/src/order/build.rs +1053 -0
- headson-0.8.0/src/order/mod.rs +9 -0
- headson-0.8.0/src/order/scoring.rs +48 -0
- headson-0.8.0/src/order/snapshots/headson__order__build__tests__order_empty_array_order.snap +6 -0
- headson-0.8.0/src/order/snapshots/headson__order__build__tests__order_single_string_array_order.snap +9 -0
- headson-0.8.0/src/order/types.rs +160 -0
- headson-0.8.0/src/pruner/budget.rs +317 -0
- headson-0.8.0/src/pruner/mod.rs +2 -0
- headson-0.8.0/src/pruner/search.rs +17 -0
- headson-0.8.0/src/serialization/color.rs +106 -0
- headson-0.8.0/src/serialization/fileset.rs +156 -0
- headson-0.8.0/src/serialization/highlight.rs +147 -0
- headson-0.8.0/src/serialization/mod.rs +1828 -0
- headson-0.8.0/src/serialization/output.rs +101 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__arena_render_empty.snap +5 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__arena_render_empty_yaml.snap +6 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__arena_render_single.snap +7 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__arena_render_single_yaml.snap +5 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_internal_gaps_yaml.snap +9 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_js_head.snap +9 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_js_tail.snap +9 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_pseudo_head.snap +9 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_pseudo_tail.snap +9 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_yaml_head.snap +7 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_yaml_tail.snap +7 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__inline_open_array_in_object_json.snap +10 -0
- headson-0.8.0/src/serialization/snapshots/headson__serialization__tests__inline_open_array_in_object_yaml.snap +9 -0
- headson-0.8.0/src/serialization/templates/code.rs +107 -0
- headson-0.8.0/src/serialization/templates/core.rs +130 -0
- headson-0.8.0/src/serialization/templates/js.rs +108 -0
- headson-0.8.0/src/serialization/templates/json.rs +32 -0
- headson-0.8.0/src/serialization/templates/mod.rs +70 -0
- headson-0.8.0/src/serialization/templates/pseudo.rs +90 -0
- headson-0.8.0/src/serialization/templates/text.rs +43 -0
- headson-0.8.0/src/serialization/templates/yaml.rs +269 -0
- headson-0.8.0/src/serialization/types.rs +68 -0
- headson-0.8.0/src/sorting.rs +189 -0
- headson-0.8.0/src/utils/extensions.rs +40 -0
- headson-0.8.0/src/utils/graph.rs +80 -0
- headson-0.8.0/src/utils/json.rs +11 -0
- headson-0.8.0/src/utils/measure.rs +62 -0
- headson-0.8.0/src/utils/mod.rs +6 -0
- headson-0.8.0/src/utils/text.rs +31 -0
- headson-0.8.0/src/utils/tree_arena.rs +62 -0
- headson-0.8.0/tests/fixtures/json/JSONTestSuite/LICENSE +21 -0
- headson-0.8.0/tests/fixtures/json/JSONTestSuite/README.md +3 -0
headson-0.8.0/Cargo.lock
ADDED
|
@@ -0,0 +1,2281 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "android_system_properties"
|
|
28
|
+
version = "0.1.5"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"libc",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstream"
|
|
37
|
+
version = "0.6.21"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"anstyle",
|
|
42
|
+
"anstyle-parse",
|
|
43
|
+
"anstyle-query",
|
|
44
|
+
"anstyle-wincon",
|
|
45
|
+
"colorchoice",
|
|
46
|
+
"is_terminal_polyfill",
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle"
|
|
52
|
+
version = "1.0.13"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-parse"
|
|
58
|
+
version = "0.2.7"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"utf8parse",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-query"
|
|
67
|
+
version = "1.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"windows-sys 0.61.2",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-wincon"
|
|
76
|
+
version = "3.0.11"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"once_cell_polyfill",
|
|
82
|
+
"windows-sys 0.61.2",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anyhow"
|
|
87
|
+
version = "1.0.100"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "arraydeque"
|
|
93
|
+
version = "0.5.1"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "assert_cmd"
|
|
99
|
+
version = "2.1.1"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"anstyle",
|
|
104
|
+
"bstr",
|
|
105
|
+
"libc",
|
|
106
|
+
"predicates",
|
|
107
|
+
"predicates-core",
|
|
108
|
+
"predicates-tree",
|
|
109
|
+
"wait-timeout",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "autocfg"
|
|
114
|
+
version = "1.5.0"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "base64"
|
|
120
|
+
version = "0.22.1"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bincode"
|
|
126
|
+
version = "1.3.3"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"serde",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "bitflags"
|
|
135
|
+
version = "1.3.2"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "bitflags"
|
|
141
|
+
version = "2.10.0"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "block-buffer"
|
|
147
|
+
version = "0.10.4"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"generic-array",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "bstr"
|
|
156
|
+
version = "1.12.1"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"memchr",
|
|
161
|
+
"regex-automata",
|
|
162
|
+
"serde",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "bumpalo"
|
|
167
|
+
version = "3.19.0"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "byteorder"
|
|
173
|
+
version = "1.5.0"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "cc"
|
|
179
|
+
version = "1.2.47"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"find-msvc-tools",
|
|
184
|
+
"jobserver",
|
|
185
|
+
"libc",
|
|
186
|
+
"shlex",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "cfg-if"
|
|
191
|
+
version = "1.0.4"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "chrono"
|
|
197
|
+
version = "0.4.42"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"iana-time-zone",
|
|
202
|
+
"js-sys",
|
|
203
|
+
"num-traits",
|
|
204
|
+
"wasm-bindgen",
|
|
205
|
+
"windows-link",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "clap"
|
|
210
|
+
version = "4.5.53"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"clap_builder",
|
|
215
|
+
"clap_derive",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "clap_builder"
|
|
220
|
+
version = "4.5.53"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"anstream",
|
|
225
|
+
"anstyle",
|
|
226
|
+
"clap_lex",
|
|
227
|
+
"strsim",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "clap_derive"
|
|
232
|
+
version = "4.5.49"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"heck",
|
|
237
|
+
"proc-macro2",
|
|
238
|
+
"quote",
|
|
239
|
+
"syn",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "clap_lex"
|
|
244
|
+
version = "0.7.6"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "colorchoice"
|
|
250
|
+
version = "1.0.4"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "console"
|
|
256
|
+
version = "0.15.11"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"encode_unicode",
|
|
261
|
+
"libc",
|
|
262
|
+
"once_cell",
|
|
263
|
+
"windows-sys 0.59.0",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "content_inspector"
|
|
268
|
+
version = "0.2.4"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"memchr",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "core-foundation-sys"
|
|
277
|
+
version = "0.8.7"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "cpufeatures"
|
|
283
|
+
version = "0.2.17"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"libc",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "crc32fast"
|
|
292
|
+
version = "1.5.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"cfg-if",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "crossbeam-deque"
|
|
301
|
+
version = "0.8.6"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"crossbeam-epoch",
|
|
306
|
+
"crossbeam-utils",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "crossbeam-epoch"
|
|
311
|
+
version = "0.9.18"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"crossbeam-utils",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "crossbeam-utils"
|
|
320
|
+
version = "0.8.21"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "crypto-common"
|
|
326
|
+
version = "0.1.7"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"generic-array",
|
|
331
|
+
"typenum",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "deranged"
|
|
336
|
+
version = "0.5.5"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"powerfmt",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "difflib"
|
|
345
|
+
version = "0.4.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "digest"
|
|
351
|
+
version = "0.10.7"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"block-buffer",
|
|
356
|
+
"crypto-common",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "directories"
|
|
361
|
+
version = "6.0.0"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"dirs-sys",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "dirs-sys"
|
|
370
|
+
version = "0.5.0"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"libc",
|
|
375
|
+
"option-ext",
|
|
376
|
+
"redox_users",
|
|
377
|
+
"windows-sys 0.61.2",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "displaydoc"
|
|
382
|
+
version = "0.2.5"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"proc-macro2",
|
|
387
|
+
"quote",
|
|
388
|
+
"syn",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "either"
|
|
393
|
+
version = "1.15.0"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "encode_unicode"
|
|
399
|
+
version = "1.0.0"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "encoding_rs"
|
|
405
|
+
version = "0.8.35"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"cfg-if",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "equivalent"
|
|
414
|
+
version = "1.0.2"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "errno"
|
|
420
|
+
version = "0.3.14"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"libc",
|
|
425
|
+
"windows-sys 0.61.2",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "fastrand"
|
|
430
|
+
version = "2.3.0"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "filetime"
|
|
436
|
+
version = "0.2.26"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"cfg-if",
|
|
441
|
+
"libc",
|
|
442
|
+
"libredox",
|
|
443
|
+
"windows-sys 0.60.2",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "find-msvc-tools"
|
|
448
|
+
version = "0.1.5"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "flate2"
|
|
454
|
+
version = "1.1.5"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"crc32fast",
|
|
459
|
+
"miniz_oxide",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "float-cmp"
|
|
464
|
+
version = "0.10.0"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"num-traits",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "fnv"
|
|
473
|
+
version = "1.0.7"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "foldhash"
|
|
479
|
+
version = "0.1.5"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "foldhash"
|
|
485
|
+
version = "0.2.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "form_urlencoded"
|
|
491
|
+
version = "1.2.2"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"percent-encoding",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "frecenfile"
|
|
500
|
+
version = "0.4.0"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "29d5545a101a90b6de8178f69dbb55ac0c0376577e533f34c81a1ce697efadac"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"anyhow",
|
|
505
|
+
"bincode",
|
|
506
|
+
"chrono",
|
|
507
|
+
"clap",
|
|
508
|
+
"directories",
|
|
509
|
+
"git2",
|
|
510
|
+
"hex",
|
|
511
|
+
"rayon",
|
|
512
|
+
"rustc-hash",
|
|
513
|
+
"serde",
|
|
514
|
+
"sha2",
|
|
515
|
+
"sled",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "fs2"
|
|
520
|
+
version = "0.4.3"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"libc",
|
|
525
|
+
"winapi",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "fxhash"
|
|
530
|
+
version = "0.2.1"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"byteorder",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "generic-array"
|
|
539
|
+
version = "0.14.7"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"typenum",
|
|
544
|
+
"version_check",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "getrandom"
|
|
549
|
+
version = "0.2.16"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"cfg-if",
|
|
554
|
+
"libc",
|
|
555
|
+
"wasi",
|
|
556
|
+
]
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "getrandom"
|
|
560
|
+
version = "0.3.4"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"cfg-if",
|
|
565
|
+
"libc",
|
|
566
|
+
"r-efi",
|
|
567
|
+
"wasip2",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "git2"
|
|
572
|
+
version = "0.20.2"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "2deb07a133b1520dc1a5690e9bd08950108873d7ed5de38dcc74d3b5ebffa110"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"bitflags 2.10.0",
|
|
577
|
+
"libc",
|
|
578
|
+
"libgit2-sys",
|
|
579
|
+
"log",
|
|
580
|
+
"openssl-probe",
|
|
581
|
+
"openssl-sys",
|
|
582
|
+
"url",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "globset"
|
|
587
|
+
version = "0.4.18"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"aho-corasick",
|
|
592
|
+
"bstr",
|
|
593
|
+
"log",
|
|
594
|
+
"regex-automata",
|
|
595
|
+
"regex-syntax",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "halfbrown"
|
|
600
|
+
version = "0.4.0"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"hashbrown 0.16.1",
|
|
605
|
+
"serde",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "hashbrown"
|
|
610
|
+
version = "0.15.5"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"foldhash 0.1.5",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "hashbrown"
|
|
619
|
+
version = "0.16.1"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"allocator-api2",
|
|
624
|
+
"equivalent",
|
|
625
|
+
"foldhash 0.2.0",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "hashlink"
|
|
630
|
+
version = "0.10.0"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"hashbrown 0.15.5",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "headson"
|
|
639
|
+
version = "0.8.0"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"anyhow",
|
|
642
|
+
"assert_cmd",
|
|
643
|
+
"clap",
|
|
644
|
+
"content_inspector",
|
|
645
|
+
"filetime",
|
|
646
|
+
"frecenfile",
|
|
647
|
+
"git2",
|
|
648
|
+
"ignore",
|
|
649
|
+
"insta",
|
|
650
|
+
"once_cell",
|
|
651
|
+
"rand",
|
|
652
|
+
"rand_chacha",
|
|
653
|
+
"regex",
|
|
654
|
+
"serde",
|
|
655
|
+
"serde_json",
|
|
656
|
+
"serde_yaml",
|
|
657
|
+
"simd-json",
|
|
658
|
+
"syntect",
|
|
659
|
+
"tempfile",
|
|
660
|
+
"test_each_file",
|
|
661
|
+
"unicode-segmentation",
|
|
662
|
+
"yaml-rust2",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "headson-python"
|
|
667
|
+
version = "0.8.0"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"anyhow",
|
|
670
|
+
"headson",
|
|
671
|
+
"pyo3",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "heck"
|
|
676
|
+
version = "0.5.0"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "hex"
|
|
682
|
+
version = "0.4.3"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "iana-time-zone"
|
|
688
|
+
version = "0.1.64"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"android_system_properties",
|
|
693
|
+
"core-foundation-sys",
|
|
694
|
+
"iana-time-zone-haiku",
|
|
695
|
+
"js-sys",
|
|
696
|
+
"log",
|
|
697
|
+
"wasm-bindgen",
|
|
698
|
+
"windows-core",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "iana-time-zone-haiku"
|
|
703
|
+
version = "0.1.2"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"cc",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "icu_collections"
|
|
712
|
+
version = "2.1.1"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"displaydoc",
|
|
717
|
+
"potential_utf",
|
|
718
|
+
"yoke",
|
|
719
|
+
"zerofrom",
|
|
720
|
+
"zerovec",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "icu_locale_core"
|
|
725
|
+
version = "2.1.1"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"displaydoc",
|
|
730
|
+
"litemap",
|
|
731
|
+
"tinystr",
|
|
732
|
+
"writeable",
|
|
733
|
+
"zerovec",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "icu_normalizer"
|
|
738
|
+
version = "2.1.1"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"icu_collections",
|
|
743
|
+
"icu_normalizer_data",
|
|
744
|
+
"icu_properties",
|
|
745
|
+
"icu_provider",
|
|
746
|
+
"smallvec",
|
|
747
|
+
"zerovec",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "icu_normalizer_data"
|
|
752
|
+
version = "2.1.1"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "icu_properties"
|
|
758
|
+
version = "2.1.1"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"icu_collections",
|
|
763
|
+
"icu_locale_core",
|
|
764
|
+
"icu_properties_data",
|
|
765
|
+
"icu_provider",
|
|
766
|
+
"zerotrie",
|
|
767
|
+
"zerovec",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "icu_properties_data"
|
|
772
|
+
version = "2.1.1"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "icu_provider"
|
|
778
|
+
version = "2.1.1"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"displaydoc",
|
|
783
|
+
"icu_locale_core",
|
|
784
|
+
"writeable",
|
|
785
|
+
"yoke",
|
|
786
|
+
"zerofrom",
|
|
787
|
+
"zerotrie",
|
|
788
|
+
"zerovec",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "idna"
|
|
793
|
+
version = "1.1.0"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"idna_adapter",
|
|
798
|
+
"smallvec",
|
|
799
|
+
"utf8_iter",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "idna_adapter"
|
|
804
|
+
version = "1.2.1"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"icu_normalizer",
|
|
809
|
+
"icu_properties",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "ignore"
|
|
814
|
+
version = "0.4.25"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"crossbeam-deque",
|
|
819
|
+
"globset",
|
|
820
|
+
"log",
|
|
821
|
+
"memchr",
|
|
822
|
+
"regex-automata",
|
|
823
|
+
"same-file",
|
|
824
|
+
"walkdir",
|
|
825
|
+
"winapi-util",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "indexmap"
|
|
830
|
+
version = "2.12.1"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"equivalent",
|
|
835
|
+
"hashbrown 0.16.1",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "indoc"
|
|
840
|
+
version = "2.0.7"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"rustversion",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "insta"
|
|
849
|
+
version = "1.44.1"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "e8732d3774162a0851e3f2b150eb98f31a9885dd75985099421d393385a01dfd"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"console",
|
|
854
|
+
"once_cell",
|
|
855
|
+
"similar",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "instant"
|
|
860
|
+
version = "0.1.13"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"cfg-if",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "is_terminal_polyfill"
|
|
869
|
+
version = "1.70.2"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "itoa"
|
|
875
|
+
version = "1.0.15"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "jobserver"
|
|
881
|
+
version = "0.1.34"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"getrandom 0.3.4",
|
|
886
|
+
"libc",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "js-sys"
|
|
891
|
+
version = "0.3.82"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"once_cell",
|
|
896
|
+
"wasm-bindgen",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "libc"
|
|
901
|
+
version = "0.2.177"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "libgit2-sys"
|
|
907
|
+
version = "0.18.2+1.9.1"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "1c42fe03df2bd3c53a3a9c7317ad91d80c81cd1fb0caec8d7cc4cd2bfa10c222"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"cc",
|
|
912
|
+
"libc",
|
|
913
|
+
"libssh2-sys",
|
|
914
|
+
"libz-sys",
|
|
915
|
+
"openssl-sys",
|
|
916
|
+
"pkg-config",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "libredox"
|
|
921
|
+
version = "0.1.10"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"bitflags 2.10.0",
|
|
926
|
+
"libc",
|
|
927
|
+
"redox_syscall 0.5.18",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "libssh2-sys"
|
|
932
|
+
version = "0.3.1"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "220e4f05ad4a218192533b300327f5150e809b54c4ec83b5a1d91833601811b9"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"cc",
|
|
937
|
+
"libc",
|
|
938
|
+
"libz-sys",
|
|
939
|
+
"openssl-sys",
|
|
940
|
+
"pkg-config",
|
|
941
|
+
"vcpkg",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "libz-sys"
|
|
946
|
+
version = "1.1.23"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "15d118bbf3771060e7311cc7bb0545b01d08a8b4a7de949198dec1fa0ca1c0f7"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"cc",
|
|
951
|
+
"libc",
|
|
952
|
+
"pkg-config",
|
|
953
|
+
"vcpkg",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "linked-hash-map"
|
|
958
|
+
version = "0.5.6"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "linux-raw-sys"
|
|
964
|
+
version = "0.11.0"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "litemap"
|
|
970
|
+
version = "0.8.1"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "lock_api"
|
|
976
|
+
version = "0.4.14"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"scopeguard",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "log"
|
|
985
|
+
version = "0.4.28"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "memchr"
|
|
991
|
+
version = "2.7.6"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "memoffset"
|
|
997
|
+
version = "0.9.1"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"autocfg",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "miniz_oxide"
|
|
1006
|
+
version = "0.8.9"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"adler2",
|
|
1011
|
+
"simd-adler32",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "num-conv"
|
|
1016
|
+
version = "0.1.0"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "num-traits"
|
|
1022
|
+
version = "0.2.19"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"autocfg",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "once_cell"
|
|
1031
|
+
version = "1.21.3"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "once_cell_polyfill"
|
|
1037
|
+
version = "1.70.2"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "onig"
|
|
1043
|
+
version = "6.5.1"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"bitflags 2.10.0",
|
|
1048
|
+
"libc",
|
|
1049
|
+
"once_cell",
|
|
1050
|
+
"onig_sys",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "onig_sys"
|
|
1055
|
+
version = "69.9.1"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"cc",
|
|
1060
|
+
"pkg-config",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "openssl-probe"
|
|
1065
|
+
version = "0.1.6"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "openssl-src"
|
|
1071
|
+
version = "300.5.4+3.5.4"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "a507b3792995dae9b0df8a1c1e3771e8418b7c2d9f0baeba32e6fe8b06c7cb72"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"cc",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "openssl-sys"
|
|
1080
|
+
version = "0.9.111"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"cc",
|
|
1085
|
+
"libc",
|
|
1086
|
+
"openssl-src",
|
|
1087
|
+
"pkg-config",
|
|
1088
|
+
"vcpkg",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "option-ext"
|
|
1093
|
+
version = "0.2.0"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "parking_lot"
|
|
1099
|
+
version = "0.11.2"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"instant",
|
|
1104
|
+
"lock_api",
|
|
1105
|
+
"parking_lot_core",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "parking_lot_core"
|
|
1110
|
+
version = "0.8.6"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"cfg-if",
|
|
1115
|
+
"instant",
|
|
1116
|
+
"libc",
|
|
1117
|
+
"redox_syscall 0.2.16",
|
|
1118
|
+
"smallvec",
|
|
1119
|
+
"winapi",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "percent-encoding"
|
|
1124
|
+
version = "2.3.2"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "pkg-config"
|
|
1130
|
+
version = "0.3.32"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "plist"
|
|
1136
|
+
version = "1.8.0"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"base64",
|
|
1141
|
+
"indexmap",
|
|
1142
|
+
"quick-xml",
|
|
1143
|
+
"serde",
|
|
1144
|
+
"time",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "portable-atomic"
|
|
1149
|
+
version = "1.11.1"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "potential_utf"
|
|
1155
|
+
version = "0.1.4"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"zerovec",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "powerfmt"
|
|
1164
|
+
version = "0.2.0"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "ppv-lite86"
|
|
1170
|
+
version = "0.2.21"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"zerocopy",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "predicates"
|
|
1179
|
+
version = "3.1.3"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"anstyle",
|
|
1184
|
+
"difflib",
|
|
1185
|
+
"predicates-core",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "predicates-core"
|
|
1190
|
+
version = "1.0.9"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "predicates-tree"
|
|
1196
|
+
version = "1.0.12"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"predicates-core",
|
|
1201
|
+
"termtree",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "proc-macro2"
|
|
1206
|
+
version = "1.0.103"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"unicode-ident",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "pyo3"
|
|
1215
|
+
version = "0.27.1"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"indoc",
|
|
1220
|
+
"libc",
|
|
1221
|
+
"memoffset",
|
|
1222
|
+
"once_cell",
|
|
1223
|
+
"portable-atomic",
|
|
1224
|
+
"pyo3-build-config",
|
|
1225
|
+
"pyo3-ffi",
|
|
1226
|
+
"pyo3-macros",
|
|
1227
|
+
"unindent",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "pyo3-build-config"
|
|
1232
|
+
version = "0.27.1"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"target-lexicon",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "pyo3-ffi"
|
|
1241
|
+
version = "0.27.1"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"libc",
|
|
1246
|
+
"pyo3-build-config",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "pyo3-macros"
|
|
1251
|
+
version = "0.27.1"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"proc-macro2",
|
|
1256
|
+
"pyo3-macros-backend",
|
|
1257
|
+
"quote",
|
|
1258
|
+
"syn",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "pyo3-macros-backend"
|
|
1263
|
+
version = "0.27.1"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"heck",
|
|
1268
|
+
"proc-macro2",
|
|
1269
|
+
"pyo3-build-config",
|
|
1270
|
+
"quote",
|
|
1271
|
+
"syn",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "quick-xml"
|
|
1276
|
+
version = "0.38.4"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"memchr",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "quote"
|
|
1285
|
+
version = "1.0.42"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"proc-macro2",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "r-efi"
|
|
1294
|
+
version = "5.3.0"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "rand"
|
|
1300
|
+
version = "0.9.2"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"rand_chacha",
|
|
1305
|
+
"rand_core",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "rand_chacha"
|
|
1310
|
+
version = "0.9.0"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"ppv-lite86",
|
|
1315
|
+
"rand_core",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "rand_core"
|
|
1320
|
+
version = "0.9.3"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"getrandom 0.3.4",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "rayon"
|
|
1329
|
+
version = "1.11.0"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"either",
|
|
1334
|
+
"rayon-core",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "rayon-core"
|
|
1339
|
+
version = "1.13.0"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1342
|
+
dependencies = [
|
|
1343
|
+
"crossbeam-deque",
|
|
1344
|
+
"crossbeam-utils",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "redox_syscall"
|
|
1349
|
+
version = "0.2.16"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"bitflags 1.3.2",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "redox_syscall"
|
|
1358
|
+
version = "0.5.18"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"bitflags 2.10.0",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "redox_users"
|
|
1367
|
+
version = "0.5.2"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"getrandom 0.2.16",
|
|
1372
|
+
"libredox",
|
|
1373
|
+
"thiserror",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "ref-cast"
|
|
1378
|
+
version = "1.0.25"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"ref-cast-impl",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "ref-cast-impl"
|
|
1387
|
+
version = "1.0.25"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"proc-macro2",
|
|
1392
|
+
"quote",
|
|
1393
|
+
"syn",
|
|
1394
|
+
]
|
|
1395
|
+
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "regex"
|
|
1398
|
+
version = "1.12.2"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1401
|
+
dependencies = [
|
|
1402
|
+
"aho-corasick",
|
|
1403
|
+
"memchr",
|
|
1404
|
+
"regex-automata",
|
|
1405
|
+
"regex-syntax",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "regex-automata"
|
|
1410
|
+
version = "0.4.13"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"aho-corasick",
|
|
1415
|
+
"memchr",
|
|
1416
|
+
"regex-syntax",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "regex-syntax"
|
|
1421
|
+
version = "0.8.8"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "rustc-hash"
|
|
1427
|
+
version = "2.1.1"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "rustix"
|
|
1433
|
+
version = "1.1.2"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"bitflags 2.10.0",
|
|
1438
|
+
"errno",
|
|
1439
|
+
"libc",
|
|
1440
|
+
"linux-raw-sys",
|
|
1441
|
+
"windows-sys 0.61.2",
|
|
1442
|
+
]
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "rustversion"
|
|
1446
|
+
version = "1.0.22"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1449
|
+
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "ryu"
|
|
1452
|
+
version = "1.0.20"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "same-file"
|
|
1458
|
+
version = "1.0.6"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"winapi-util",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "scopeguard"
|
|
1467
|
+
version = "1.2.0"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "serde"
|
|
1473
|
+
version = "1.0.228"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"serde_core",
|
|
1478
|
+
"serde_derive",
|
|
1479
|
+
]
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "serde_core"
|
|
1483
|
+
version = "1.0.228"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"serde_derive",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "serde_derive"
|
|
1492
|
+
version = "1.0.228"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"proc-macro2",
|
|
1497
|
+
"quote",
|
|
1498
|
+
"syn",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "serde_json"
|
|
1503
|
+
version = "1.0.145"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"itoa",
|
|
1508
|
+
"memchr",
|
|
1509
|
+
"ryu",
|
|
1510
|
+
"serde",
|
|
1511
|
+
"serde_core",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "serde_yaml"
|
|
1516
|
+
version = "0.9.34+deprecated"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1519
|
+
dependencies = [
|
|
1520
|
+
"indexmap",
|
|
1521
|
+
"itoa",
|
|
1522
|
+
"ryu",
|
|
1523
|
+
"serde",
|
|
1524
|
+
"unsafe-libyaml",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "sha2"
|
|
1529
|
+
version = "0.10.9"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"cfg-if",
|
|
1534
|
+
"cpufeatures",
|
|
1535
|
+
"digest",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "shlex"
|
|
1540
|
+
version = "1.3.0"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "simd-adler32"
|
|
1546
|
+
version = "0.3.7"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "simd-json"
|
|
1552
|
+
version = "0.17.0"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
|
|
1555
|
+
dependencies = [
|
|
1556
|
+
"halfbrown",
|
|
1557
|
+
"ref-cast",
|
|
1558
|
+
"serde",
|
|
1559
|
+
"serde_json",
|
|
1560
|
+
"simdutf8",
|
|
1561
|
+
"value-trait",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "simdutf8"
|
|
1566
|
+
version = "0.1.5"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "similar"
|
|
1572
|
+
version = "2.7.0"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "sled"
|
|
1578
|
+
version = "0.34.7"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"crc32fast",
|
|
1583
|
+
"crossbeam-epoch",
|
|
1584
|
+
"crossbeam-utils",
|
|
1585
|
+
"fs2",
|
|
1586
|
+
"fxhash",
|
|
1587
|
+
"libc",
|
|
1588
|
+
"log",
|
|
1589
|
+
"parking_lot",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "smallvec"
|
|
1594
|
+
version = "1.15.1"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "stable_deref_trait"
|
|
1600
|
+
version = "1.2.1"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "strsim"
|
|
1606
|
+
version = "0.11.1"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "syn"
|
|
1612
|
+
version = "2.0.111"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"proc-macro2",
|
|
1617
|
+
"quote",
|
|
1618
|
+
"unicode-ident",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "synstructure"
|
|
1623
|
+
version = "0.13.2"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"proc-macro2",
|
|
1628
|
+
"quote",
|
|
1629
|
+
"syn",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "syntect"
|
|
1634
|
+
version = "5.3.0"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
|
|
1637
|
+
dependencies = [
|
|
1638
|
+
"bincode",
|
|
1639
|
+
"flate2",
|
|
1640
|
+
"fnv",
|
|
1641
|
+
"once_cell",
|
|
1642
|
+
"onig",
|
|
1643
|
+
"plist",
|
|
1644
|
+
"regex-syntax",
|
|
1645
|
+
"serde",
|
|
1646
|
+
"serde_derive",
|
|
1647
|
+
"serde_json",
|
|
1648
|
+
"thiserror",
|
|
1649
|
+
"walkdir",
|
|
1650
|
+
"yaml-rust",
|
|
1651
|
+
]
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "target-lexicon"
|
|
1655
|
+
version = "0.13.3"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "tempfile"
|
|
1661
|
+
version = "3.23.0"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1664
|
+
dependencies = [
|
|
1665
|
+
"fastrand",
|
|
1666
|
+
"getrandom 0.3.4",
|
|
1667
|
+
"once_cell",
|
|
1668
|
+
"rustix",
|
|
1669
|
+
"windows-sys 0.61.2",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "termtree"
|
|
1674
|
+
version = "0.5.1"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "test_each_file"
|
|
1680
|
+
version = "0.3.6"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "2de773517ee4367314c7918f6c9ef69c201ba72bfdbffb00234c22c50a153b73"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"proc-macro2",
|
|
1685
|
+
"quote",
|
|
1686
|
+
"syn",
|
|
1687
|
+
"unicode-ident",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "thiserror"
|
|
1692
|
+
version = "2.0.17"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1695
|
+
dependencies = [
|
|
1696
|
+
"thiserror-impl",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "thiserror-impl"
|
|
1701
|
+
version = "2.0.17"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1704
|
+
dependencies = [
|
|
1705
|
+
"proc-macro2",
|
|
1706
|
+
"quote",
|
|
1707
|
+
"syn",
|
|
1708
|
+
]
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "time"
|
|
1712
|
+
version = "0.3.44"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"deranged",
|
|
1717
|
+
"itoa",
|
|
1718
|
+
"num-conv",
|
|
1719
|
+
"powerfmt",
|
|
1720
|
+
"serde",
|
|
1721
|
+
"time-core",
|
|
1722
|
+
"time-macros",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "time-core"
|
|
1727
|
+
version = "0.1.6"
|
|
1728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "time-macros"
|
|
1733
|
+
version = "0.2.24"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"num-conv",
|
|
1738
|
+
"time-core",
|
|
1739
|
+
]
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "tinystr"
|
|
1743
|
+
version = "0.8.2"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"displaydoc",
|
|
1748
|
+
"zerovec",
|
|
1749
|
+
]
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "typenum"
|
|
1753
|
+
version = "1.19.0"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "unicode-ident"
|
|
1759
|
+
version = "1.0.22"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "unicode-segmentation"
|
|
1765
|
+
version = "1.12.0"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "unindent"
|
|
1771
|
+
version = "0.2.4"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "unsafe-libyaml"
|
|
1777
|
+
version = "0.2.11"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "url"
|
|
1783
|
+
version = "2.5.7"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"form_urlencoded",
|
|
1788
|
+
"idna",
|
|
1789
|
+
"percent-encoding",
|
|
1790
|
+
"serde",
|
|
1791
|
+
]
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "utf8_iter"
|
|
1795
|
+
version = "1.0.4"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "utf8parse"
|
|
1801
|
+
version = "0.2.2"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "value-trait"
|
|
1807
|
+
version = "0.12.1"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
|
|
1810
|
+
dependencies = [
|
|
1811
|
+
"float-cmp",
|
|
1812
|
+
"halfbrown",
|
|
1813
|
+
"itoa",
|
|
1814
|
+
"ryu",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "vcpkg"
|
|
1819
|
+
version = "0.2.15"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "version_check"
|
|
1825
|
+
version = "0.9.5"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "wait-timeout"
|
|
1831
|
+
version = "0.2.1"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"libc",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "walkdir"
|
|
1840
|
+
version = "2.5.0"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1843
|
+
dependencies = [
|
|
1844
|
+
"same-file",
|
|
1845
|
+
"winapi-util",
|
|
1846
|
+
]
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "wasi"
|
|
1850
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "wasip2"
|
|
1856
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"wit-bindgen",
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "wasm-bindgen"
|
|
1865
|
+
version = "0.2.105"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"cfg-if",
|
|
1870
|
+
"once_cell",
|
|
1871
|
+
"rustversion",
|
|
1872
|
+
"wasm-bindgen-macro",
|
|
1873
|
+
"wasm-bindgen-shared",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "wasm-bindgen-macro"
|
|
1878
|
+
version = "0.2.105"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"quote",
|
|
1883
|
+
"wasm-bindgen-macro-support",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "wasm-bindgen-macro-support"
|
|
1888
|
+
version = "0.2.105"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"bumpalo",
|
|
1893
|
+
"proc-macro2",
|
|
1894
|
+
"quote",
|
|
1895
|
+
"syn",
|
|
1896
|
+
"wasm-bindgen-shared",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "wasm-bindgen-shared"
|
|
1901
|
+
version = "0.2.105"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"unicode-ident",
|
|
1906
|
+
]
|
|
1907
|
+
|
|
1908
|
+
[[package]]
|
|
1909
|
+
name = "winapi"
|
|
1910
|
+
version = "0.3.9"
|
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1913
|
+
dependencies = [
|
|
1914
|
+
"winapi-i686-pc-windows-gnu",
|
|
1915
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1920
|
+
version = "0.4.0"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "winapi-util"
|
|
1926
|
+
version = "0.1.11"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"windows-sys 0.61.2",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1935
|
+
version = "0.4.0"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "windows-core"
|
|
1941
|
+
version = "0.62.2"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"windows-implement",
|
|
1946
|
+
"windows-interface",
|
|
1947
|
+
"windows-link",
|
|
1948
|
+
"windows-result",
|
|
1949
|
+
"windows-strings",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "windows-implement"
|
|
1954
|
+
version = "0.60.2"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"proc-macro2",
|
|
1959
|
+
"quote",
|
|
1960
|
+
"syn",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "windows-interface"
|
|
1965
|
+
version = "0.59.3"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"proc-macro2",
|
|
1970
|
+
"quote",
|
|
1971
|
+
"syn",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "windows-link"
|
|
1976
|
+
version = "0.2.1"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "windows-result"
|
|
1982
|
+
version = "0.4.1"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"windows-link",
|
|
1987
|
+
]
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "windows-strings"
|
|
1991
|
+
version = "0.5.1"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1994
|
+
dependencies = [
|
|
1995
|
+
"windows-link",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "windows-sys"
|
|
2000
|
+
version = "0.59.0"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"windows-targets 0.52.6",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "windows-sys"
|
|
2009
|
+
version = "0.60.2"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"windows-targets 0.53.5",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "windows-sys"
|
|
2018
|
+
version = "0.61.2"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"windows-link",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "windows-targets"
|
|
2027
|
+
version = "0.52.6"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2032
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2033
|
+
"windows_i686_gnu 0.52.6",
|
|
2034
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2035
|
+
"windows_i686_msvc 0.52.6",
|
|
2036
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2037
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2038
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "windows-targets"
|
|
2043
|
+
version = "0.53.5"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2046
|
+
dependencies = [
|
|
2047
|
+
"windows-link",
|
|
2048
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2049
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2050
|
+
"windows_i686_gnu 0.53.1",
|
|
2051
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2052
|
+
"windows_i686_msvc 0.53.1",
|
|
2053
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2054
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2055
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2056
|
+
]
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "windows_aarch64_gnullvm"
|
|
2060
|
+
version = "0.52.6"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "windows_aarch64_gnullvm"
|
|
2066
|
+
version = "0.53.1"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2069
|
+
|
|
2070
|
+
[[package]]
|
|
2071
|
+
name = "windows_aarch64_msvc"
|
|
2072
|
+
version = "0.52.6"
|
|
2073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "windows_aarch64_msvc"
|
|
2078
|
+
version = "0.53.1"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "windows_i686_gnu"
|
|
2084
|
+
version = "0.52.6"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2087
|
+
|
|
2088
|
+
[[package]]
|
|
2089
|
+
name = "windows_i686_gnu"
|
|
2090
|
+
version = "0.53.1"
|
|
2091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2092
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2093
|
+
|
|
2094
|
+
[[package]]
|
|
2095
|
+
name = "windows_i686_gnullvm"
|
|
2096
|
+
version = "0.52.6"
|
|
2097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "windows_i686_gnullvm"
|
|
2102
|
+
version = "0.53.1"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "windows_i686_msvc"
|
|
2108
|
+
version = "0.52.6"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2111
|
+
|
|
2112
|
+
[[package]]
|
|
2113
|
+
name = "windows_i686_msvc"
|
|
2114
|
+
version = "0.53.1"
|
|
2115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2117
|
+
|
|
2118
|
+
[[package]]
|
|
2119
|
+
name = "windows_x86_64_gnu"
|
|
2120
|
+
version = "0.52.6"
|
|
2121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2123
|
+
|
|
2124
|
+
[[package]]
|
|
2125
|
+
name = "windows_x86_64_gnu"
|
|
2126
|
+
version = "0.53.1"
|
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2129
|
+
|
|
2130
|
+
[[package]]
|
|
2131
|
+
name = "windows_x86_64_gnullvm"
|
|
2132
|
+
version = "0.52.6"
|
|
2133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "windows_x86_64_gnullvm"
|
|
2138
|
+
version = "0.53.1"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "windows_x86_64_msvc"
|
|
2144
|
+
version = "0.52.6"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2147
|
+
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "windows_x86_64_msvc"
|
|
2150
|
+
version = "0.53.1"
|
|
2151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "wit-bindgen"
|
|
2156
|
+
version = "0.46.0"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "writeable"
|
|
2162
|
+
version = "0.6.2"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
2165
|
+
|
|
2166
|
+
[[package]]
|
|
2167
|
+
name = "yaml-rust"
|
|
2168
|
+
version = "0.4.5"
|
|
2169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
2171
|
+
dependencies = [
|
|
2172
|
+
"linked-hash-map",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "yaml-rust2"
|
|
2177
|
+
version = "0.10.4"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
|
|
2180
|
+
dependencies = [
|
|
2181
|
+
"arraydeque",
|
|
2182
|
+
"encoding_rs",
|
|
2183
|
+
"hashlink",
|
|
2184
|
+
]
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "yoke"
|
|
2188
|
+
version = "0.8.1"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2191
|
+
dependencies = [
|
|
2192
|
+
"stable_deref_trait",
|
|
2193
|
+
"yoke-derive",
|
|
2194
|
+
"zerofrom",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "yoke-derive"
|
|
2199
|
+
version = "0.8.1"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"proc-macro2",
|
|
2204
|
+
"quote",
|
|
2205
|
+
"syn",
|
|
2206
|
+
"synstructure",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "zerocopy"
|
|
2211
|
+
version = "0.8.30"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "4ea879c944afe8a2b25fef16bb4ba234f47c694565e97383b36f3a878219065c"
|
|
2214
|
+
dependencies = [
|
|
2215
|
+
"zerocopy-derive",
|
|
2216
|
+
]
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "zerocopy-derive"
|
|
2220
|
+
version = "0.8.30"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "cf955aa904d6040f70dc8e9384444cb1030aed272ba3cb09bbc4ab9e7c1f34f5"
|
|
2223
|
+
dependencies = [
|
|
2224
|
+
"proc-macro2",
|
|
2225
|
+
"quote",
|
|
2226
|
+
"syn",
|
|
2227
|
+
]
|
|
2228
|
+
|
|
2229
|
+
[[package]]
|
|
2230
|
+
name = "zerofrom"
|
|
2231
|
+
version = "0.1.6"
|
|
2232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
2234
|
+
dependencies = [
|
|
2235
|
+
"zerofrom-derive",
|
|
2236
|
+
]
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "zerofrom-derive"
|
|
2240
|
+
version = "0.1.6"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2243
|
+
dependencies = [
|
|
2244
|
+
"proc-macro2",
|
|
2245
|
+
"quote",
|
|
2246
|
+
"syn",
|
|
2247
|
+
"synstructure",
|
|
2248
|
+
]
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "zerotrie"
|
|
2252
|
+
version = "0.2.3"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"displaydoc",
|
|
2257
|
+
"yoke",
|
|
2258
|
+
"zerofrom",
|
|
2259
|
+
]
|
|
2260
|
+
|
|
2261
|
+
[[package]]
|
|
2262
|
+
name = "zerovec"
|
|
2263
|
+
version = "0.11.5"
|
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
2266
|
+
dependencies = [
|
|
2267
|
+
"yoke",
|
|
2268
|
+
"zerofrom",
|
|
2269
|
+
"zerovec-derive",
|
|
2270
|
+
]
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "zerovec-derive"
|
|
2274
|
+
version = "0.11.2"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2277
|
+
dependencies = [
|
|
2278
|
+
"proc-macro2",
|
|
2279
|
+
"quote",
|
|
2280
|
+
"syn",
|
|
2281
|
+
]
|