mineru-refine 0.7.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.
- mineru_refine-0.7.0/Cargo.lock +1850 -0
- mineru_refine-0.7.0/Cargo.toml +34 -0
- mineru_refine-0.7.0/PKG-INFO +91 -0
- mineru_refine-0.7.0/README.md +77 -0
- mineru_refine-0.7.0/bindings/python/Cargo.toml +23 -0
- mineru_refine-0.7.0/bindings/python/README.md +77 -0
- mineru_refine-0.7.0/bindings/python/src/lib.rs +82 -0
- mineru_refine-0.7.0/crates/mineru-refine/Cargo.toml +55 -0
- mineru_refine-0.7.0/crates/mineru-refine/README.md +72 -0
- mineru_refine-0.7.0/crates/mineru-refine/examples/qwen_smoke.rs +76 -0
- mineru_refine-0.7.0/crates/mineru-refine/examples/refine_real.rs +142 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/agent_loop.rs +1017 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/bin/cli.rs +60 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/bin/server.rs +73 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/detect.rs +471 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/id.rs +61 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/invariant.rs +221 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/lib.rs +36 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/llm.rs +419 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/markdown.rs +93 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/ops.rs +642 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/refine.rs +213 -0
- mineru_refine-0.7.0/crates/mineru-refine/src/types.rs +259 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/common/mod.rs +323 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/detect_test.rs +303 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/invariant_test.rs +186 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/loop_test.rs +190 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/markdown_test.rs +83 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/ops_test.rs +1043 -0
- mineru_refine-0.7.0/crates/mineru-refine/tests/refine_test.rs +688 -0
- mineru_refine-0.7.0/pyproject.toml +26 -0
|
@@ -0,0 +1,1850 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "async-trait"
|
|
16
|
+
version = "0.1.89"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"proc-macro2",
|
|
21
|
+
"quote",
|
|
22
|
+
"syn",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "atomic-waker"
|
|
27
|
+
version = "1.1.2"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "axum"
|
|
33
|
+
version = "0.8.9"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"axum-core",
|
|
38
|
+
"bytes",
|
|
39
|
+
"form_urlencoded",
|
|
40
|
+
"futures-util",
|
|
41
|
+
"http",
|
|
42
|
+
"http-body",
|
|
43
|
+
"http-body-util",
|
|
44
|
+
"hyper",
|
|
45
|
+
"hyper-util",
|
|
46
|
+
"itoa",
|
|
47
|
+
"matchit",
|
|
48
|
+
"memchr",
|
|
49
|
+
"mime",
|
|
50
|
+
"percent-encoding",
|
|
51
|
+
"pin-project-lite",
|
|
52
|
+
"serde_core",
|
|
53
|
+
"serde_json",
|
|
54
|
+
"serde_path_to_error",
|
|
55
|
+
"serde_urlencoded",
|
|
56
|
+
"sync_wrapper",
|
|
57
|
+
"tokio",
|
|
58
|
+
"tower",
|
|
59
|
+
"tower-layer",
|
|
60
|
+
"tower-service",
|
|
61
|
+
"tracing",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "axum-core"
|
|
66
|
+
version = "0.5.6"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"bytes",
|
|
71
|
+
"futures-core",
|
|
72
|
+
"http",
|
|
73
|
+
"http-body",
|
|
74
|
+
"http-body-util",
|
|
75
|
+
"mime",
|
|
76
|
+
"pin-project-lite",
|
|
77
|
+
"sync_wrapper",
|
|
78
|
+
"tower-layer",
|
|
79
|
+
"tower-service",
|
|
80
|
+
"tracing",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "base64"
|
|
85
|
+
version = "0.22.1"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "bitflags"
|
|
91
|
+
version = "2.13.0"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "bumpalo"
|
|
97
|
+
version = "3.20.3"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "bytes"
|
|
103
|
+
version = "1.11.1"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "cc"
|
|
109
|
+
version = "1.2.63"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"find-msvc-tools",
|
|
114
|
+
"shlex",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "cfg-if"
|
|
119
|
+
version = "1.0.4"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "combine"
|
|
125
|
+
version = "4.6.7"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"bytes",
|
|
130
|
+
"memchr",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "convert_case"
|
|
135
|
+
version = "0.11.0"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"unicode-segmentation",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "core-foundation"
|
|
144
|
+
version = "0.9.4"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"core-foundation-sys",
|
|
149
|
+
"libc",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "core-foundation"
|
|
154
|
+
version = "0.10.1"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"core-foundation-sys",
|
|
159
|
+
"libc",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "core-foundation-sys"
|
|
164
|
+
version = "0.8.7"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "ctor"
|
|
170
|
+
version = "1.0.7"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "displaydoc"
|
|
176
|
+
version = "0.2.6"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"proc-macro2",
|
|
181
|
+
"quote",
|
|
182
|
+
"syn",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "dotenvy"
|
|
187
|
+
version = "0.15.7"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "equivalent"
|
|
193
|
+
version = "1.0.2"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "find-msvc-tools"
|
|
199
|
+
version = "0.1.9"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "fnv"
|
|
205
|
+
version = "1.0.7"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "form_urlencoded"
|
|
211
|
+
version = "1.2.2"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"percent-encoding",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "futures"
|
|
220
|
+
version = "0.3.32"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"futures-channel",
|
|
225
|
+
"futures-core",
|
|
226
|
+
"futures-executor",
|
|
227
|
+
"futures-io",
|
|
228
|
+
"futures-sink",
|
|
229
|
+
"futures-task",
|
|
230
|
+
"futures-util",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "futures-channel"
|
|
235
|
+
version = "0.3.32"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"futures-core",
|
|
240
|
+
"futures-sink",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "futures-core"
|
|
245
|
+
version = "0.3.32"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "futures-executor"
|
|
251
|
+
version = "0.3.32"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"futures-core",
|
|
256
|
+
"futures-task",
|
|
257
|
+
"futures-util",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "futures-io"
|
|
262
|
+
version = "0.3.32"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "futures-macro"
|
|
268
|
+
version = "0.3.32"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"proc-macro2",
|
|
273
|
+
"quote",
|
|
274
|
+
"syn",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "futures-sink"
|
|
279
|
+
version = "0.3.32"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "futures-task"
|
|
285
|
+
version = "0.3.32"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "futures-util"
|
|
291
|
+
version = "0.3.32"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"futures-channel",
|
|
296
|
+
"futures-core",
|
|
297
|
+
"futures-io",
|
|
298
|
+
"futures-macro",
|
|
299
|
+
"futures-sink",
|
|
300
|
+
"futures-task",
|
|
301
|
+
"memchr",
|
|
302
|
+
"pin-project-lite",
|
|
303
|
+
"slab",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "getrandom"
|
|
308
|
+
version = "0.2.17"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"cfg-if",
|
|
313
|
+
"libc",
|
|
314
|
+
"wasi",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "h2"
|
|
319
|
+
version = "0.4.14"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"atomic-waker",
|
|
324
|
+
"bytes",
|
|
325
|
+
"fnv",
|
|
326
|
+
"futures-core",
|
|
327
|
+
"futures-sink",
|
|
328
|
+
"http",
|
|
329
|
+
"indexmap",
|
|
330
|
+
"slab",
|
|
331
|
+
"tokio",
|
|
332
|
+
"tokio-util",
|
|
333
|
+
"tracing",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "hashbrown"
|
|
338
|
+
version = "0.17.1"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "heck"
|
|
344
|
+
version = "0.5.0"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "http"
|
|
350
|
+
version = "1.4.2"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"bytes",
|
|
355
|
+
"itoa",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "http-body"
|
|
360
|
+
version = "1.0.1"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"bytes",
|
|
365
|
+
"http",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "http-body-util"
|
|
370
|
+
version = "0.1.3"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"bytes",
|
|
375
|
+
"futures-core",
|
|
376
|
+
"http",
|
|
377
|
+
"http-body",
|
|
378
|
+
"pin-project-lite",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "httparse"
|
|
383
|
+
version = "1.10.1"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "httpdate"
|
|
389
|
+
version = "1.0.3"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "hyper"
|
|
395
|
+
version = "1.10.1"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"atomic-waker",
|
|
400
|
+
"bytes",
|
|
401
|
+
"futures-channel",
|
|
402
|
+
"futures-core",
|
|
403
|
+
"h2",
|
|
404
|
+
"http",
|
|
405
|
+
"http-body",
|
|
406
|
+
"httparse",
|
|
407
|
+
"httpdate",
|
|
408
|
+
"itoa",
|
|
409
|
+
"pin-project-lite",
|
|
410
|
+
"smallvec",
|
|
411
|
+
"tokio",
|
|
412
|
+
"want",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "hyper-rustls"
|
|
417
|
+
version = "0.27.9"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"http",
|
|
422
|
+
"hyper",
|
|
423
|
+
"hyper-util",
|
|
424
|
+
"rustls",
|
|
425
|
+
"tokio",
|
|
426
|
+
"tokio-rustls",
|
|
427
|
+
"tower-service",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "hyper-util"
|
|
432
|
+
version = "0.1.20"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"base64",
|
|
437
|
+
"bytes",
|
|
438
|
+
"futures-channel",
|
|
439
|
+
"futures-util",
|
|
440
|
+
"http",
|
|
441
|
+
"http-body",
|
|
442
|
+
"hyper",
|
|
443
|
+
"ipnet",
|
|
444
|
+
"libc",
|
|
445
|
+
"percent-encoding",
|
|
446
|
+
"pin-project-lite",
|
|
447
|
+
"socket2",
|
|
448
|
+
"system-configuration",
|
|
449
|
+
"tokio",
|
|
450
|
+
"tower-service",
|
|
451
|
+
"tracing",
|
|
452
|
+
"windows-registry",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "icu_collections"
|
|
457
|
+
version = "2.1.1"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"displaydoc",
|
|
462
|
+
"potential_utf",
|
|
463
|
+
"yoke",
|
|
464
|
+
"zerofrom",
|
|
465
|
+
"zerovec",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "icu_locale_core"
|
|
470
|
+
version = "2.1.1"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"displaydoc",
|
|
475
|
+
"litemap",
|
|
476
|
+
"tinystr",
|
|
477
|
+
"writeable",
|
|
478
|
+
"zerovec",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "icu_normalizer"
|
|
483
|
+
version = "2.1.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"icu_collections",
|
|
488
|
+
"icu_normalizer_data",
|
|
489
|
+
"icu_properties",
|
|
490
|
+
"icu_provider",
|
|
491
|
+
"smallvec",
|
|
492
|
+
"zerovec",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "icu_normalizer_data"
|
|
497
|
+
version = "2.1.1"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "icu_properties"
|
|
503
|
+
version = "2.1.2"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"icu_collections",
|
|
508
|
+
"icu_locale_core",
|
|
509
|
+
"icu_properties_data",
|
|
510
|
+
"icu_provider",
|
|
511
|
+
"zerotrie",
|
|
512
|
+
"zerovec",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "icu_properties_data"
|
|
517
|
+
version = "2.1.2"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "icu_provider"
|
|
523
|
+
version = "2.1.1"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"displaydoc",
|
|
528
|
+
"icu_locale_core",
|
|
529
|
+
"writeable",
|
|
530
|
+
"yoke",
|
|
531
|
+
"zerofrom",
|
|
532
|
+
"zerotrie",
|
|
533
|
+
"zerovec",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "idna"
|
|
538
|
+
version = "1.1.0"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"idna_adapter",
|
|
543
|
+
"smallvec",
|
|
544
|
+
"utf8_iter",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "idna_adapter"
|
|
549
|
+
version = "1.2.1"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"icu_normalizer",
|
|
554
|
+
"icu_properties",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "indexmap"
|
|
559
|
+
version = "2.14.0"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"equivalent",
|
|
564
|
+
"hashbrown",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "ipnet"
|
|
569
|
+
version = "2.12.0"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "itoa"
|
|
575
|
+
version = "1.0.18"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "jni"
|
|
581
|
+
version = "0.22.4"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"cfg-if",
|
|
586
|
+
"combine",
|
|
587
|
+
"jni-macros",
|
|
588
|
+
"jni-sys",
|
|
589
|
+
"log",
|
|
590
|
+
"simd_cesu8",
|
|
591
|
+
"thiserror",
|
|
592
|
+
"walkdir",
|
|
593
|
+
"windows-link",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "jni-macros"
|
|
598
|
+
version = "0.22.4"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"proc-macro2",
|
|
603
|
+
"quote",
|
|
604
|
+
"rustc_version",
|
|
605
|
+
"simd_cesu8",
|
|
606
|
+
"syn",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "jni-sys"
|
|
611
|
+
version = "0.4.1"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"jni-sys-macros",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "jni-sys-macros"
|
|
620
|
+
version = "0.4.1"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"quote",
|
|
625
|
+
"syn",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "js-sys"
|
|
630
|
+
version = "0.3.100"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"cfg-if",
|
|
635
|
+
"futures-util",
|
|
636
|
+
"wasm-bindgen",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "libc"
|
|
641
|
+
version = "0.2.186"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "libloading"
|
|
647
|
+
version = "0.9.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"cfg-if",
|
|
652
|
+
"windows-link",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "litemap"
|
|
657
|
+
version = "0.8.2"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "log"
|
|
663
|
+
version = "0.4.32"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "matchit"
|
|
669
|
+
version = "0.8.4"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "memchr"
|
|
675
|
+
version = "2.8.1"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "mime"
|
|
681
|
+
version = "0.3.17"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "mineru-refine"
|
|
687
|
+
version = "0.7.0"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"async-trait",
|
|
690
|
+
"axum",
|
|
691
|
+
"base64",
|
|
692
|
+
"dotenvy",
|
|
693
|
+
"futures",
|
|
694
|
+
"regex",
|
|
695
|
+
"reqwest",
|
|
696
|
+
"rustls",
|
|
697
|
+
"safe-json-repair",
|
|
698
|
+
"serde",
|
|
699
|
+
"serde_json",
|
|
700
|
+
"thiserror",
|
|
701
|
+
"tokio",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "mineru-refine-node"
|
|
706
|
+
version = "0.7.0"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"mineru-refine",
|
|
709
|
+
"napi",
|
|
710
|
+
"napi-build",
|
|
711
|
+
"napi-derive",
|
|
712
|
+
"serde_json",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "mineru-refine-py"
|
|
717
|
+
version = "0.7.0"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"mineru-refine",
|
|
720
|
+
"pyo3",
|
|
721
|
+
"pythonize",
|
|
722
|
+
"serde_json",
|
|
723
|
+
"tokio",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "mio"
|
|
728
|
+
version = "1.2.1"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"libc",
|
|
733
|
+
"wasi",
|
|
734
|
+
"windows-sys 0.61.2",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "napi"
|
|
739
|
+
version = "3.9.1"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "ad513ff22558f1830b595ea6eb4091da48145d09a222ce157e781896f78be0b9"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"bitflags",
|
|
744
|
+
"ctor",
|
|
745
|
+
"futures",
|
|
746
|
+
"napi-build",
|
|
747
|
+
"napi-sys",
|
|
748
|
+
"nohash-hasher",
|
|
749
|
+
"rustc-hash",
|
|
750
|
+
"serde",
|
|
751
|
+
"serde_json",
|
|
752
|
+
"tokio",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "napi-build"
|
|
757
|
+
version = "2.3.2"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "napi-derive"
|
|
763
|
+
version = "3.5.6"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "89b3f766e04667e6da0e181e2da4f85475d5a6513b7cf6a80bea184e224a5b42"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"convert_case",
|
|
768
|
+
"ctor",
|
|
769
|
+
"napi-derive-backend",
|
|
770
|
+
"proc-macro2",
|
|
771
|
+
"quote",
|
|
772
|
+
"syn",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "napi-derive-backend"
|
|
777
|
+
version = "5.0.4"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"convert_case",
|
|
782
|
+
"proc-macro2",
|
|
783
|
+
"quote",
|
|
784
|
+
"semver",
|
|
785
|
+
"syn",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "napi-sys"
|
|
790
|
+
version = "3.2.2"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"libloading",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "nohash-hasher"
|
|
799
|
+
version = "0.2.0"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "once_cell"
|
|
805
|
+
version = "1.21.4"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "openssl-probe"
|
|
811
|
+
version = "0.2.1"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "percent-encoding"
|
|
817
|
+
version = "2.3.2"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "pin-project-lite"
|
|
823
|
+
version = "0.2.17"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "portable-atomic"
|
|
829
|
+
version = "1.13.1"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "potential_utf"
|
|
835
|
+
version = "0.1.5"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"zerovec",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "proc-macro2"
|
|
844
|
+
version = "1.0.106"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"unicode-ident",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "pyo3"
|
|
853
|
+
version = "0.28.3"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"libc",
|
|
858
|
+
"once_cell",
|
|
859
|
+
"portable-atomic",
|
|
860
|
+
"pyo3-build-config",
|
|
861
|
+
"pyo3-ffi",
|
|
862
|
+
"pyo3-macros",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "pyo3-build-config"
|
|
867
|
+
version = "0.28.3"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"target-lexicon",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "pyo3-ffi"
|
|
876
|
+
version = "0.28.3"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"libc",
|
|
881
|
+
"pyo3-build-config",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "pyo3-macros"
|
|
886
|
+
version = "0.28.3"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"proc-macro2",
|
|
891
|
+
"pyo3-macros-backend",
|
|
892
|
+
"quote",
|
|
893
|
+
"syn",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "pyo3-macros-backend"
|
|
898
|
+
version = "0.28.3"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"heck",
|
|
903
|
+
"proc-macro2",
|
|
904
|
+
"pyo3-build-config",
|
|
905
|
+
"quote",
|
|
906
|
+
"syn",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "pythonize"
|
|
911
|
+
version = "0.28.0"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "0b79f670c9626c8b651c0581011b57b6ba6970bb69faf01a7c4c0cfc81c43f95"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"pyo3",
|
|
916
|
+
"serde",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "quote"
|
|
921
|
+
version = "1.0.45"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"proc-macro2",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "regex"
|
|
930
|
+
version = "1.12.4"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
933
|
+
dependencies = [
|
|
934
|
+
"aho-corasick",
|
|
935
|
+
"memchr",
|
|
936
|
+
"regex-automata",
|
|
937
|
+
"regex-syntax",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "regex-automata"
|
|
942
|
+
version = "0.4.14"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"aho-corasick",
|
|
947
|
+
"memchr",
|
|
948
|
+
"regex-syntax",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "regex-syntax"
|
|
953
|
+
version = "0.8.11"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "reqwest"
|
|
959
|
+
version = "0.13.4"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"base64",
|
|
964
|
+
"bytes",
|
|
965
|
+
"futures-core",
|
|
966
|
+
"h2",
|
|
967
|
+
"http",
|
|
968
|
+
"http-body",
|
|
969
|
+
"http-body-util",
|
|
970
|
+
"hyper",
|
|
971
|
+
"hyper-rustls",
|
|
972
|
+
"hyper-util",
|
|
973
|
+
"js-sys",
|
|
974
|
+
"log",
|
|
975
|
+
"percent-encoding",
|
|
976
|
+
"pin-project-lite",
|
|
977
|
+
"rustls",
|
|
978
|
+
"rustls-pki-types",
|
|
979
|
+
"rustls-platform-verifier",
|
|
980
|
+
"serde",
|
|
981
|
+
"serde_json",
|
|
982
|
+
"sync_wrapper",
|
|
983
|
+
"tokio",
|
|
984
|
+
"tokio-rustls",
|
|
985
|
+
"tower",
|
|
986
|
+
"tower-http",
|
|
987
|
+
"tower-service",
|
|
988
|
+
"url",
|
|
989
|
+
"wasm-bindgen",
|
|
990
|
+
"wasm-bindgen-futures",
|
|
991
|
+
"web-sys",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "ring"
|
|
996
|
+
version = "0.17.14"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"cc",
|
|
1001
|
+
"cfg-if",
|
|
1002
|
+
"getrandom",
|
|
1003
|
+
"libc",
|
|
1004
|
+
"untrusted",
|
|
1005
|
+
"windows-sys 0.52.0",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "rustc-hash"
|
|
1010
|
+
version = "2.1.2"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "rustc_version"
|
|
1016
|
+
version = "0.4.1"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"semver",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "rustls"
|
|
1025
|
+
version = "0.23.40"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"log",
|
|
1030
|
+
"once_cell",
|
|
1031
|
+
"ring",
|
|
1032
|
+
"rustls-pki-types",
|
|
1033
|
+
"rustls-webpki",
|
|
1034
|
+
"subtle",
|
|
1035
|
+
"zeroize",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "rustls-native-certs"
|
|
1040
|
+
version = "0.8.4"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"openssl-probe",
|
|
1045
|
+
"rustls-pki-types",
|
|
1046
|
+
"schannel",
|
|
1047
|
+
"security-framework",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "rustls-pki-types"
|
|
1052
|
+
version = "1.14.1"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1055
|
+
dependencies = [
|
|
1056
|
+
"zeroize",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "rustls-platform-verifier"
|
|
1061
|
+
version = "0.7.0"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"core-foundation 0.10.1",
|
|
1066
|
+
"core-foundation-sys",
|
|
1067
|
+
"jni",
|
|
1068
|
+
"log",
|
|
1069
|
+
"once_cell",
|
|
1070
|
+
"rustls",
|
|
1071
|
+
"rustls-native-certs",
|
|
1072
|
+
"rustls-platform-verifier-android",
|
|
1073
|
+
"rustls-webpki",
|
|
1074
|
+
"security-framework",
|
|
1075
|
+
"security-framework-sys",
|
|
1076
|
+
"webpki-root-certs",
|
|
1077
|
+
"windows-sys 0.61.2",
|
|
1078
|
+
]
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "rustls-platform-verifier-android"
|
|
1082
|
+
version = "0.1.1"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "rustls-webpki"
|
|
1088
|
+
version = "0.103.13"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"ring",
|
|
1093
|
+
"rustls-pki-types",
|
|
1094
|
+
"untrusted",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "rustversion"
|
|
1099
|
+
version = "1.0.22"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "ryu"
|
|
1105
|
+
version = "1.0.23"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "safe-json-repair"
|
|
1111
|
+
version = "0.1.1"
|
|
1112
|
+
source = "git+https://github.com/LcpMarvel/safe-json-repair?rev=2aaaefdb9e3f12d1f96c4d5c06f2da46e4d79d14#2aaaefdb9e3f12d1f96c4d5c06f2da46e4d79d14"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"serde_json",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "same-file"
|
|
1119
|
+
version = "1.0.6"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"winapi-util",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "schannel"
|
|
1128
|
+
version = "0.1.29"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"windows-sys 0.61.2",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "security-framework"
|
|
1137
|
+
version = "3.7.0"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"bitflags",
|
|
1142
|
+
"core-foundation 0.10.1",
|
|
1143
|
+
"core-foundation-sys",
|
|
1144
|
+
"libc",
|
|
1145
|
+
"security-framework-sys",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "security-framework-sys"
|
|
1150
|
+
version = "2.17.0"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"core-foundation-sys",
|
|
1155
|
+
"libc",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "semver"
|
|
1160
|
+
version = "1.0.28"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "serde"
|
|
1166
|
+
version = "1.0.228"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"serde_core",
|
|
1171
|
+
"serde_derive",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "serde_core"
|
|
1176
|
+
version = "1.0.228"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"serde_derive",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "serde_derive"
|
|
1185
|
+
version = "1.0.228"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1188
|
+
dependencies = [
|
|
1189
|
+
"proc-macro2",
|
|
1190
|
+
"quote",
|
|
1191
|
+
"syn",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "serde_json"
|
|
1196
|
+
version = "1.0.150"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"indexmap",
|
|
1201
|
+
"itoa",
|
|
1202
|
+
"memchr",
|
|
1203
|
+
"serde",
|
|
1204
|
+
"serde_core",
|
|
1205
|
+
"zmij",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "serde_path_to_error"
|
|
1210
|
+
version = "0.1.20"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"itoa",
|
|
1215
|
+
"serde",
|
|
1216
|
+
"serde_core",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "serde_urlencoded"
|
|
1221
|
+
version = "0.7.1"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"form_urlencoded",
|
|
1226
|
+
"itoa",
|
|
1227
|
+
"ryu",
|
|
1228
|
+
"serde",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "shlex"
|
|
1233
|
+
version = "2.0.1"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "simd_cesu8"
|
|
1239
|
+
version = "1.1.1"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"rustc_version",
|
|
1244
|
+
"simdutf8",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "simdutf8"
|
|
1249
|
+
version = "0.1.5"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "slab"
|
|
1255
|
+
version = "0.4.12"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "smallvec"
|
|
1261
|
+
version = "1.15.1"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "socket2"
|
|
1267
|
+
version = "0.6.4"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"libc",
|
|
1272
|
+
"windows-sys 0.61.2",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "stable_deref_trait"
|
|
1277
|
+
version = "1.2.1"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "subtle"
|
|
1283
|
+
version = "2.6.1"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "syn"
|
|
1289
|
+
version = "2.0.117"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"proc-macro2",
|
|
1294
|
+
"quote",
|
|
1295
|
+
"unicode-ident",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "sync_wrapper"
|
|
1300
|
+
version = "1.0.2"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"futures-core",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "synstructure"
|
|
1309
|
+
version = "0.13.2"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1312
|
+
dependencies = [
|
|
1313
|
+
"proc-macro2",
|
|
1314
|
+
"quote",
|
|
1315
|
+
"syn",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "system-configuration"
|
|
1320
|
+
version = "0.7.0"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"bitflags",
|
|
1325
|
+
"core-foundation 0.9.4",
|
|
1326
|
+
"system-configuration-sys",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "system-configuration-sys"
|
|
1331
|
+
version = "0.6.0"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1334
|
+
dependencies = [
|
|
1335
|
+
"core-foundation-sys",
|
|
1336
|
+
"libc",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "target-lexicon"
|
|
1341
|
+
version = "0.13.5"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "thiserror"
|
|
1347
|
+
version = "2.0.18"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"thiserror-impl",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "thiserror-impl"
|
|
1356
|
+
version = "2.0.18"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"proc-macro2",
|
|
1361
|
+
"quote",
|
|
1362
|
+
"syn",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "tinystr"
|
|
1367
|
+
version = "0.8.3"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"displaydoc",
|
|
1372
|
+
"zerovec",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "tokio"
|
|
1377
|
+
version = "1.52.3"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"bytes",
|
|
1382
|
+
"libc",
|
|
1383
|
+
"mio",
|
|
1384
|
+
"pin-project-lite",
|
|
1385
|
+
"socket2",
|
|
1386
|
+
"tokio-macros",
|
|
1387
|
+
"windows-sys 0.61.2",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "tokio-macros"
|
|
1392
|
+
version = "2.7.0"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"proc-macro2",
|
|
1397
|
+
"quote",
|
|
1398
|
+
"syn",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "tokio-rustls"
|
|
1403
|
+
version = "0.26.4"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"rustls",
|
|
1408
|
+
"tokio",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "tokio-util"
|
|
1413
|
+
version = "0.7.18"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"bytes",
|
|
1418
|
+
"futures-core",
|
|
1419
|
+
"futures-sink",
|
|
1420
|
+
"pin-project-lite",
|
|
1421
|
+
"tokio",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "tower"
|
|
1426
|
+
version = "0.5.3"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"futures-core",
|
|
1431
|
+
"futures-util",
|
|
1432
|
+
"pin-project-lite",
|
|
1433
|
+
"sync_wrapper",
|
|
1434
|
+
"tokio",
|
|
1435
|
+
"tower-layer",
|
|
1436
|
+
"tower-service",
|
|
1437
|
+
"tracing",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "tower-http"
|
|
1442
|
+
version = "0.6.11"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"bitflags",
|
|
1447
|
+
"bytes",
|
|
1448
|
+
"futures-util",
|
|
1449
|
+
"http",
|
|
1450
|
+
"http-body",
|
|
1451
|
+
"pin-project-lite",
|
|
1452
|
+
"tower",
|
|
1453
|
+
"tower-layer",
|
|
1454
|
+
"tower-service",
|
|
1455
|
+
"url",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "tower-layer"
|
|
1460
|
+
version = "0.3.3"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "tower-service"
|
|
1466
|
+
version = "0.3.3"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "tracing"
|
|
1472
|
+
version = "0.1.44"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"log",
|
|
1477
|
+
"pin-project-lite",
|
|
1478
|
+
"tracing-core",
|
|
1479
|
+
]
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "tracing-core"
|
|
1483
|
+
version = "0.1.36"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"once_cell",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "try-lock"
|
|
1492
|
+
version = "0.2.5"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "unicode-ident"
|
|
1498
|
+
version = "1.0.24"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "unicode-segmentation"
|
|
1504
|
+
version = "1.13.3"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "untrusted"
|
|
1510
|
+
version = "0.9.0"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "url"
|
|
1516
|
+
version = "2.5.8"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1519
|
+
dependencies = [
|
|
1520
|
+
"form_urlencoded",
|
|
1521
|
+
"idna",
|
|
1522
|
+
"percent-encoding",
|
|
1523
|
+
"serde",
|
|
1524
|
+
]
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "utf8_iter"
|
|
1528
|
+
version = "1.0.4"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "walkdir"
|
|
1534
|
+
version = "2.5.0"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"same-file",
|
|
1539
|
+
"winapi-util",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "want"
|
|
1544
|
+
version = "0.3.1"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"try-lock",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "wasi"
|
|
1553
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "wasm-bindgen"
|
|
1559
|
+
version = "0.2.123"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"cfg-if",
|
|
1564
|
+
"once_cell",
|
|
1565
|
+
"rustversion",
|
|
1566
|
+
"wasm-bindgen-macro",
|
|
1567
|
+
"wasm-bindgen-shared",
|
|
1568
|
+
]
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "wasm-bindgen-futures"
|
|
1572
|
+
version = "0.4.73"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "54568702fabf5d4849ce2b90fadfa64168a097eaf4b351ce9df8b687a0086aaf"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"js-sys",
|
|
1577
|
+
"wasm-bindgen",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "wasm-bindgen-macro"
|
|
1582
|
+
version = "0.2.123"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"quote",
|
|
1587
|
+
"wasm-bindgen-macro-support",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "wasm-bindgen-macro-support"
|
|
1592
|
+
version = "0.2.123"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"bumpalo",
|
|
1597
|
+
"proc-macro2",
|
|
1598
|
+
"quote",
|
|
1599
|
+
"syn",
|
|
1600
|
+
"wasm-bindgen-shared",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "wasm-bindgen-shared"
|
|
1605
|
+
version = "0.2.123"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"unicode-ident",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "web-sys"
|
|
1614
|
+
version = "0.3.100"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "6e0871acf327f283dc6da28a1696cdc64fb355ba9f935d052021fa77f35cce69"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"js-sys",
|
|
1619
|
+
"wasm-bindgen",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "webpki-root-certs"
|
|
1624
|
+
version = "1.0.7"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"rustls-pki-types",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "winapi-util"
|
|
1633
|
+
version = "0.1.11"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"windows-sys 0.61.2",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "windows-link"
|
|
1642
|
+
version = "0.2.1"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1645
|
+
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "windows-registry"
|
|
1648
|
+
version = "0.6.1"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
1651
|
+
dependencies = [
|
|
1652
|
+
"windows-link",
|
|
1653
|
+
"windows-result",
|
|
1654
|
+
"windows-strings",
|
|
1655
|
+
]
|
|
1656
|
+
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "windows-result"
|
|
1659
|
+
version = "0.4.1"
|
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1662
|
+
dependencies = [
|
|
1663
|
+
"windows-link",
|
|
1664
|
+
]
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "windows-strings"
|
|
1668
|
+
version = "0.5.1"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1671
|
+
dependencies = [
|
|
1672
|
+
"windows-link",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "windows-sys"
|
|
1677
|
+
version = "0.52.0"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"windows-targets",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "windows-sys"
|
|
1686
|
+
version = "0.61.2"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"windows-link",
|
|
1691
|
+
]
|
|
1692
|
+
|
|
1693
|
+
[[package]]
|
|
1694
|
+
name = "windows-targets"
|
|
1695
|
+
version = "0.52.6"
|
|
1696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1698
|
+
dependencies = [
|
|
1699
|
+
"windows_aarch64_gnullvm",
|
|
1700
|
+
"windows_aarch64_msvc",
|
|
1701
|
+
"windows_i686_gnu",
|
|
1702
|
+
"windows_i686_gnullvm",
|
|
1703
|
+
"windows_i686_msvc",
|
|
1704
|
+
"windows_x86_64_gnu",
|
|
1705
|
+
"windows_x86_64_gnullvm",
|
|
1706
|
+
"windows_x86_64_msvc",
|
|
1707
|
+
]
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "windows_aarch64_gnullvm"
|
|
1711
|
+
version = "0.52.6"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "windows_aarch64_msvc"
|
|
1717
|
+
version = "0.52.6"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "windows_i686_gnu"
|
|
1723
|
+
version = "0.52.6"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "windows_i686_gnullvm"
|
|
1729
|
+
version = "0.52.6"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "windows_i686_msvc"
|
|
1735
|
+
version = "0.52.6"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "windows_x86_64_gnu"
|
|
1741
|
+
version = "0.52.6"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "windows_x86_64_gnullvm"
|
|
1747
|
+
version = "0.52.6"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "windows_x86_64_msvc"
|
|
1753
|
+
version = "0.52.6"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "writeable"
|
|
1759
|
+
version = "0.6.3"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "yoke"
|
|
1765
|
+
version = "0.8.3"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
1768
|
+
dependencies = [
|
|
1769
|
+
"stable_deref_trait",
|
|
1770
|
+
"yoke-derive",
|
|
1771
|
+
"zerofrom",
|
|
1772
|
+
]
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "yoke-derive"
|
|
1776
|
+
version = "0.8.2"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"proc-macro2",
|
|
1781
|
+
"quote",
|
|
1782
|
+
"syn",
|
|
1783
|
+
"synstructure",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "zerofrom"
|
|
1788
|
+
version = "0.1.8"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"zerofrom-derive",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "zerofrom-derive"
|
|
1797
|
+
version = "0.1.7"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"proc-macro2",
|
|
1802
|
+
"quote",
|
|
1803
|
+
"syn",
|
|
1804
|
+
"synstructure",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "zeroize"
|
|
1809
|
+
version = "1.8.2"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "zerotrie"
|
|
1815
|
+
version = "0.2.4"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"displaydoc",
|
|
1820
|
+
"yoke",
|
|
1821
|
+
"zerofrom",
|
|
1822
|
+
]
|
|
1823
|
+
|
|
1824
|
+
[[package]]
|
|
1825
|
+
name = "zerovec"
|
|
1826
|
+
version = "0.11.6"
|
|
1827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1828
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1829
|
+
dependencies = [
|
|
1830
|
+
"yoke",
|
|
1831
|
+
"zerofrom",
|
|
1832
|
+
"zerovec-derive",
|
|
1833
|
+
]
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "zerovec-derive"
|
|
1837
|
+
version = "0.11.3"
|
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1840
|
+
dependencies = [
|
|
1841
|
+
"proc-macro2",
|
|
1842
|
+
"quote",
|
|
1843
|
+
"syn",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "zmij"
|
|
1848
|
+
version = "1.0.21"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|