jiter-android 0.16.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jiter_android-0.16.0/Cargo.lock +1181 -0
- jiter_android-0.16.0/Cargo.toml +30 -0
- jiter_android-0.16.0/LICENSE +21 -0
- jiter_android-0.16.0/PKG-INFO +127 -0
- jiter_android-0.16.0/README.md +115 -0
- jiter_android-0.16.0/crates/jiter/Cargo.toml +88 -0
- jiter_android-0.16.0/crates/jiter/LICENSE +21 -0
- jiter_android-0.16.0/crates/jiter/README.md +156 -0
- jiter_android-0.16.0/crates/jiter/benches/README.md +13 -0
- jiter_android-0.16.0/crates/jiter/benches/bigints_array.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/floats_array.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/generate_big.py +21 -0
- jiter_android-0.16.0/crates/jiter/benches/main.rs +403 -0
- jiter_android-0.16.0/crates/jiter/benches/massive_ints_array.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/medium_response.json +93 -0
- jiter_android-0.16.0/crates/jiter/benches/pass1.json +58 -0
- jiter_android-0.16.0/crates/jiter/benches/pass2.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/python.rs +140 -0
- jiter_android-0.16.0/crates/jiter/benches/sentence.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/short_numbers.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/string_array.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/string_array_unique.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/true_array.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/true_object.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/unicode.json +1 -0
- jiter_android-0.16.0/crates/jiter/benches/x100.json +1 -0
- jiter_android-0.16.0/crates/jiter/build.rs +4 -0
- jiter_android-0.16.0/crates/jiter/src/errors.rs +313 -0
- jiter_android-0.16.0/crates/jiter/src/jiter.rs +398 -0
- jiter_android-0.16.0/crates/jiter/src/lib.rs +205 -0
- jiter_android-0.16.0/crates/jiter/src/number_decoder.rs +569 -0
- jiter_android-0.16.0/crates/jiter/src/parse.rs +289 -0
- jiter_android-0.16.0/crates/jiter/src/py_lossless_float.rs +92 -0
- jiter_android-0.16.0/crates/jiter/src/py_string_cache.rs +272 -0
- jiter_android-0.16.0/crates/jiter/src/python.rs +395 -0
- jiter_android-0.16.0/crates/jiter/src/serde.rs +670 -0
- jiter_android-0.16.0/crates/jiter/src/simd_aarch64.rs +265 -0
- jiter_android-0.16.0/crates/jiter/src/string_decoder.rs +464 -0
- jiter_android-0.16.0/crates/jiter/src/value.rs +716 -0
- jiter_android-0.16.0/crates/jiter/tests/main.rs +1801 -0
- jiter_android-0.16.0/crates/jiter/tests/python.rs +88 -0
- jiter_android-0.16.0/crates/jiter/tests/serde.rs +524 -0
- jiter_android-0.16.0/crates/jiter-python/Cargo.toml +34 -0
- jiter_android-0.16.0/crates/jiter-python/LICENSE +21 -0
- jiter_android-0.16.0/crates/jiter-python/README.md +115 -0
- jiter_android-0.16.0/crates/jiter-python/bench.py +111 -0
- jiter_android-0.16.0/crates/jiter-python/jiter.pyi +68 -0
- jiter_android-0.16.0/crates/jiter-python/src/lib.rs +76 -0
- jiter_android-0.16.0/crates/jiter-python/tests/test_jiter.py +415 -0
- jiter_android-0.16.0/pyproject.toml +21 -0
|
@@ -0,0 +1,1181 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"getrandom 0.3.4",
|
|
13
|
+
"once_cell",
|
|
14
|
+
"version_check",
|
|
15
|
+
"zerocopy",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[[package]]
|
|
19
|
+
name = "aho-corasick"
|
|
20
|
+
version = "1.1.4"
|
|
21
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
22
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"memchr",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "anes"
|
|
29
|
+
version = "0.1.6"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "anstyle"
|
|
35
|
+
version = "1.0.14"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "autocfg"
|
|
41
|
+
version = "1.5.1"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "bit-set"
|
|
47
|
+
version = "0.8.0"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"bit-vec",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "bit-vec"
|
|
56
|
+
version = "0.8.0"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "bitflags"
|
|
62
|
+
version = "2.13.0"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "bitvec"
|
|
68
|
+
version = "1.1.1"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"funty",
|
|
73
|
+
"radium",
|
|
74
|
+
"tap",
|
|
75
|
+
"wyz",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "bumpalo"
|
|
80
|
+
version = "3.20.3"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "cast"
|
|
86
|
+
version = "0.3.0"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "cfg-if"
|
|
92
|
+
version = "1.0.4"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "ciborium"
|
|
98
|
+
version = "0.2.2"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"ciborium-io",
|
|
103
|
+
"ciborium-ll",
|
|
104
|
+
"serde",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "ciborium-io"
|
|
109
|
+
version = "0.2.2"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "ciborium-ll"
|
|
115
|
+
version = "0.2.2"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"ciborium-io",
|
|
120
|
+
"half",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "clap"
|
|
125
|
+
version = "4.6.1"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"clap_builder",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "clap_builder"
|
|
134
|
+
version = "4.6.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"anstyle",
|
|
139
|
+
"clap_lex",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "clap_lex"
|
|
144
|
+
version = "1.1.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "codspeed"
|
|
150
|
+
version = "2.10.1"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "93f4cce9c27c49c4f101fffeebb1826f41a9df2e7498b7cd4d95c0658b796c6c"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"colored",
|
|
155
|
+
"libc",
|
|
156
|
+
"serde",
|
|
157
|
+
"serde_json",
|
|
158
|
+
"uuid",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "codspeed-criterion-compat"
|
|
163
|
+
version = "2.10.1"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "c3c23d880a28a2aab52d38ca8481dd7a3187157d0a952196b6db1db3c8499725"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"codspeed",
|
|
168
|
+
"codspeed-criterion-compat-walltime",
|
|
169
|
+
"colored",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "codspeed-criterion-compat-walltime"
|
|
174
|
+
version = "2.10.1"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "7b0a2f7365e347f4f22a67e9ea689bf7bc89900a354e22e26cf8a531a42c8fbb"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"anes",
|
|
179
|
+
"cast",
|
|
180
|
+
"ciborium",
|
|
181
|
+
"clap",
|
|
182
|
+
"codspeed",
|
|
183
|
+
"criterion-plot",
|
|
184
|
+
"is-terminal",
|
|
185
|
+
"itertools",
|
|
186
|
+
"num-traits",
|
|
187
|
+
"once_cell",
|
|
188
|
+
"oorandom",
|
|
189
|
+
"plotters",
|
|
190
|
+
"rayon",
|
|
191
|
+
"regex",
|
|
192
|
+
"serde",
|
|
193
|
+
"serde_derive",
|
|
194
|
+
"serde_json",
|
|
195
|
+
"tinytemplate",
|
|
196
|
+
"walkdir",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "colored"
|
|
201
|
+
version = "2.2.0"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"lazy_static",
|
|
206
|
+
"windows-sys 0.59.0",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "criterion-plot"
|
|
211
|
+
version = "0.5.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"cast",
|
|
216
|
+
"itertools",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "crossbeam-deque"
|
|
221
|
+
version = "0.8.6"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"crossbeam-epoch",
|
|
226
|
+
"crossbeam-utils",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "crossbeam-epoch"
|
|
231
|
+
version = "0.9.18"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"crossbeam-utils",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "crossbeam-utils"
|
|
240
|
+
version = "0.8.21"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "crunchy"
|
|
246
|
+
version = "0.2.4"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "either"
|
|
252
|
+
version = "1.16.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "equivalent"
|
|
258
|
+
version = "1.0.2"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "errno"
|
|
264
|
+
version = "0.3.14"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"libc",
|
|
269
|
+
"windows-sys 0.61.2",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "fastrand"
|
|
274
|
+
version = "2.4.1"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "fnv"
|
|
280
|
+
version = "1.0.7"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "funty"
|
|
286
|
+
version = "2.0.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "futures-core"
|
|
292
|
+
version = "0.3.32"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "futures-task"
|
|
298
|
+
version = "0.3.32"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "futures-util"
|
|
304
|
+
version = "0.3.32"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"futures-core",
|
|
309
|
+
"futures-task",
|
|
310
|
+
"pin-project-lite",
|
|
311
|
+
"slab",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "getrandom"
|
|
316
|
+
version = "0.3.4"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"cfg-if",
|
|
321
|
+
"libc",
|
|
322
|
+
"r-efi 5.3.0",
|
|
323
|
+
"wasip2",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "getrandom"
|
|
328
|
+
version = "0.4.3"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"cfg-if",
|
|
333
|
+
"libc",
|
|
334
|
+
"r-efi 6.0.0",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "half"
|
|
339
|
+
version = "2.7.1"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"cfg-if",
|
|
344
|
+
"crunchy",
|
|
345
|
+
"zerocopy",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "hashbrown"
|
|
350
|
+
version = "0.17.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "heck"
|
|
356
|
+
version = "0.5.0"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "hermit-abi"
|
|
362
|
+
version = "0.5.2"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "indexmap"
|
|
368
|
+
version = "2.14.0"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"equivalent",
|
|
373
|
+
"hashbrown",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "is-terminal"
|
|
378
|
+
version = "0.4.17"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"hermit-abi",
|
|
383
|
+
"libc",
|
|
384
|
+
"windows-sys 0.61.2",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "itertools"
|
|
389
|
+
version = "0.10.5"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"either",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "itoa"
|
|
398
|
+
version = "1.0.18"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "jiter"
|
|
404
|
+
version = "0.16.0"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"ahash",
|
|
407
|
+
"bitvec",
|
|
408
|
+
"codspeed-criterion-compat",
|
|
409
|
+
"lexical-parse-float",
|
|
410
|
+
"num-bigint",
|
|
411
|
+
"num-traits",
|
|
412
|
+
"paste",
|
|
413
|
+
"proptest",
|
|
414
|
+
"pyo3",
|
|
415
|
+
"pyo3-build-config",
|
|
416
|
+
"serde",
|
|
417
|
+
"serde_json",
|
|
418
|
+
"smallvec",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "jiter-python"
|
|
423
|
+
version = "0.16.0"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"jiter",
|
|
426
|
+
"pyo3",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "js-sys"
|
|
431
|
+
version = "0.3.103"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"cfg-if",
|
|
436
|
+
"futures-util",
|
|
437
|
+
"wasm-bindgen",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "lazy_static"
|
|
442
|
+
version = "1.5.0"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "lexical-parse-float"
|
|
448
|
+
version = "1.0.6"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"lexical-parse-integer",
|
|
453
|
+
"lexical-util",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "lexical-parse-integer"
|
|
458
|
+
version = "1.0.6"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"lexical-util",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "lexical-util"
|
|
467
|
+
version = "1.0.7"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "libc"
|
|
473
|
+
version = "0.2.186"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "linux-raw-sys"
|
|
479
|
+
version = "0.12.1"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "memchr"
|
|
485
|
+
version = "2.8.2"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "num-bigint"
|
|
491
|
+
version = "0.4.6"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"num-integer",
|
|
496
|
+
"num-traits",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "num-integer"
|
|
501
|
+
version = "0.1.46"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"num-traits",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "num-traits"
|
|
510
|
+
version = "0.2.19"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"autocfg",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "once_cell"
|
|
519
|
+
version = "1.21.4"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "oorandom"
|
|
525
|
+
version = "11.1.5"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "paste"
|
|
531
|
+
version = "1.0.15"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "pin-project-lite"
|
|
537
|
+
version = "0.2.17"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "plotters"
|
|
543
|
+
version = "0.3.7"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"num-traits",
|
|
548
|
+
"plotters-backend",
|
|
549
|
+
"plotters-svg",
|
|
550
|
+
"wasm-bindgen",
|
|
551
|
+
"web-sys",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "plotters-backend"
|
|
556
|
+
version = "0.3.7"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "plotters-svg"
|
|
562
|
+
version = "0.3.7"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"plotters-backend",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "portable-atomic"
|
|
571
|
+
version = "1.13.1"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "ppv-lite86"
|
|
577
|
+
version = "0.2.21"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"zerocopy",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "proc-macro2"
|
|
586
|
+
version = "1.0.106"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"unicode-ident",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "proptest"
|
|
595
|
+
version = "1.11.0"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"bit-set",
|
|
600
|
+
"bit-vec",
|
|
601
|
+
"bitflags",
|
|
602
|
+
"num-traits",
|
|
603
|
+
"rand",
|
|
604
|
+
"rand_chacha",
|
|
605
|
+
"rand_xorshift",
|
|
606
|
+
"regex-syntax",
|
|
607
|
+
"rusty-fork",
|
|
608
|
+
"tempfile",
|
|
609
|
+
"unarray",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "pyo3"
|
|
614
|
+
version = "0.29.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"libc",
|
|
619
|
+
"num-bigint",
|
|
620
|
+
"num-traits",
|
|
621
|
+
"once_cell",
|
|
622
|
+
"portable-atomic",
|
|
623
|
+
"pyo3-build-config",
|
|
624
|
+
"pyo3-ffi",
|
|
625
|
+
"pyo3-macros",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "pyo3-build-config"
|
|
630
|
+
version = "0.29.0"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"target-lexicon",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "pyo3-ffi"
|
|
639
|
+
version = "0.29.0"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"libc",
|
|
644
|
+
"pyo3-build-config",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "pyo3-macros"
|
|
649
|
+
version = "0.29.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"proc-macro2",
|
|
654
|
+
"pyo3-macros-backend",
|
|
655
|
+
"quote",
|
|
656
|
+
"syn",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "pyo3-macros-backend"
|
|
661
|
+
version = "0.29.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"heck",
|
|
666
|
+
"proc-macro2",
|
|
667
|
+
"quote",
|
|
668
|
+
"syn",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "quick-error"
|
|
673
|
+
version = "1.2.3"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "quote"
|
|
679
|
+
version = "1.0.46"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"proc-macro2",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "r-efi"
|
|
688
|
+
version = "5.3.0"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "r-efi"
|
|
694
|
+
version = "6.0.0"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "radium"
|
|
700
|
+
version = "0.7.0"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "rand"
|
|
706
|
+
version = "0.9.4"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"rand_chacha",
|
|
711
|
+
"rand_core",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "rand_chacha"
|
|
716
|
+
version = "0.9.0"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"ppv-lite86",
|
|
721
|
+
"rand_core",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "rand_core"
|
|
726
|
+
version = "0.9.5"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"getrandom 0.3.4",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "rand_xorshift"
|
|
735
|
+
version = "0.4.0"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"rand_core",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "rayon"
|
|
744
|
+
version = "1.12.0"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"either",
|
|
749
|
+
"rayon-core",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "rayon-core"
|
|
754
|
+
version = "1.13.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"crossbeam-deque",
|
|
759
|
+
"crossbeam-utils",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "regex"
|
|
764
|
+
version = "1.12.4"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"aho-corasick",
|
|
769
|
+
"memchr",
|
|
770
|
+
"regex-automata",
|
|
771
|
+
"regex-syntax",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "regex-automata"
|
|
776
|
+
version = "0.4.14"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"aho-corasick",
|
|
781
|
+
"memchr",
|
|
782
|
+
"regex-syntax",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "regex-syntax"
|
|
787
|
+
version = "0.8.11"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "rustix"
|
|
793
|
+
version = "1.1.4"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"bitflags",
|
|
798
|
+
"errno",
|
|
799
|
+
"libc",
|
|
800
|
+
"linux-raw-sys",
|
|
801
|
+
"windows-sys 0.61.2",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "rustversion"
|
|
806
|
+
version = "1.0.22"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "rusty-fork"
|
|
812
|
+
version = "0.3.1"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"fnv",
|
|
817
|
+
"quick-error",
|
|
818
|
+
"tempfile",
|
|
819
|
+
"wait-timeout",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "same-file"
|
|
824
|
+
version = "1.0.6"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"winapi-util",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "serde"
|
|
833
|
+
version = "1.0.228"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"serde_core",
|
|
838
|
+
"serde_derive",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "serde_core"
|
|
843
|
+
version = "1.0.228"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"serde_derive",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "serde_derive"
|
|
852
|
+
version = "1.0.228"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"proc-macro2",
|
|
857
|
+
"quote",
|
|
858
|
+
"syn",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "serde_json"
|
|
863
|
+
version = "1.0.150"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"indexmap",
|
|
868
|
+
"itoa",
|
|
869
|
+
"memchr",
|
|
870
|
+
"serde",
|
|
871
|
+
"serde_core",
|
|
872
|
+
"zmij",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "slab"
|
|
877
|
+
version = "0.4.12"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "smallvec"
|
|
883
|
+
version = "1.15.2"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "syn"
|
|
889
|
+
version = "2.0.118"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"proc-macro2",
|
|
894
|
+
"quote",
|
|
895
|
+
"unicode-ident",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "tap"
|
|
900
|
+
version = "1.0.1"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "target-lexicon"
|
|
906
|
+
version = "0.13.5"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "tempfile"
|
|
912
|
+
version = "3.27.0"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"fastrand",
|
|
917
|
+
"getrandom 0.4.3",
|
|
918
|
+
"once_cell",
|
|
919
|
+
"rustix",
|
|
920
|
+
"windows-sys 0.61.2",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "tinytemplate"
|
|
925
|
+
version = "1.2.1"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"serde",
|
|
930
|
+
"serde_json",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "unarray"
|
|
935
|
+
version = "0.1.4"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "unicode-ident"
|
|
941
|
+
version = "1.0.24"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "uuid"
|
|
947
|
+
version = "1.23.4"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"getrandom 0.4.3",
|
|
952
|
+
"js-sys",
|
|
953
|
+
"wasm-bindgen",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "version_check"
|
|
958
|
+
version = "0.9.5"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "wait-timeout"
|
|
964
|
+
version = "0.2.1"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"libc",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "walkdir"
|
|
973
|
+
version = "2.5.0"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"same-file",
|
|
978
|
+
"winapi-util",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "wasip2"
|
|
983
|
+
version = "1.0.4+wasi-0.2.12"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"wit-bindgen",
|
|
988
|
+
]
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "wasm-bindgen"
|
|
992
|
+
version = "0.2.126"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"cfg-if",
|
|
997
|
+
"once_cell",
|
|
998
|
+
"rustversion",
|
|
999
|
+
"wasm-bindgen-macro",
|
|
1000
|
+
"wasm-bindgen-shared",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "wasm-bindgen-macro"
|
|
1005
|
+
version = "0.2.126"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"quote",
|
|
1010
|
+
"wasm-bindgen-macro-support",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "wasm-bindgen-macro-support"
|
|
1015
|
+
version = "0.2.126"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"bumpalo",
|
|
1020
|
+
"proc-macro2",
|
|
1021
|
+
"quote",
|
|
1022
|
+
"syn",
|
|
1023
|
+
"wasm-bindgen-shared",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "wasm-bindgen-shared"
|
|
1028
|
+
version = "0.2.126"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"unicode-ident",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "web-sys"
|
|
1037
|
+
version = "0.3.103"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"js-sys",
|
|
1042
|
+
"wasm-bindgen",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "winapi-util"
|
|
1047
|
+
version = "0.1.11"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"windows-sys 0.61.2",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "windows-link"
|
|
1056
|
+
version = "0.2.1"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "windows-sys"
|
|
1062
|
+
version = "0.59.0"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"windows-targets",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "windows-sys"
|
|
1071
|
+
version = "0.61.2"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"windows-link",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "windows-targets"
|
|
1080
|
+
version = "0.52.6"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"windows_aarch64_gnullvm",
|
|
1085
|
+
"windows_aarch64_msvc",
|
|
1086
|
+
"windows_i686_gnu",
|
|
1087
|
+
"windows_i686_gnullvm",
|
|
1088
|
+
"windows_i686_msvc",
|
|
1089
|
+
"windows_x86_64_gnu",
|
|
1090
|
+
"windows_x86_64_gnullvm",
|
|
1091
|
+
"windows_x86_64_msvc",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "windows_aarch64_gnullvm"
|
|
1096
|
+
version = "0.52.6"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "windows_aarch64_msvc"
|
|
1102
|
+
version = "0.52.6"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "windows_i686_gnu"
|
|
1108
|
+
version = "0.52.6"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "windows_i686_gnullvm"
|
|
1114
|
+
version = "0.52.6"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "windows_i686_msvc"
|
|
1120
|
+
version = "0.52.6"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "windows_x86_64_gnu"
|
|
1126
|
+
version = "0.52.6"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "windows_x86_64_gnullvm"
|
|
1132
|
+
version = "0.52.6"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "windows_x86_64_msvc"
|
|
1138
|
+
version = "0.52.6"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "wit-bindgen"
|
|
1144
|
+
version = "0.57.1"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "wyz"
|
|
1150
|
+
version = "0.5.1"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"tap",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "zerocopy"
|
|
1159
|
+
version = "0.8.52"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"zerocopy-derive",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "zerocopy-derive"
|
|
1168
|
+
version = "0.8.52"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"proc-macro2",
|
|
1173
|
+
"quote",
|
|
1174
|
+
"syn",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "zmij"
|
|
1179
|
+
version = "1.0.21"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|