konan 0.2.1__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.
- konan-0.2.1/Cargo.lock +2530 -0
- konan-0.2.1/Cargo.toml +9 -0
- konan-0.2.1/LICENSE +21 -0
- konan-0.2.1/PKG-INFO +255 -0
- konan-0.2.1/README.md +227 -0
- konan-0.2.1/crates/konan-core/Cargo.toml +30 -0
- konan-0.2.1/crates/konan-core/benches/chunkers.rs +151 -0
- konan-0.2.1/crates/konan-core/src/chunk.rs +29 -0
- konan-0.2.1/crates/konan-core/src/chunker.rs +41 -0
- konan-0.2.1/crates/konan-core/src/embedder.rs +159 -0
- konan-0.2.1/crates/konan-core/src/error.rs +9 -0
- konan-0.2.1/crates/konan-core/src/lib.rs +21 -0
- konan-0.2.1/crates/konan-core/src/semantic.rs +252 -0
- konan-0.2.1/crates/konan-core/src/strategies/fixed_size.rs +122 -0
- konan-0.2.1/crates/konan-core/src/strategies/markdown.rs +248 -0
- konan-0.2.1/crates/konan-core/src/strategies/mod.rs +6 -0
- konan-0.2.1/crates/konan-core/src/strategies/naive.rs +69 -0
- konan-0.2.1/crates/konan-core/src/strategies/recursive.rs +175 -0
- konan-0.2.1/crates/konan-core/src/strategies/sentence.rs +97 -0
- konan-0.2.1/crates/konan-core/src/strategies/token.rs +157 -0
- konan-0.2.1/crates/konan-core/src/text.rs +260 -0
- konan-0.2.1/crates/konan-py/Cargo.toml +19 -0
- konan-0.2.1/crates/konan-py/src/chunk.rs +60 -0
- konan-0.2.1/crates/konan-py/src/chunkers.rs +277 -0
- konan-0.2.1/crates/konan-py/src/common.rs +64 -0
- konan-0.2.1/crates/konan-py/src/errors.rs +17 -0
- konan-0.2.1/crates/konan-py/src/lib.rs +23 -0
- konan-0.2.1/crates/konan-py/src/semantic.rs +226 -0
- konan-0.2.1/pyproject.toml +56 -0
- konan-0.2.1/python/konan/__init__.py +29 -0
- konan-0.2.1/python/konan/_konan.pyi +106 -0
- konan-0.2.1/python/konan/py.typed +0 -0
konan-0.2.1/Cargo.lock
ADDED
|
@@ -0,0 +1,2530 @@
|
|
|
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 = "alloca"
|
|
22
|
+
version = "0.4.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anes"
|
|
31
|
+
version = "0.1.6"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "aneubeck-daachorse"
|
|
37
|
+
version = "1.1.1"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "a902604543851c9ccc59d6252eb77502a9e01d6bf7205dd2ab4b543bd22cbda3"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle"
|
|
43
|
+
version = "1.0.14"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "async-openai"
|
|
49
|
+
version = "0.41.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "3ec57a13b36ba76764870363a9182d8bc9fb49538dc5a948dd2e5224fe65ce40"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"async-openai-macros",
|
|
54
|
+
"base64",
|
|
55
|
+
"bytes",
|
|
56
|
+
"derive_builder",
|
|
57
|
+
"eventsource-stream",
|
|
58
|
+
"futures",
|
|
59
|
+
"getrandom 0.3.4",
|
|
60
|
+
"rand",
|
|
61
|
+
"reqwest",
|
|
62
|
+
"secrecy",
|
|
63
|
+
"serde",
|
|
64
|
+
"serde_json",
|
|
65
|
+
"serde_urlencoded",
|
|
66
|
+
"thiserror",
|
|
67
|
+
"tokio",
|
|
68
|
+
"tokio-stream",
|
|
69
|
+
"tokio-util",
|
|
70
|
+
"tower",
|
|
71
|
+
"tracing",
|
|
72
|
+
"url",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "async-openai-macros"
|
|
77
|
+
version = "0.3.0"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "492a944774207eed3acf425214eadbd6ce84a2b89331164ff1c11bae92b26302"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"proc-macro2",
|
|
82
|
+
"quote",
|
|
83
|
+
"syn",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "async-trait"
|
|
88
|
+
version = "0.1.89"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"proc-macro2",
|
|
93
|
+
"quote",
|
|
94
|
+
"syn",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "atomic-waker"
|
|
99
|
+
version = "1.1.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "autocfg"
|
|
105
|
+
version = "1.5.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "aws-lc-rs"
|
|
111
|
+
version = "1.17.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"aws-lc-sys",
|
|
116
|
+
"zeroize",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "aws-lc-sys"
|
|
121
|
+
version = "0.41.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"cc",
|
|
126
|
+
"cmake",
|
|
127
|
+
"dunce",
|
|
128
|
+
"fs_extra",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "base64"
|
|
133
|
+
version = "0.22.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "bitflags"
|
|
139
|
+
version = "2.13.0"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bpe"
|
|
145
|
+
version = "0.2.1"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "f3f0f0ef446ddbb042aac62a2da0b680e116b6cb2b1f79c20eda2a9107611408"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"aneubeck-daachorse",
|
|
150
|
+
"base64",
|
|
151
|
+
"fnv",
|
|
152
|
+
"itertools 0.14.0",
|
|
153
|
+
"serde",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "bpe-openai"
|
|
158
|
+
version = "0.3.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "b25deec0a72cf5d8b66a6e487c5ee9757b0639f3e16d687f6c6dea834812000c"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"base64",
|
|
163
|
+
"bpe",
|
|
164
|
+
"either",
|
|
165
|
+
"flate2",
|
|
166
|
+
"regex-automata",
|
|
167
|
+
"rmp-serde",
|
|
168
|
+
"serde",
|
|
169
|
+
"unicode-normalization",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "bumpalo"
|
|
174
|
+
version = "3.20.3"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "bytes"
|
|
180
|
+
version = "1.11.1"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "cast"
|
|
186
|
+
version = "0.3.0"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "cc"
|
|
192
|
+
version = "1.2.63"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"find-msvc-tools",
|
|
197
|
+
"jobserver",
|
|
198
|
+
"libc",
|
|
199
|
+
"shlex",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "cfg-if"
|
|
204
|
+
version = "1.0.4"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "cfg_aliases"
|
|
210
|
+
version = "0.2.1"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "ciborium"
|
|
216
|
+
version = "0.2.2"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"ciborium-io",
|
|
221
|
+
"ciborium-ll",
|
|
222
|
+
"serde",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "ciborium-io"
|
|
227
|
+
version = "0.2.2"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "ciborium-ll"
|
|
233
|
+
version = "0.2.2"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"ciborium-io",
|
|
238
|
+
"half",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "clap"
|
|
243
|
+
version = "4.6.1"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"clap_builder",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "clap_builder"
|
|
252
|
+
version = "4.6.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"anstyle",
|
|
257
|
+
"clap_lex",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "clap_lex"
|
|
262
|
+
version = "1.1.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "cmake"
|
|
268
|
+
version = "0.1.58"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"cc",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "combine"
|
|
277
|
+
version = "4.6.7"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"bytes",
|
|
282
|
+
"memchr",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "core-foundation"
|
|
287
|
+
version = "0.10.1"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"core-foundation-sys",
|
|
292
|
+
"libc",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "core-foundation-sys"
|
|
297
|
+
version = "0.8.7"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "crc32fast"
|
|
303
|
+
version = "1.5.0"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"cfg-if",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "criterion"
|
|
312
|
+
version = "0.8.2"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"alloca",
|
|
317
|
+
"anes",
|
|
318
|
+
"cast",
|
|
319
|
+
"ciborium",
|
|
320
|
+
"clap",
|
|
321
|
+
"criterion-plot",
|
|
322
|
+
"itertools 0.13.0",
|
|
323
|
+
"num-traits",
|
|
324
|
+
"oorandom",
|
|
325
|
+
"page_size",
|
|
326
|
+
"plotters",
|
|
327
|
+
"rayon",
|
|
328
|
+
"regex",
|
|
329
|
+
"serde",
|
|
330
|
+
"serde_json",
|
|
331
|
+
"tinytemplate",
|
|
332
|
+
"walkdir",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "criterion-plot"
|
|
337
|
+
version = "0.8.2"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"cast",
|
|
342
|
+
"itertools 0.13.0",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "crossbeam-deque"
|
|
347
|
+
version = "0.8.6"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"crossbeam-epoch",
|
|
352
|
+
"crossbeam-utils",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "crossbeam-epoch"
|
|
357
|
+
version = "0.9.18"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"crossbeam-utils",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "crossbeam-utils"
|
|
366
|
+
version = "0.8.21"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "crunchy"
|
|
372
|
+
version = "0.2.4"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "darling"
|
|
378
|
+
version = "0.20.11"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"darling_core",
|
|
383
|
+
"darling_macro",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "darling_core"
|
|
388
|
+
version = "0.20.11"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"fnv",
|
|
393
|
+
"ident_case",
|
|
394
|
+
"proc-macro2",
|
|
395
|
+
"quote",
|
|
396
|
+
"strsim",
|
|
397
|
+
"syn",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "darling_macro"
|
|
402
|
+
version = "0.20.11"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"darling_core",
|
|
407
|
+
"quote",
|
|
408
|
+
"syn",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "derive_builder"
|
|
413
|
+
version = "0.20.2"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"derive_builder_macro",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "derive_builder_core"
|
|
422
|
+
version = "0.20.2"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"darling",
|
|
427
|
+
"proc-macro2",
|
|
428
|
+
"quote",
|
|
429
|
+
"syn",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "derive_builder_macro"
|
|
434
|
+
version = "0.20.2"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"derive_builder_core",
|
|
439
|
+
"syn",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "displaydoc"
|
|
444
|
+
version = "0.2.6"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"proc-macro2",
|
|
449
|
+
"quote",
|
|
450
|
+
"syn",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "dunce"
|
|
455
|
+
version = "1.0.5"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "either"
|
|
461
|
+
version = "1.16.0"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "eventsource-stream"
|
|
467
|
+
version = "0.2.3"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"futures-core",
|
|
472
|
+
"nom",
|
|
473
|
+
"pin-project-lite",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "find-msvc-tools"
|
|
478
|
+
version = "0.1.9"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "flate2"
|
|
484
|
+
version = "1.1.9"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"crc32fast",
|
|
489
|
+
"miniz_oxide",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "fnv"
|
|
494
|
+
version = "1.0.7"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "form_urlencoded"
|
|
500
|
+
version = "1.2.2"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"percent-encoding",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "fs_extra"
|
|
509
|
+
version = "1.3.0"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "futures"
|
|
515
|
+
version = "0.3.32"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"futures-channel",
|
|
520
|
+
"futures-core",
|
|
521
|
+
"futures-executor",
|
|
522
|
+
"futures-io",
|
|
523
|
+
"futures-sink",
|
|
524
|
+
"futures-task",
|
|
525
|
+
"futures-util",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "futures-channel"
|
|
530
|
+
version = "0.3.32"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"futures-core",
|
|
535
|
+
"futures-sink",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "futures-core"
|
|
540
|
+
version = "0.3.32"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "futures-executor"
|
|
546
|
+
version = "0.3.32"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"futures-core",
|
|
551
|
+
"futures-task",
|
|
552
|
+
"futures-util",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "futures-io"
|
|
557
|
+
version = "0.3.32"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "futures-macro"
|
|
563
|
+
version = "0.3.32"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"proc-macro2",
|
|
568
|
+
"quote",
|
|
569
|
+
"syn",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "futures-sink"
|
|
574
|
+
version = "0.3.32"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "futures-task"
|
|
580
|
+
version = "0.3.32"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "futures-util"
|
|
586
|
+
version = "0.3.32"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"futures-channel",
|
|
591
|
+
"futures-core",
|
|
592
|
+
"futures-io",
|
|
593
|
+
"futures-macro",
|
|
594
|
+
"futures-sink",
|
|
595
|
+
"futures-task",
|
|
596
|
+
"memchr",
|
|
597
|
+
"pin-project-lite",
|
|
598
|
+
"slab",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "getrandom"
|
|
603
|
+
version = "0.2.17"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"cfg-if",
|
|
608
|
+
"js-sys",
|
|
609
|
+
"libc",
|
|
610
|
+
"wasi",
|
|
611
|
+
"wasm-bindgen",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "getrandom"
|
|
616
|
+
version = "0.3.4"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"cfg-if",
|
|
621
|
+
"js-sys",
|
|
622
|
+
"libc",
|
|
623
|
+
"r-efi",
|
|
624
|
+
"wasip2",
|
|
625
|
+
"wasm-bindgen",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "half"
|
|
630
|
+
version = "2.7.1"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"cfg-if",
|
|
635
|
+
"crunchy",
|
|
636
|
+
"zerocopy",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "heck"
|
|
641
|
+
version = "0.5.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "http"
|
|
647
|
+
version = "1.4.1"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"bytes",
|
|
652
|
+
"itoa",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "http-body"
|
|
657
|
+
version = "1.0.1"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"bytes",
|
|
662
|
+
"http",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "http-body-util"
|
|
667
|
+
version = "0.1.3"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"bytes",
|
|
672
|
+
"futures-core",
|
|
673
|
+
"http",
|
|
674
|
+
"http-body",
|
|
675
|
+
"pin-project-lite",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "httparse"
|
|
680
|
+
version = "1.10.1"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "hyper"
|
|
686
|
+
version = "1.10.1"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"atomic-waker",
|
|
691
|
+
"bytes",
|
|
692
|
+
"futures-channel",
|
|
693
|
+
"futures-core",
|
|
694
|
+
"http",
|
|
695
|
+
"http-body",
|
|
696
|
+
"httparse",
|
|
697
|
+
"itoa",
|
|
698
|
+
"pin-project-lite",
|
|
699
|
+
"smallvec",
|
|
700
|
+
"tokio",
|
|
701
|
+
"want",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "hyper-rustls"
|
|
706
|
+
version = "0.27.9"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"http",
|
|
711
|
+
"hyper",
|
|
712
|
+
"hyper-util",
|
|
713
|
+
"rustls",
|
|
714
|
+
"tokio",
|
|
715
|
+
"tokio-rustls",
|
|
716
|
+
"tower-service",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "hyper-util"
|
|
721
|
+
version = "0.1.20"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
724
|
+
dependencies = [
|
|
725
|
+
"base64",
|
|
726
|
+
"bytes",
|
|
727
|
+
"futures-channel",
|
|
728
|
+
"futures-util",
|
|
729
|
+
"http",
|
|
730
|
+
"http-body",
|
|
731
|
+
"hyper",
|
|
732
|
+
"ipnet",
|
|
733
|
+
"libc",
|
|
734
|
+
"percent-encoding",
|
|
735
|
+
"pin-project-lite",
|
|
736
|
+
"socket2",
|
|
737
|
+
"tokio",
|
|
738
|
+
"tower-service",
|
|
739
|
+
"tracing",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "icu_collections"
|
|
744
|
+
version = "2.2.0"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"displaydoc",
|
|
749
|
+
"potential_utf",
|
|
750
|
+
"utf8_iter",
|
|
751
|
+
"yoke",
|
|
752
|
+
"zerofrom",
|
|
753
|
+
"zerovec",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "icu_locale_core"
|
|
758
|
+
version = "2.2.0"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"displaydoc",
|
|
763
|
+
"litemap",
|
|
764
|
+
"tinystr",
|
|
765
|
+
"writeable",
|
|
766
|
+
"zerovec",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "icu_normalizer"
|
|
771
|
+
version = "2.2.0"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"icu_collections",
|
|
776
|
+
"icu_normalizer_data",
|
|
777
|
+
"icu_properties",
|
|
778
|
+
"icu_provider",
|
|
779
|
+
"smallvec",
|
|
780
|
+
"zerovec",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "icu_normalizer_data"
|
|
785
|
+
version = "2.2.0"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "icu_properties"
|
|
791
|
+
version = "2.2.0"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"icu_collections",
|
|
796
|
+
"icu_locale_core",
|
|
797
|
+
"icu_properties_data",
|
|
798
|
+
"icu_provider",
|
|
799
|
+
"zerotrie",
|
|
800
|
+
"zerovec",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "icu_properties_data"
|
|
805
|
+
version = "2.2.0"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "icu_provider"
|
|
811
|
+
version = "2.2.0"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"displaydoc",
|
|
816
|
+
"icu_locale_core",
|
|
817
|
+
"writeable",
|
|
818
|
+
"yoke",
|
|
819
|
+
"zerofrom",
|
|
820
|
+
"zerotrie",
|
|
821
|
+
"zerovec",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "ident_case"
|
|
826
|
+
version = "1.0.1"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "idna"
|
|
832
|
+
version = "1.1.0"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"idna_adapter",
|
|
837
|
+
"smallvec",
|
|
838
|
+
"utf8_iter",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "idna_adapter"
|
|
843
|
+
version = "1.2.2"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"icu_normalizer",
|
|
848
|
+
"icu_properties",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "indoc"
|
|
853
|
+
version = "2.0.7"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"rustversion",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "ipnet"
|
|
862
|
+
version = "2.12.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "itertools"
|
|
868
|
+
version = "0.13.0"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"either",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "itertools"
|
|
877
|
+
version = "0.14.0"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"either",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "itoa"
|
|
886
|
+
version = "1.0.18"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "jni"
|
|
892
|
+
version = "0.22.4"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"cfg-if",
|
|
897
|
+
"combine",
|
|
898
|
+
"jni-macros",
|
|
899
|
+
"jni-sys",
|
|
900
|
+
"log",
|
|
901
|
+
"simd_cesu8",
|
|
902
|
+
"thiserror",
|
|
903
|
+
"walkdir",
|
|
904
|
+
"windows-link",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "jni-macros"
|
|
909
|
+
version = "0.22.4"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"proc-macro2",
|
|
914
|
+
"quote",
|
|
915
|
+
"rustc_version",
|
|
916
|
+
"simd_cesu8",
|
|
917
|
+
"syn",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "jni-sys"
|
|
922
|
+
version = "0.4.1"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"jni-sys-macros",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "jni-sys-macros"
|
|
931
|
+
version = "0.4.1"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"quote",
|
|
936
|
+
"syn",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "jobserver"
|
|
941
|
+
version = "0.1.34"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"getrandom 0.3.4",
|
|
946
|
+
"libc",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "js-sys"
|
|
951
|
+
version = "0.3.99"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"cfg-if",
|
|
956
|
+
"futures-util",
|
|
957
|
+
"once_cell",
|
|
958
|
+
"wasm-bindgen",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "konan-core"
|
|
963
|
+
version = "0.2.1"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"async-openai",
|
|
966
|
+
"async-trait",
|
|
967
|
+
"bpe-openai",
|
|
968
|
+
"criterion",
|
|
969
|
+
"futures",
|
|
970
|
+
"pulldown-cmark",
|
|
971
|
+
"rayon",
|
|
972
|
+
"regex",
|
|
973
|
+
"reqwest",
|
|
974
|
+
"serde",
|
|
975
|
+
"thiserror",
|
|
976
|
+
"tokio",
|
|
977
|
+
"tower",
|
|
978
|
+
"unicode-segmentation",
|
|
979
|
+
"xxhash-rust",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "konan-py"
|
|
984
|
+
version = "0.2.1"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"async-trait",
|
|
987
|
+
"futures",
|
|
988
|
+
"konan-core",
|
|
989
|
+
"pyo3",
|
|
990
|
+
"pyo3-async-runtimes",
|
|
991
|
+
"tokio",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "libc"
|
|
996
|
+
version = "0.2.186"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "litemap"
|
|
1002
|
+
version = "0.8.2"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "log"
|
|
1008
|
+
version = "0.4.32"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "lru-slab"
|
|
1014
|
+
version = "0.1.2"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "memchr"
|
|
1020
|
+
version = "2.8.1"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "memoffset"
|
|
1026
|
+
version = "0.9.1"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"autocfg",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "mime"
|
|
1035
|
+
version = "0.3.17"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "mime_guess"
|
|
1041
|
+
version = "2.0.5"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"mime",
|
|
1046
|
+
"unicase",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "minimal-lexical"
|
|
1051
|
+
version = "0.2.1"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "miniz_oxide"
|
|
1057
|
+
version = "0.8.9"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"adler2",
|
|
1062
|
+
"simd-adler32",
|
|
1063
|
+
]
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "mio"
|
|
1067
|
+
version = "1.2.1"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"libc",
|
|
1072
|
+
"wasi",
|
|
1073
|
+
"windows-sys 0.61.2",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "nom"
|
|
1078
|
+
version = "7.1.3"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"memchr",
|
|
1083
|
+
"minimal-lexical",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "num-traits"
|
|
1088
|
+
version = "0.2.19"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"autocfg",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "once_cell"
|
|
1097
|
+
version = "1.21.4"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "oorandom"
|
|
1103
|
+
version = "11.1.5"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "openssl-probe"
|
|
1109
|
+
version = "0.2.1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "page_size"
|
|
1115
|
+
version = "0.6.0"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"libc",
|
|
1120
|
+
"winapi",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "percent-encoding"
|
|
1125
|
+
version = "2.3.2"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "pin-project-lite"
|
|
1131
|
+
version = "0.2.17"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "plotters"
|
|
1137
|
+
version = "0.3.7"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"num-traits",
|
|
1142
|
+
"plotters-backend",
|
|
1143
|
+
"plotters-svg",
|
|
1144
|
+
"wasm-bindgen",
|
|
1145
|
+
"web-sys",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "plotters-backend"
|
|
1150
|
+
version = "0.3.7"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "plotters-svg"
|
|
1156
|
+
version = "0.3.7"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"plotters-backend",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "portable-atomic"
|
|
1165
|
+
version = "1.13.1"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "potential_utf"
|
|
1171
|
+
version = "0.1.5"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"zerovec",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "ppv-lite86"
|
|
1180
|
+
version = "0.2.21"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"zerocopy",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "proc-macro2"
|
|
1189
|
+
version = "1.0.106"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1192
|
+
dependencies = [
|
|
1193
|
+
"unicode-ident",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "pulldown-cmark"
|
|
1198
|
+
version = "0.13.4"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"bitflags",
|
|
1203
|
+
"memchr",
|
|
1204
|
+
"unicase",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "pyo3"
|
|
1209
|
+
version = "0.25.1"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"indoc",
|
|
1214
|
+
"libc",
|
|
1215
|
+
"memoffset",
|
|
1216
|
+
"once_cell",
|
|
1217
|
+
"portable-atomic",
|
|
1218
|
+
"pyo3-build-config",
|
|
1219
|
+
"pyo3-ffi",
|
|
1220
|
+
"pyo3-macros",
|
|
1221
|
+
"unindent",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "pyo3-async-runtimes"
|
|
1226
|
+
version = "0.25.0"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "d73cc6b1b7d8b3cef02101d37390dbdfe7e450dfea14921cae80a9534ba59ef2"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"futures",
|
|
1231
|
+
"once_cell",
|
|
1232
|
+
"pin-project-lite",
|
|
1233
|
+
"pyo3",
|
|
1234
|
+
"tokio",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "pyo3-build-config"
|
|
1239
|
+
version = "0.25.1"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"once_cell",
|
|
1244
|
+
"target-lexicon",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "pyo3-ffi"
|
|
1249
|
+
version = "0.25.1"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"libc",
|
|
1254
|
+
"pyo3-build-config",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "pyo3-macros"
|
|
1259
|
+
version = "0.25.1"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"proc-macro2",
|
|
1264
|
+
"pyo3-macros-backend",
|
|
1265
|
+
"quote",
|
|
1266
|
+
"syn",
|
|
1267
|
+
]
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "pyo3-macros-backend"
|
|
1271
|
+
version = "0.25.1"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
1274
|
+
dependencies = [
|
|
1275
|
+
"heck",
|
|
1276
|
+
"proc-macro2",
|
|
1277
|
+
"pyo3-build-config",
|
|
1278
|
+
"quote",
|
|
1279
|
+
"syn",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "quinn"
|
|
1284
|
+
version = "0.11.9"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"bytes",
|
|
1289
|
+
"cfg_aliases",
|
|
1290
|
+
"pin-project-lite",
|
|
1291
|
+
"quinn-proto",
|
|
1292
|
+
"quinn-udp",
|
|
1293
|
+
"rustc-hash",
|
|
1294
|
+
"rustls",
|
|
1295
|
+
"socket2",
|
|
1296
|
+
"thiserror",
|
|
1297
|
+
"tokio",
|
|
1298
|
+
"tracing",
|
|
1299
|
+
"web-time",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "quinn-proto"
|
|
1304
|
+
version = "0.11.14"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"aws-lc-rs",
|
|
1309
|
+
"bytes",
|
|
1310
|
+
"getrandom 0.3.4",
|
|
1311
|
+
"lru-slab",
|
|
1312
|
+
"rand",
|
|
1313
|
+
"ring",
|
|
1314
|
+
"rustc-hash",
|
|
1315
|
+
"rustls",
|
|
1316
|
+
"rustls-pki-types",
|
|
1317
|
+
"slab",
|
|
1318
|
+
"thiserror",
|
|
1319
|
+
"tinyvec",
|
|
1320
|
+
"tracing",
|
|
1321
|
+
"web-time",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "quinn-udp"
|
|
1326
|
+
version = "0.5.14"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"cfg_aliases",
|
|
1331
|
+
"libc",
|
|
1332
|
+
"once_cell",
|
|
1333
|
+
"socket2",
|
|
1334
|
+
"tracing",
|
|
1335
|
+
"windows-sys 0.60.2",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "quote"
|
|
1340
|
+
version = "1.0.45"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"proc-macro2",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "r-efi"
|
|
1349
|
+
version = "5.3.0"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "rand"
|
|
1355
|
+
version = "0.9.4"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"rand_chacha",
|
|
1360
|
+
"rand_core",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "rand_chacha"
|
|
1365
|
+
version = "0.9.0"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"ppv-lite86",
|
|
1370
|
+
"rand_core",
|
|
1371
|
+
]
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "rand_core"
|
|
1375
|
+
version = "0.9.5"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1378
|
+
dependencies = [
|
|
1379
|
+
"getrandom 0.3.4",
|
|
1380
|
+
]
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "rayon"
|
|
1384
|
+
version = "1.12.0"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1387
|
+
dependencies = [
|
|
1388
|
+
"either",
|
|
1389
|
+
"rayon-core",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "rayon-core"
|
|
1394
|
+
version = "1.13.0"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"crossbeam-deque",
|
|
1399
|
+
"crossbeam-utils",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "regex"
|
|
1404
|
+
version = "1.12.3"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"aho-corasick",
|
|
1409
|
+
"memchr",
|
|
1410
|
+
"regex-automata",
|
|
1411
|
+
"regex-syntax",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "regex-automata"
|
|
1416
|
+
version = "0.4.14"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"aho-corasick",
|
|
1421
|
+
"memchr",
|
|
1422
|
+
"regex-syntax",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "regex-syntax"
|
|
1427
|
+
version = "0.8.10"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "reqwest"
|
|
1433
|
+
version = "0.13.4"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"base64",
|
|
1438
|
+
"bytes",
|
|
1439
|
+
"futures-core",
|
|
1440
|
+
"futures-util",
|
|
1441
|
+
"http",
|
|
1442
|
+
"http-body",
|
|
1443
|
+
"http-body-util",
|
|
1444
|
+
"hyper",
|
|
1445
|
+
"hyper-rustls",
|
|
1446
|
+
"hyper-util",
|
|
1447
|
+
"js-sys",
|
|
1448
|
+
"log",
|
|
1449
|
+
"mime_guess",
|
|
1450
|
+
"percent-encoding",
|
|
1451
|
+
"pin-project-lite",
|
|
1452
|
+
"quinn",
|
|
1453
|
+
"rustls",
|
|
1454
|
+
"rustls-pki-types",
|
|
1455
|
+
"rustls-platform-verifier",
|
|
1456
|
+
"serde",
|
|
1457
|
+
"serde_json",
|
|
1458
|
+
"serde_urlencoded",
|
|
1459
|
+
"sync_wrapper",
|
|
1460
|
+
"tokio",
|
|
1461
|
+
"tokio-rustls",
|
|
1462
|
+
"tokio-util",
|
|
1463
|
+
"tower",
|
|
1464
|
+
"tower-http",
|
|
1465
|
+
"tower-service",
|
|
1466
|
+
"url",
|
|
1467
|
+
"wasm-bindgen",
|
|
1468
|
+
"wasm-bindgen-futures",
|
|
1469
|
+
"wasm-streams",
|
|
1470
|
+
"web-sys",
|
|
1471
|
+
]
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "ring"
|
|
1475
|
+
version = "0.17.14"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"cc",
|
|
1480
|
+
"cfg-if",
|
|
1481
|
+
"getrandom 0.2.17",
|
|
1482
|
+
"libc",
|
|
1483
|
+
"untrusted",
|
|
1484
|
+
"windows-sys 0.52.0",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "rmp"
|
|
1489
|
+
version = "0.8.15"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"num-traits",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "rmp-serde"
|
|
1498
|
+
version = "1.3.1"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"rmp",
|
|
1503
|
+
"serde",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "rustc-hash"
|
|
1508
|
+
version = "2.1.2"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "rustc_version"
|
|
1514
|
+
version = "0.4.1"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"semver",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "rustls"
|
|
1523
|
+
version = "0.23.40"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"aws-lc-rs",
|
|
1528
|
+
"once_cell",
|
|
1529
|
+
"rustls-pki-types",
|
|
1530
|
+
"rustls-webpki",
|
|
1531
|
+
"subtle",
|
|
1532
|
+
"zeroize",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "rustls-native-certs"
|
|
1537
|
+
version = "0.8.4"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"openssl-probe",
|
|
1542
|
+
"rustls-pki-types",
|
|
1543
|
+
"schannel",
|
|
1544
|
+
"security-framework",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "rustls-pki-types"
|
|
1549
|
+
version = "1.14.1"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"web-time",
|
|
1554
|
+
"zeroize",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "rustls-platform-verifier"
|
|
1559
|
+
version = "0.7.0"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"core-foundation",
|
|
1564
|
+
"core-foundation-sys",
|
|
1565
|
+
"jni",
|
|
1566
|
+
"log",
|
|
1567
|
+
"once_cell",
|
|
1568
|
+
"rustls",
|
|
1569
|
+
"rustls-native-certs",
|
|
1570
|
+
"rustls-platform-verifier-android",
|
|
1571
|
+
"rustls-webpki",
|
|
1572
|
+
"security-framework",
|
|
1573
|
+
"security-framework-sys",
|
|
1574
|
+
"webpki-root-certs",
|
|
1575
|
+
"windows-sys 0.61.2",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "rustls-platform-verifier-android"
|
|
1580
|
+
version = "0.1.1"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "rustls-webpki"
|
|
1586
|
+
version = "0.103.13"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"aws-lc-rs",
|
|
1591
|
+
"ring",
|
|
1592
|
+
"rustls-pki-types",
|
|
1593
|
+
"untrusted",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "rustversion"
|
|
1598
|
+
version = "1.0.22"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "ryu"
|
|
1604
|
+
version = "1.0.23"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "same-file"
|
|
1610
|
+
version = "1.0.6"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1613
|
+
dependencies = [
|
|
1614
|
+
"winapi-util",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "schannel"
|
|
1619
|
+
version = "0.1.29"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"windows-sys 0.61.2",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "secrecy"
|
|
1628
|
+
version = "0.10.3"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
|
|
1631
|
+
dependencies = [
|
|
1632
|
+
"serde",
|
|
1633
|
+
"zeroize",
|
|
1634
|
+
]
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "security-framework"
|
|
1638
|
+
version = "3.7.0"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1641
|
+
dependencies = [
|
|
1642
|
+
"bitflags",
|
|
1643
|
+
"core-foundation",
|
|
1644
|
+
"core-foundation-sys",
|
|
1645
|
+
"libc",
|
|
1646
|
+
"security-framework-sys",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "security-framework-sys"
|
|
1651
|
+
version = "2.17.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"core-foundation-sys",
|
|
1656
|
+
"libc",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "semver"
|
|
1661
|
+
version = "1.0.28"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "serde"
|
|
1667
|
+
version = "1.0.228"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"serde_core",
|
|
1672
|
+
"serde_derive",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "serde_core"
|
|
1677
|
+
version = "1.0.228"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"serde_derive",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "serde_derive"
|
|
1686
|
+
version = "1.0.228"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"proc-macro2",
|
|
1691
|
+
"quote",
|
|
1692
|
+
"syn",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "serde_json"
|
|
1697
|
+
version = "1.0.150"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"itoa",
|
|
1702
|
+
"memchr",
|
|
1703
|
+
"serde",
|
|
1704
|
+
"serde_core",
|
|
1705
|
+
"zmij",
|
|
1706
|
+
]
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "serde_urlencoded"
|
|
1710
|
+
version = "0.7.1"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1713
|
+
dependencies = [
|
|
1714
|
+
"form_urlencoded",
|
|
1715
|
+
"itoa",
|
|
1716
|
+
"ryu",
|
|
1717
|
+
"serde",
|
|
1718
|
+
]
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "shlex"
|
|
1722
|
+
version = "2.0.1"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "simd-adler32"
|
|
1728
|
+
version = "0.3.9"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "simd_cesu8"
|
|
1734
|
+
version = "1.1.1"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
1737
|
+
dependencies = [
|
|
1738
|
+
"rustc_version",
|
|
1739
|
+
"simdutf8",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "simdutf8"
|
|
1744
|
+
version = "0.1.5"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "slab"
|
|
1750
|
+
version = "0.4.12"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "smallvec"
|
|
1756
|
+
version = "1.15.1"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "socket2"
|
|
1762
|
+
version = "0.6.4"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"libc",
|
|
1767
|
+
"windows-sys 0.61.2",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "stable_deref_trait"
|
|
1772
|
+
version = "1.2.1"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "strsim"
|
|
1778
|
+
version = "0.11.1"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "subtle"
|
|
1784
|
+
version = "2.6.1"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "syn"
|
|
1790
|
+
version = "2.0.117"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1793
|
+
dependencies = [
|
|
1794
|
+
"proc-macro2",
|
|
1795
|
+
"quote",
|
|
1796
|
+
"unicode-ident",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "sync_wrapper"
|
|
1801
|
+
version = "1.0.2"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"futures-core",
|
|
1806
|
+
]
|
|
1807
|
+
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "synstructure"
|
|
1810
|
+
version = "0.13.2"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1813
|
+
dependencies = [
|
|
1814
|
+
"proc-macro2",
|
|
1815
|
+
"quote",
|
|
1816
|
+
"syn",
|
|
1817
|
+
]
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "target-lexicon"
|
|
1821
|
+
version = "0.13.5"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "thiserror"
|
|
1827
|
+
version = "2.0.18"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1830
|
+
dependencies = [
|
|
1831
|
+
"thiserror-impl",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "thiserror-impl"
|
|
1836
|
+
version = "2.0.18"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"proc-macro2",
|
|
1841
|
+
"quote",
|
|
1842
|
+
"syn",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "tinystr"
|
|
1847
|
+
version = "0.8.3"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1850
|
+
dependencies = [
|
|
1851
|
+
"displaydoc",
|
|
1852
|
+
"zerovec",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "tinytemplate"
|
|
1857
|
+
version = "1.2.1"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"serde",
|
|
1862
|
+
"serde_json",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "tinyvec"
|
|
1867
|
+
version = "1.11.0"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"tinyvec_macros",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "tinyvec_macros"
|
|
1876
|
+
version = "0.1.1"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "tokio"
|
|
1882
|
+
version = "1.52.3"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1885
|
+
dependencies = [
|
|
1886
|
+
"bytes",
|
|
1887
|
+
"libc",
|
|
1888
|
+
"mio",
|
|
1889
|
+
"pin-project-lite",
|
|
1890
|
+
"socket2",
|
|
1891
|
+
"tokio-macros",
|
|
1892
|
+
"windows-sys 0.61.2",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "tokio-macros"
|
|
1897
|
+
version = "2.7.0"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"proc-macro2",
|
|
1902
|
+
"quote",
|
|
1903
|
+
"syn",
|
|
1904
|
+
]
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "tokio-rustls"
|
|
1908
|
+
version = "0.26.4"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"rustls",
|
|
1913
|
+
"tokio",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "tokio-stream"
|
|
1918
|
+
version = "0.1.18"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
1921
|
+
dependencies = [
|
|
1922
|
+
"futures-core",
|
|
1923
|
+
"pin-project-lite",
|
|
1924
|
+
"tokio",
|
|
1925
|
+
]
|
|
1926
|
+
|
|
1927
|
+
[[package]]
|
|
1928
|
+
name = "tokio-util"
|
|
1929
|
+
version = "0.7.18"
|
|
1930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1932
|
+
dependencies = [
|
|
1933
|
+
"bytes",
|
|
1934
|
+
"futures-core",
|
|
1935
|
+
"futures-sink",
|
|
1936
|
+
"pin-project-lite",
|
|
1937
|
+
"tokio",
|
|
1938
|
+
]
|
|
1939
|
+
|
|
1940
|
+
[[package]]
|
|
1941
|
+
name = "tower"
|
|
1942
|
+
version = "0.5.3"
|
|
1943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1944
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1945
|
+
dependencies = [
|
|
1946
|
+
"futures-core",
|
|
1947
|
+
"futures-util",
|
|
1948
|
+
"pin-project-lite",
|
|
1949
|
+
"sync_wrapper",
|
|
1950
|
+
"tokio",
|
|
1951
|
+
"tokio-util",
|
|
1952
|
+
"tower-layer",
|
|
1953
|
+
"tower-service",
|
|
1954
|
+
"tracing",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "tower-http"
|
|
1959
|
+
version = "0.6.11"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"bitflags",
|
|
1964
|
+
"bytes",
|
|
1965
|
+
"futures-util",
|
|
1966
|
+
"http",
|
|
1967
|
+
"http-body",
|
|
1968
|
+
"pin-project-lite",
|
|
1969
|
+
"tower",
|
|
1970
|
+
"tower-layer",
|
|
1971
|
+
"tower-service",
|
|
1972
|
+
"url",
|
|
1973
|
+
]
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "tower-layer"
|
|
1977
|
+
version = "0.3.3"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1980
|
+
|
|
1981
|
+
[[package]]
|
|
1982
|
+
name = "tower-service"
|
|
1983
|
+
version = "0.3.3"
|
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "tracing"
|
|
1989
|
+
version = "0.1.44"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1992
|
+
dependencies = [
|
|
1993
|
+
"pin-project-lite",
|
|
1994
|
+
"tracing-attributes",
|
|
1995
|
+
"tracing-core",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "tracing-attributes"
|
|
2000
|
+
version = "0.1.31"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"proc-macro2",
|
|
2005
|
+
"quote",
|
|
2006
|
+
"syn",
|
|
2007
|
+
]
|
|
2008
|
+
|
|
2009
|
+
[[package]]
|
|
2010
|
+
name = "tracing-core"
|
|
2011
|
+
version = "0.1.36"
|
|
2012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2013
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2014
|
+
dependencies = [
|
|
2015
|
+
"once_cell",
|
|
2016
|
+
]
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "try-lock"
|
|
2020
|
+
version = "0.2.5"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2023
|
+
|
|
2024
|
+
[[package]]
|
|
2025
|
+
name = "unicase"
|
|
2026
|
+
version = "2.9.0"
|
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "unicode-ident"
|
|
2032
|
+
version = "1.0.24"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "unicode-normalization"
|
|
2038
|
+
version = "0.1.25"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
2041
|
+
dependencies = [
|
|
2042
|
+
"tinyvec",
|
|
2043
|
+
]
|
|
2044
|
+
|
|
2045
|
+
[[package]]
|
|
2046
|
+
name = "unicode-segmentation"
|
|
2047
|
+
version = "1.13.3"
|
|
2048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "unindent"
|
|
2053
|
+
version = "0.2.4"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "untrusted"
|
|
2059
|
+
version = "0.9.0"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "url"
|
|
2065
|
+
version = "2.5.8"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"form_urlencoded",
|
|
2070
|
+
"idna",
|
|
2071
|
+
"percent-encoding",
|
|
2072
|
+
"serde",
|
|
2073
|
+
]
|
|
2074
|
+
|
|
2075
|
+
[[package]]
|
|
2076
|
+
name = "utf8_iter"
|
|
2077
|
+
version = "1.0.4"
|
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2080
|
+
|
|
2081
|
+
[[package]]
|
|
2082
|
+
name = "walkdir"
|
|
2083
|
+
version = "2.5.0"
|
|
2084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2085
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2086
|
+
dependencies = [
|
|
2087
|
+
"same-file",
|
|
2088
|
+
"winapi-util",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "want"
|
|
2093
|
+
version = "0.3.1"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"try-lock",
|
|
2098
|
+
]
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "wasi"
|
|
2102
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "wasip2"
|
|
2108
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2111
|
+
dependencies = [
|
|
2112
|
+
"wit-bindgen",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "wasm-bindgen"
|
|
2117
|
+
version = "0.2.122"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
2120
|
+
dependencies = [
|
|
2121
|
+
"cfg-if",
|
|
2122
|
+
"once_cell",
|
|
2123
|
+
"rustversion",
|
|
2124
|
+
"wasm-bindgen-macro",
|
|
2125
|
+
"wasm-bindgen-shared",
|
|
2126
|
+
]
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "wasm-bindgen-futures"
|
|
2130
|
+
version = "0.4.72"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"js-sys",
|
|
2135
|
+
"wasm-bindgen",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "wasm-bindgen-macro"
|
|
2140
|
+
version = "0.2.122"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"quote",
|
|
2145
|
+
"wasm-bindgen-macro-support",
|
|
2146
|
+
]
|
|
2147
|
+
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "wasm-bindgen-macro-support"
|
|
2150
|
+
version = "0.2.122"
|
|
2151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
2153
|
+
dependencies = [
|
|
2154
|
+
"bumpalo",
|
|
2155
|
+
"proc-macro2",
|
|
2156
|
+
"quote",
|
|
2157
|
+
"syn",
|
|
2158
|
+
"wasm-bindgen-shared",
|
|
2159
|
+
]
|
|
2160
|
+
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "wasm-bindgen-shared"
|
|
2163
|
+
version = "0.2.122"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
2166
|
+
dependencies = [
|
|
2167
|
+
"unicode-ident",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "wasm-streams"
|
|
2172
|
+
version = "0.5.0"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
2175
|
+
dependencies = [
|
|
2176
|
+
"futures-util",
|
|
2177
|
+
"js-sys",
|
|
2178
|
+
"wasm-bindgen",
|
|
2179
|
+
"wasm-bindgen-futures",
|
|
2180
|
+
"web-sys",
|
|
2181
|
+
]
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "web-sys"
|
|
2185
|
+
version = "0.3.99"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
2188
|
+
dependencies = [
|
|
2189
|
+
"js-sys",
|
|
2190
|
+
"wasm-bindgen",
|
|
2191
|
+
]
|
|
2192
|
+
|
|
2193
|
+
[[package]]
|
|
2194
|
+
name = "web-time"
|
|
2195
|
+
version = "1.1.0"
|
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2197
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2198
|
+
dependencies = [
|
|
2199
|
+
"js-sys",
|
|
2200
|
+
"wasm-bindgen",
|
|
2201
|
+
]
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "webpki-root-certs"
|
|
2205
|
+
version = "1.0.7"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"rustls-pki-types",
|
|
2210
|
+
]
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "winapi"
|
|
2214
|
+
version = "0.3.9"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2217
|
+
dependencies = [
|
|
2218
|
+
"winapi-i686-pc-windows-gnu",
|
|
2219
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2220
|
+
]
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2224
|
+
version = "0.4.0"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "winapi-util"
|
|
2230
|
+
version = "0.1.11"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"windows-sys 0.61.2",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2239
|
+
version = "0.4.0"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "windows-link"
|
|
2245
|
+
version = "0.2.1"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2248
|
+
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "windows-sys"
|
|
2251
|
+
version = "0.52.0"
|
|
2252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2254
|
+
dependencies = [
|
|
2255
|
+
"windows-targets 0.52.6",
|
|
2256
|
+
]
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "windows-sys"
|
|
2260
|
+
version = "0.60.2"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2263
|
+
dependencies = [
|
|
2264
|
+
"windows-targets 0.53.5",
|
|
2265
|
+
]
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "windows-sys"
|
|
2269
|
+
version = "0.61.2"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2272
|
+
dependencies = [
|
|
2273
|
+
"windows-link",
|
|
2274
|
+
]
|
|
2275
|
+
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "windows-targets"
|
|
2278
|
+
version = "0.52.6"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2281
|
+
dependencies = [
|
|
2282
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2283
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2284
|
+
"windows_i686_gnu 0.52.6",
|
|
2285
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2286
|
+
"windows_i686_msvc 0.52.6",
|
|
2287
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2288
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2289
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2290
|
+
]
|
|
2291
|
+
|
|
2292
|
+
[[package]]
|
|
2293
|
+
name = "windows-targets"
|
|
2294
|
+
version = "0.53.5"
|
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2297
|
+
dependencies = [
|
|
2298
|
+
"windows-link",
|
|
2299
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2300
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2301
|
+
"windows_i686_gnu 0.53.1",
|
|
2302
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2303
|
+
"windows_i686_msvc 0.53.1",
|
|
2304
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2305
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2306
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2307
|
+
]
|
|
2308
|
+
|
|
2309
|
+
[[package]]
|
|
2310
|
+
name = "windows_aarch64_gnullvm"
|
|
2311
|
+
version = "0.52.6"
|
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "windows_aarch64_gnullvm"
|
|
2317
|
+
version = "0.53.1"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2320
|
+
|
|
2321
|
+
[[package]]
|
|
2322
|
+
name = "windows_aarch64_msvc"
|
|
2323
|
+
version = "0.52.6"
|
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "windows_aarch64_msvc"
|
|
2329
|
+
version = "0.53.1"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2332
|
+
|
|
2333
|
+
[[package]]
|
|
2334
|
+
name = "windows_i686_gnu"
|
|
2335
|
+
version = "0.52.6"
|
|
2336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2337
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2338
|
+
|
|
2339
|
+
[[package]]
|
|
2340
|
+
name = "windows_i686_gnu"
|
|
2341
|
+
version = "0.53.1"
|
|
2342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2344
|
+
|
|
2345
|
+
[[package]]
|
|
2346
|
+
name = "windows_i686_gnullvm"
|
|
2347
|
+
version = "0.52.6"
|
|
2348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2349
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "windows_i686_gnullvm"
|
|
2353
|
+
version = "0.53.1"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "windows_i686_msvc"
|
|
2359
|
+
version = "0.52.6"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2362
|
+
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "windows_i686_msvc"
|
|
2365
|
+
version = "0.53.1"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2368
|
+
|
|
2369
|
+
[[package]]
|
|
2370
|
+
name = "windows_x86_64_gnu"
|
|
2371
|
+
version = "0.52.6"
|
|
2372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2373
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2374
|
+
|
|
2375
|
+
[[package]]
|
|
2376
|
+
name = "windows_x86_64_gnu"
|
|
2377
|
+
version = "0.53.1"
|
|
2378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "windows_x86_64_gnullvm"
|
|
2383
|
+
version = "0.52.6"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2386
|
+
|
|
2387
|
+
[[package]]
|
|
2388
|
+
name = "windows_x86_64_gnullvm"
|
|
2389
|
+
version = "0.53.1"
|
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2392
|
+
|
|
2393
|
+
[[package]]
|
|
2394
|
+
name = "windows_x86_64_msvc"
|
|
2395
|
+
version = "0.52.6"
|
|
2396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2398
|
+
|
|
2399
|
+
[[package]]
|
|
2400
|
+
name = "windows_x86_64_msvc"
|
|
2401
|
+
version = "0.53.1"
|
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2403
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "wit-bindgen"
|
|
2407
|
+
version = "0.57.1"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2410
|
+
|
|
2411
|
+
[[package]]
|
|
2412
|
+
name = "writeable"
|
|
2413
|
+
version = "0.6.3"
|
|
2414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2416
|
+
|
|
2417
|
+
[[package]]
|
|
2418
|
+
name = "xxhash-rust"
|
|
2419
|
+
version = "0.8.15"
|
|
2420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
2422
|
+
|
|
2423
|
+
[[package]]
|
|
2424
|
+
name = "yoke"
|
|
2425
|
+
version = "0.8.3"
|
|
2426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2427
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2428
|
+
dependencies = [
|
|
2429
|
+
"stable_deref_trait",
|
|
2430
|
+
"yoke-derive",
|
|
2431
|
+
"zerofrom",
|
|
2432
|
+
]
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "yoke-derive"
|
|
2436
|
+
version = "0.8.2"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2439
|
+
dependencies = [
|
|
2440
|
+
"proc-macro2",
|
|
2441
|
+
"quote",
|
|
2442
|
+
"syn",
|
|
2443
|
+
"synstructure",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "zerocopy"
|
|
2448
|
+
version = "0.8.50"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
2451
|
+
dependencies = [
|
|
2452
|
+
"zerocopy-derive",
|
|
2453
|
+
]
|
|
2454
|
+
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "zerocopy-derive"
|
|
2457
|
+
version = "0.8.50"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
2460
|
+
dependencies = [
|
|
2461
|
+
"proc-macro2",
|
|
2462
|
+
"quote",
|
|
2463
|
+
"syn",
|
|
2464
|
+
]
|
|
2465
|
+
|
|
2466
|
+
[[package]]
|
|
2467
|
+
name = "zerofrom"
|
|
2468
|
+
version = "0.1.8"
|
|
2469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2471
|
+
dependencies = [
|
|
2472
|
+
"zerofrom-derive",
|
|
2473
|
+
]
|
|
2474
|
+
|
|
2475
|
+
[[package]]
|
|
2476
|
+
name = "zerofrom-derive"
|
|
2477
|
+
version = "0.1.7"
|
|
2478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2480
|
+
dependencies = [
|
|
2481
|
+
"proc-macro2",
|
|
2482
|
+
"quote",
|
|
2483
|
+
"syn",
|
|
2484
|
+
"synstructure",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "zeroize"
|
|
2489
|
+
version = "1.8.2"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
2492
|
+
|
|
2493
|
+
[[package]]
|
|
2494
|
+
name = "zerotrie"
|
|
2495
|
+
version = "0.2.4"
|
|
2496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2498
|
+
dependencies = [
|
|
2499
|
+
"displaydoc",
|
|
2500
|
+
"yoke",
|
|
2501
|
+
"zerofrom",
|
|
2502
|
+
]
|
|
2503
|
+
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "zerovec"
|
|
2506
|
+
version = "0.11.6"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2509
|
+
dependencies = [
|
|
2510
|
+
"yoke",
|
|
2511
|
+
"zerofrom",
|
|
2512
|
+
"zerovec-derive",
|
|
2513
|
+
]
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "zerovec-derive"
|
|
2517
|
+
version = "0.11.3"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2520
|
+
dependencies = [
|
|
2521
|
+
"proc-macro2",
|
|
2522
|
+
"quote",
|
|
2523
|
+
"syn",
|
|
2524
|
+
]
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "zmij"
|
|
2528
|
+
version = "1.0.21"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|