gigatoken 0.1.0
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.
- checksums.yaml +7 -0
- data/Cargo.lock +3016 -0
- data/Cargo.toml +135 -0
- data/LICENSE +21 -0
- data/README.md +141 -0
- data/exe/gigatoken +9 -0
- data/ext/gigatoken/Cargo.toml +24 -0
- data/ext/gigatoken/extconf.rb +19 -0
- data/ext/gigatoken/src/error.rs +20 -0
- data/ext/gigatoken/src/gvl.rs +122 -0
- data/ext/gigatoken/src/lib.rs +50 -0
- data/ext/gigatoken/src/sentencepiece.rs +205 -0
- data/ext/gigatoken/src/sources.rs +207 -0
- data/ext/gigatoken/src/tokenizer.rs +571 -0
- data/lib/gigatoken/cli/bench.rb +64 -0
- data/lib/gigatoken/cli/support.rb +132 -0
- data/lib/gigatoken/cli/validate.rb +55 -0
- data/lib/gigatoken/cli.rb +18 -0
- data/lib/gigatoken/hub.rb +242 -0
- data/lib/gigatoken/packed_result.rb +48 -0
- data/lib/gigatoken/tokenizer.rb +117 -0
- data/lib/gigatoken/version.rb +5 -0
- data/lib/gigatoken.rb +29 -0
- data/rust-toolchain.toml +8 -0
- data/src/batch.rs +1808 -0
- data/src/bindings/bridge.rs +396 -0
- data/src/bindings/hub.rs +42 -0
- data/src/bindings/matcher.rs +114 -0
- data/src/bindings/mod.rs +14 -0
- data/src/bindings/padding.rs +177 -0
- data/src/bindings/pretokenize.rs +53 -0
- data/src/bindings/sources.rs +273 -0
- data/src/bindings/train.rs +125 -0
- data/src/bpe/mod.rs +1217 -0
- data/src/bpe/pretoken_cache.rs +495 -0
- data/src/bpe/sentencepiece.rs +1485 -0
- data/src/bpe/tiktoken.rs +2555 -0
- data/src/bpe_train.rs +351 -0
- data/src/input/decompress.rs +11 -0
- data/src/input/file_source.rs +514 -0
- data/src/input/jsonl.rs +94 -0
- data/src/input/mod.rs +333 -0
- data/src/input/parquet.rs +303 -0
- data/src/lib.rs +578 -0
- data/src/load_tokenizer/hf.rs +1036 -0
- data/src/load_tokenizer/hub.rs +344 -0
- data/src/load_tokenizer/mod.rs +3 -0
- data/src/load_tokenizer/tiktoken.rs +87 -0
- data/src/main.rs +95 -0
- data/src/pretokenize/fast/cl100k.rs +426 -0
- data/src/pretokenize/fast/cl100k_family.rs +891 -0
- data/src/pretokenize/fast/deepseek_v3.rs +605 -0
- data/src/pretokenize/fast/kimi.rs +281 -0
- data/src/pretokenize/fast/mask.rs +1486 -0
- data/src/pretokenize/fast/mod.rs +446 -0
- data/src/pretokenize/fast/nemotron.rs +138 -0
- data/src/pretokenize/fast/o200k.rs +347 -0
- data/src/pretokenize/fast/o200k_family.rs +1734 -0
- data/src/pretokenize/fast/olmo3.rs +505 -0
- data/src/pretokenize/fast/qwen2.rs +429 -0
- data/src/pretokenize/fast/qwen3_5.rs +541 -0
- data/src/pretokenize/fast/r50k.rs +1250 -0
- data/src/pretokenize/mod.rs +1079 -0
- data/src/pretokenize/options.rs +188 -0
- data/src/pretokenize/pretoken.rs +20 -0
- data/src/pretokenize/pretokenize_traits.rs +49 -0
- data/src/pretokenize/reference/avx512.rs +522 -0
- data/src/pretokenize/reference/combinator.rs +572 -0
- data/src/pretokenize/reference/mod.rs +28 -0
- data/src/pretokenize/reference/simd.rs +852 -0
- data/src/pretokenize/reference/state_machine.rs +365 -0
- data/src/pretokenize/unicode.rs +546 -0
- data/src/test_hub.rs +28 -0
- data/src/token.rs +42 -0
- metadata +161 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,3016 @@
|
|
|
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 = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"const-random",
|
|
19
|
+
"getrandom 0.3.4",
|
|
20
|
+
"once_cell",
|
|
21
|
+
"version_check",
|
|
22
|
+
"zerocopy",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "aho-corasick"
|
|
27
|
+
version = "1.1.4"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"memchr",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "alloc-no-stdlib"
|
|
36
|
+
version = "2.0.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "alloc-stdlib"
|
|
42
|
+
version = "0.2.4"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"alloc-no-stdlib",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "alloca"
|
|
51
|
+
version = "0.4.0"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"cc",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "android_system_properties"
|
|
60
|
+
version = "0.1.5"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"libc",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "anes"
|
|
69
|
+
version = "0.1.6"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "anstyle"
|
|
75
|
+
version = "1.0.14"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "arrow-array"
|
|
81
|
+
version = "59.1.0"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "9486151b2f0785bafc6fa04fc5c99fcb4495455662e58787ea32eaaed33c4192"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"ahash",
|
|
86
|
+
"arrow-buffer",
|
|
87
|
+
"arrow-data",
|
|
88
|
+
"arrow-schema",
|
|
89
|
+
"chrono",
|
|
90
|
+
"half",
|
|
91
|
+
"hashbrown 0.17.1",
|
|
92
|
+
"num-complex",
|
|
93
|
+
"num-integer",
|
|
94
|
+
"num-traits",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arrow-buffer"
|
|
99
|
+
version = "59.1.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c4776577a87794bfdf0b4e90e2ea12454fa7738ea2823c4be5b9d1851da7b434"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"bytes",
|
|
104
|
+
"half",
|
|
105
|
+
"num-bigint",
|
|
106
|
+
"num-traits",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "arrow-data"
|
|
111
|
+
version = "59.1.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "b38fe43e2e8704360f1464e6e8cc4fc381ef02cc4fb0192afa8df1aaa0115c66"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"arrow-buffer",
|
|
116
|
+
"arrow-schema",
|
|
117
|
+
"half",
|
|
118
|
+
"num-integer",
|
|
119
|
+
"num-traits",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "arrow-ipc"
|
|
124
|
+
version = "59.1.0"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "29dac499fcbc6ba74ee0324057821d381929a48526a3966bd9dffb44aa06d98c"
|
|
127
|
+
dependencies = [
|
|
128
|
+
"arrow-array",
|
|
129
|
+
"arrow-buffer",
|
|
130
|
+
"arrow-data",
|
|
131
|
+
"arrow-schema",
|
|
132
|
+
"arrow-select",
|
|
133
|
+
"flatbuffers",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "arrow-schema"
|
|
138
|
+
version = "59.1.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "d9e4969dc350d571766247143ab36a5187d095d3d3690970408bc630d47c69e5"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "arrow-select"
|
|
144
|
+
version = "59.1.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "402770dba90865359d98d1ef92ef16e23d75c0cca9c2c880c8a05468b7743bf9"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"ahash",
|
|
149
|
+
"arrow-array",
|
|
150
|
+
"arrow-buffer",
|
|
151
|
+
"arrow-data",
|
|
152
|
+
"arrow-schema",
|
|
153
|
+
"num-traits",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "autocfg"
|
|
158
|
+
version = "1.5.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "base64"
|
|
164
|
+
version = "0.13.1"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "base64"
|
|
170
|
+
version = "0.22.1"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "bindgen"
|
|
176
|
+
version = "0.72.1"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"bitflags",
|
|
181
|
+
"cexpr",
|
|
182
|
+
"clang-sys",
|
|
183
|
+
"itertools 0.13.0",
|
|
184
|
+
"proc-macro2",
|
|
185
|
+
"quote",
|
|
186
|
+
"regex",
|
|
187
|
+
"rustc-hash",
|
|
188
|
+
"shlex 1.3.0",
|
|
189
|
+
"syn",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "bit-set"
|
|
194
|
+
version = "0.8.0"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"bit-vec",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "bit-vec"
|
|
203
|
+
version = "0.8.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "bitflags"
|
|
209
|
+
version = "2.13.1"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "brotli"
|
|
215
|
+
version = "8.0.4"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"alloc-no-stdlib",
|
|
220
|
+
"alloc-stdlib",
|
|
221
|
+
"brotli-decompressor",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "brotli-decompressor"
|
|
226
|
+
version = "5.0.3"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"alloc-no-stdlib",
|
|
231
|
+
"alloc-stdlib",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "bumpalo"
|
|
236
|
+
version = "3.20.3"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "bytes"
|
|
242
|
+
version = "1.12.1"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "calendrical_calculations"
|
|
248
|
+
version = "0.2.4"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "5abbd6eeda6885048d357edc66748eea6e0268e3dd11f326fff5bd248d779c26"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"core_maths",
|
|
253
|
+
"displaydoc",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "cast"
|
|
258
|
+
version = "0.3.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "cc"
|
|
264
|
+
version = "1.2.67"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"find-msvc-tools",
|
|
269
|
+
"jobserver",
|
|
270
|
+
"libc",
|
|
271
|
+
"shlex 2.0.1",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "cexpr"
|
|
276
|
+
version = "0.6.0"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"nom",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "cfg-if"
|
|
285
|
+
version = "1.0.4"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "chacha20"
|
|
291
|
+
version = "0.10.1"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"cfg-if",
|
|
296
|
+
"cpufeatures",
|
|
297
|
+
"rand_core",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "chrono"
|
|
302
|
+
version = "0.4.45"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"iana-time-zone",
|
|
307
|
+
"num-traits",
|
|
308
|
+
"windows-link",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "ciborium"
|
|
313
|
+
version = "0.2.2"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"ciborium-io",
|
|
318
|
+
"ciborium-ll",
|
|
319
|
+
"serde",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "ciborium-io"
|
|
324
|
+
version = "0.2.2"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "ciborium-ll"
|
|
330
|
+
version = "0.2.2"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"ciborium-io",
|
|
335
|
+
"half",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "clang-sys"
|
|
340
|
+
version = "1.8.1"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"glob",
|
|
345
|
+
"libc",
|
|
346
|
+
"libloading",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "clap"
|
|
351
|
+
version = "4.6.2"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"clap_builder",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "clap_builder"
|
|
360
|
+
version = "4.6.2"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"anstyle",
|
|
365
|
+
"clap_lex",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "clap_lex"
|
|
370
|
+
version = "1.1.0"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "cobs"
|
|
376
|
+
version = "0.3.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"thiserror",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "console"
|
|
385
|
+
version = "0.16.4"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"encode_unicode",
|
|
390
|
+
"libc",
|
|
391
|
+
"unicode-width",
|
|
392
|
+
"windows-sys 0.61.2",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "const-random"
|
|
397
|
+
version = "0.1.18"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"const-random-macro",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "const-random-macro"
|
|
406
|
+
version = "0.1.16"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"getrandom 0.2.17",
|
|
411
|
+
"once_cell",
|
|
412
|
+
"tiny-keccak",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "core-foundation-sys"
|
|
417
|
+
version = "0.8.7"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "core_maths"
|
|
423
|
+
version = "0.1.1"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"libm",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "cpufeatures"
|
|
432
|
+
version = "0.3.0"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"libc",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "crc32fast"
|
|
441
|
+
version = "1.5.0"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"cfg-if",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "criterion"
|
|
450
|
+
version = "0.8.2"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"alloca",
|
|
455
|
+
"anes",
|
|
456
|
+
"cast",
|
|
457
|
+
"ciborium",
|
|
458
|
+
"clap",
|
|
459
|
+
"criterion-plot",
|
|
460
|
+
"itertools 0.13.0",
|
|
461
|
+
"num-traits",
|
|
462
|
+
"oorandom",
|
|
463
|
+
"page_size",
|
|
464
|
+
"plotters",
|
|
465
|
+
"rayon",
|
|
466
|
+
"regex",
|
|
467
|
+
"serde",
|
|
468
|
+
"serde_json",
|
|
469
|
+
"tinytemplate",
|
|
470
|
+
"walkdir",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "criterion-plot"
|
|
475
|
+
version = "0.8.2"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"cast",
|
|
480
|
+
"itertools 0.13.0",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "crossbeam-deque"
|
|
485
|
+
version = "0.8.7"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"crossbeam-epoch",
|
|
490
|
+
"crossbeam-utils",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "crossbeam-epoch"
|
|
495
|
+
version = "0.9.20"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"crossbeam-utils",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "crossbeam-utils"
|
|
504
|
+
version = "0.8.22"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "crunchy"
|
|
510
|
+
version = "0.2.4"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "dashmap"
|
|
516
|
+
version = "6.2.1"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"cfg-if",
|
|
521
|
+
"crossbeam-utils",
|
|
522
|
+
"hashbrown 0.14.5",
|
|
523
|
+
"lock_api",
|
|
524
|
+
"once_cell",
|
|
525
|
+
"parking_lot_core",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "databake"
|
|
530
|
+
version = "0.2.1"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "74d4b1db5ca40636726f1f73daff0d626accbd49bcd8136fcade87d7cf1e6bbb"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"databake-derive",
|
|
535
|
+
"proc-macro2",
|
|
536
|
+
"quote",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "databake-derive"
|
|
541
|
+
version = "0.2.1"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "72b537745234cbf0e296a3bd836d70a614dff4cb522b14e2680ef006bb1ed5ff"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"proc-macro2",
|
|
546
|
+
"quote",
|
|
547
|
+
"syn",
|
|
548
|
+
"synstructure",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "displaydoc"
|
|
553
|
+
version = "0.2.6"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"proc-macro2",
|
|
558
|
+
"quote",
|
|
559
|
+
"syn",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "either"
|
|
564
|
+
version = "1.16.0"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "encode_unicode"
|
|
570
|
+
version = "1.0.0"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "equivalent"
|
|
576
|
+
version = "1.0.2"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "erased-serde"
|
|
582
|
+
version = "0.4.10"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"serde",
|
|
587
|
+
"serde_core",
|
|
588
|
+
"typeid",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "errno"
|
|
593
|
+
version = "0.3.14"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"libc",
|
|
598
|
+
"windows-sys 0.61.2",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "eyre"
|
|
603
|
+
version = "0.6.12"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"indenter",
|
|
608
|
+
"once_cell",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "fancy-regex"
|
|
613
|
+
version = "0.18.0"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
|
|
616
|
+
dependencies = [
|
|
617
|
+
"bit-set",
|
|
618
|
+
"regex-automata",
|
|
619
|
+
"regex-syntax",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "fastrand"
|
|
624
|
+
version = "2.4.1"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "faststr"
|
|
630
|
+
version = "0.2.34"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "1ca7d44d22004409a61c393afb3369c8f7bb74abcae49fe249ee01dcc3002113"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"bytes",
|
|
635
|
+
"rkyv",
|
|
636
|
+
"serde",
|
|
637
|
+
"simdutf8",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "find-msvc-tools"
|
|
642
|
+
version = "0.1.9"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "fixed_decimal"
|
|
648
|
+
version = "0.7.2"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "79c3c892f121fff406e5dd6b28c1b30096b95111c30701a899d4f2b18da6d1bd"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"displaydoc",
|
|
653
|
+
"smallvec",
|
|
654
|
+
"writeable",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "flatbuffers"
|
|
659
|
+
version = "25.12.19"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"bitflags",
|
|
664
|
+
"rustc_version",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "flate2"
|
|
669
|
+
version = "1.1.9"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"crc32fast",
|
|
674
|
+
"miniz_oxide",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "futures-core"
|
|
679
|
+
version = "0.3.32"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "futures-task"
|
|
685
|
+
version = "0.3.32"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "futures-util"
|
|
691
|
+
version = "0.3.32"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"futures-core",
|
|
696
|
+
"futures-task",
|
|
697
|
+
"pin-project-lite",
|
|
698
|
+
"slab",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "getrandom"
|
|
703
|
+
version = "0.2.17"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"cfg-if",
|
|
708
|
+
"libc",
|
|
709
|
+
"wasi",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "getrandom"
|
|
714
|
+
version = "0.3.4"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"cfg-if",
|
|
719
|
+
"libc",
|
|
720
|
+
"r-efi 5.3.0",
|
|
721
|
+
"wasip2",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "getrandom"
|
|
726
|
+
version = "0.4.3"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"cfg-if",
|
|
731
|
+
"libc",
|
|
732
|
+
"r-efi 6.0.0",
|
|
733
|
+
"rand_core",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "gigatoken"
|
|
738
|
+
version = "0.9.0"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"aho-corasick",
|
|
741
|
+
"arrow-array",
|
|
742
|
+
"arrow-schema",
|
|
743
|
+
"base64 0.22.1",
|
|
744
|
+
"criterion",
|
|
745
|
+
"dashmap",
|
|
746
|
+
"eyre",
|
|
747
|
+
"fancy-regex",
|
|
748
|
+
"flate2",
|
|
749
|
+
"icu",
|
|
750
|
+
"indicatif",
|
|
751
|
+
"itertools 0.15.0",
|
|
752
|
+
"libc",
|
|
753
|
+
"memchr",
|
|
754
|
+
"memmap2",
|
|
755
|
+
"numpy",
|
|
756
|
+
"parquet",
|
|
757
|
+
"priority-queue",
|
|
758
|
+
"pyo3",
|
|
759
|
+
"rand",
|
|
760
|
+
"rayon",
|
|
761
|
+
"rustc-hash",
|
|
762
|
+
"serde",
|
|
763
|
+
"simdutf",
|
|
764
|
+
"sonic-rs",
|
|
765
|
+
"spm_precompiled",
|
|
766
|
+
"tempfile",
|
|
767
|
+
"ureq",
|
|
768
|
+
"winnow",
|
|
769
|
+
"zstd",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "gigatoken-rb"
|
|
774
|
+
version = "0.1.0"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"gigatoken",
|
|
777
|
+
"magnus",
|
|
778
|
+
"mimalloc",
|
|
779
|
+
"rayon",
|
|
780
|
+
"rb-sys",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "glob"
|
|
785
|
+
version = "0.3.4"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "half"
|
|
791
|
+
version = "2.7.1"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"cfg-if",
|
|
796
|
+
"crunchy",
|
|
797
|
+
"num-traits",
|
|
798
|
+
"zerocopy",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "hashbrown"
|
|
803
|
+
version = "0.14.5"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "hashbrown"
|
|
809
|
+
version = "0.17.1"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "heck"
|
|
815
|
+
version = "0.5.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "http"
|
|
821
|
+
version = "1.4.2"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"bytes",
|
|
826
|
+
"itoa",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "httparse"
|
|
831
|
+
version = "1.10.1"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "iana-time-zone"
|
|
837
|
+
version = "0.1.65"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"android_system_properties",
|
|
842
|
+
"core-foundation-sys",
|
|
843
|
+
"iana-time-zone-haiku",
|
|
844
|
+
"js-sys",
|
|
845
|
+
"log",
|
|
846
|
+
"wasm-bindgen",
|
|
847
|
+
"windows-core",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "iana-time-zone-haiku"
|
|
852
|
+
version = "0.1.2"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"cc",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "icu"
|
|
861
|
+
version = "2.2.0"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "00380f83691e089bcfa4aeb03a2d96a910b1c9ea406d6f822fc19dfb8b58d1ec"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"icu_calendar",
|
|
866
|
+
"icu_casemap",
|
|
867
|
+
"icu_collator",
|
|
868
|
+
"icu_collections",
|
|
869
|
+
"icu_datetime",
|
|
870
|
+
"icu_decimal",
|
|
871
|
+
"icu_experimental",
|
|
872
|
+
"icu_list",
|
|
873
|
+
"icu_locale",
|
|
874
|
+
"icu_normalizer",
|
|
875
|
+
"icu_pattern",
|
|
876
|
+
"icu_plurals",
|
|
877
|
+
"icu_properties",
|
|
878
|
+
"icu_provider",
|
|
879
|
+
"icu_provider_registry",
|
|
880
|
+
"icu_segmenter",
|
|
881
|
+
"icu_time",
|
|
882
|
+
"memchr",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "icu_calendar"
|
|
887
|
+
version = "2.2.1"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "a2b2acc6263f494f1df50685b53ff8e57869e47d5c6fe39c23d518ae9a4f3e45"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"calendrical_calculations",
|
|
892
|
+
"databake",
|
|
893
|
+
"displaydoc",
|
|
894
|
+
"icu_calendar_data",
|
|
895
|
+
"icu_locale",
|
|
896
|
+
"icu_locale_core",
|
|
897
|
+
"icu_provider",
|
|
898
|
+
"ixdtf",
|
|
899
|
+
"serde",
|
|
900
|
+
"tinystr",
|
|
901
|
+
"zerovec",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "icu_calendar_data"
|
|
906
|
+
version = "2.2.0"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "118577bcf3a0fa7c6ac0a7d6e951814da84ee56b9b1f68fb4d8d10b08cefaf4d"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "icu_casemap"
|
|
912
|
+
version = "2.2.0"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "070f98b5b82798fcb93654bf96ed9f40064fc44c86f51a09ea711092cd5cc5be"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"databake",
|
|
917
|
+
"icu_casemap_data",
|
|
918
|
+
"icu_collections",
|
|
919
|
+
"icu_locale_core",
|
|
920
|
+
"icu_properties",
|
|
921
|
+
"icu_provider",
|
|
922
|
+
"potential_utf",
|
|
923
|
+
"serde",
|
|
924
|
+
"writeable",
|
|
925
|
+
"zerovec",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "icu_casemap_data"
|
|
930
|
+
version = "2.2.0"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "846b0857ca091204be3c874bc93daaf89d4777e8d2d20b0d3ffe8f671d98014b"
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "icu_collator"
|
|
936
|
+
version = "2.2.1"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "8bbdf98e5e0aa827770acee171ebb568aaab975a36b56afdb5fd0e2f525750bb"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"databake",
|
|
941
|
+
"icu_collator_data",
|
|
942
|
+
"icu_collections",
|
|
943
|
+
"icu_locale",
|
|
944
|
+
"icu_locale_core",
|
|
945
|
+
"icu_normalizer",
|
|
946
|
+
"icu_properties",
|
|
947
|
+
"icu_provider",
|
|
948
|
+
"serde",
|
|
949
|
+
"smallvec",
|
|
950
|
+
"utf16_iter",
|
|
951
|
+
"utf8_iter",
|
|
952
|
+
"zerovec",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "icu_collator_data"
|
|
957
|
+
version = "2.2.0"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "038ed8e5817f2059c2f3efb0945ba78d060d3d25e8f1a1bea5139f821a21a2f0"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "icu_collections"
|
|
963
|
+
version = "2.2.0"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"databake",
|
|
968
|
+
"displaydoc",
|
|
969
|
+
"potential_utf",
|
|
970
|
+
"serde",
|
|
971
|
+
"utf8_iter",
|
|
972
|
+
"yoke",
|
|
973
|
+
"zerofrom",
|
|
974
|
+
"zerovec",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "icu_datetime"
|
|
979
|
+
version = "2.2.0"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "989d56ea5bbc43ae2b4e0388874b002884eaf4ed3a76c84a6c8c5ad575e04d72"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"databake",
|
|
984
|
+
"displaydoc",
|
|
985
|
+
"fixed_decimal",
|
|
986
|
+
"icu_calendar",
|
|
987
|
+
"icu_datetime_data",
|
|
988
|
+
"icu_decimal",
|
|
989
|
+
"icu_locale",
|
|
990
|
+
"icu_locale_core",
|
|
991
|
+
"icu_pattern",
|
|
992
|
+
"icu_plurals",
|
|
993
|
+
"icu_provider",
|
|
994
|
+
"icu_time",
|
|
995
|
+
"potential_utf",
|
|
996
|
+
"serde",
|
|
997
|
+
"smallvec",
|
|
998
|
+
"tinystr",
|
|
999
|
+
"writeable",
|
|
1000
|
+
"zerotrie",
|
|
1001
|
+
"zerovec",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "icu_datetime_data"
|
|
1006
|
+
version = "2.2.0"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "40d3cc1b690d9703202bc319692ac8a1f3a6390686f0930ff40542450fa34f0b"
|
|
1009
|
+
|
|
1010
|
+
[[package]]
|
|
1011
|
+
name = "icu_decimal"
|
|
1012
|
+
version = "2.2.0"
|
|
1013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
+
checksum = "288247df2e32aa776ac54fdd64de552149ac43cb840f2761811f0e8d09719dd4"
|
|
1015
|
+
dependencies = [
|
|
1016
|
+
"databake",
|
|
1017
|
+
"displaydoc",
|
|
1018
|
+
"fixed_decimal",
|
|
1019
|
+
"icu_decimal_data",
|
|
1020
|
+
"icu_locale",
|
|
1021
|
+
"icu_locale_core",
|
|
1022
|
+
"icu_pattern",
|
|
1023
|
+
"icu_plurals",
|
|
1024
|
+
"icu_provider",
|
|
1025
|
+
"serde",
|
|
1026
|
+
"writeable",
|
|
1027
|
+
"zerovec",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "icu_decimal_data"
|
|
1032
|
+
version = "2.2.0"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "6f14a5ca9e8af29eef62064f269078424283d90dbaffeac5225addf62aaabc22"
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "icu_experimental"
|
|
1038
|
+
version = "0.5.0"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "0a881116e620fd635f564fd9cb9bc36c256b9da2221df8b3f55643d8ef32140f"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"databake",
|
|
1043
|
+
"displaydoc",
|
|
1044
|
+
"either",
|
|
1045
|
+
"fixed_decimal",
|
|
1046
|
+
"icu_casemap",
|
|
1047
|
+
"icu_collections",
|
|
1048
|
+
"icu_decimal",
|
|
1049
|
+
"icu_experimental_data",
|
|
1050
|
+
"icu_list",
|
|
1051
|
+
"icu_locale",
|
|
1052
|
+
"icu_locale_core",
|
|
1053
|
+
"icu_normalizer",
|
|
1054
|
+
"icu_pattern",
|
|
1055
|
+
"icu_plurals",
|
|
1056
|
+
"icu_properties",
|
|
1057
|
+
"icu_provider",
|
|
1058
|
+
"litemap",
|
|
1059
|
+
"log",
|
|
1060
|
+
"num-bigint",
|
|
1061
|
+
"num-rational",
|
|
1062
|
+
"num-traits",
|
|
1063
|
+
"potential_utf",
|
|
1064
|
+
"serde",
|
|
1065
|
+
"smallvec",
|
|
1066
|
+
"tinystr",
|
|
1067
|
+
"writeable",
|
|
1068
|
+
"zerotrie",
|
|
1069
|
+
"zerovec",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "icu_experimental_data"
|
|
1074
|
+
version = "0.5.0"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "f72090d4f08a2bc94565cb02de6d5b87939424e462d9927d73a34f6f8e5d1232"
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "icu_list"
|
|
1080
|
+
version = "2.2.0"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "aeeaf517689324395bed4767f7c65504f5455942ed4c14ee54c2087ca00b816e"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"databake",
|
|
1085
|
+
"icu_list_data",
|
|
1086
|
+
"icu_locale",
|
|
1087
|
+
"icu_provider",
|
|
1088
|
+
"regex-automata",
|
|
1089
|
+
"serde",
|
|
1090
|
+
"writeable",
|
|
1091
|
+
"zerovec",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "icu_list_data"
|
|
1096
|
+
version = "2.2.0"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "ed62dbf114db9a4163481ed071509c4cd52cbcef9cb85979eba08a95549d73f3"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "icu_locale"
|
|
1102
|
+
version = "2.2.0"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"databake",
|
|
1107
|
+
"icu_collections",
|
|
1108
|
+
"icu_locale_core",
|
|
1109
|
+
"icu_locale_data",
|
|
1110
|
+
"icu_provider",
|
|
1111
|
+
"potential_utf",
|
|
1112
|
+
"serde",
|
|
1113
|
+
"tinystr",
|
|
1114
|
+
"zerovec",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "icu_locale_core"
|
|
1119
|
+
version = "2.2.0"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"databake",
|
|
1124
|
+
"displaydoc",
|
|
1125
|
+
"litemap",
|
|
1126
|
+
"serde",
|
|
1127
|
+
"tinystr",
|
|
1128
|
+
"writeable",
|
|
1129
|
+
"zerovec",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "icu_locale_data"
|
|
1134
|
+
version = "2.2.0"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "icu_normalizer"
|
|
1140
|
+
version = "2.2.0"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"databake",
|
|
1145
|
+
"icu_collections",
|
|
1146
|
+
"icu_normalizer_data",
|
|
1147
|
+
"icu_properties",
|
|
1148
|
+
"icu_provider",
|
|
1149
|
+
"serde",
|
|
1150
|
+
"smallvec",
|
|
1151
|
+
"utf16_iter",
|
|
1152
|
+
"utf8_iter",
|
|
1153
|
+
"write16",
|
|
1154
|
+
"zerovec",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "icu_normalizer_data"
|
|
1159
|
+
version = "2.2.0"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "icu_pattern"
|
|
1165
|
+
version = "0.4.2"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "1c4c568054ffe735398a9f4c55aec37ad7c768844553cc0978f09cc9b933a1fb"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"databake",
|
|
1170
|
+
"displaydoc",
|
|
1171
|
+
"either",
|
|
1172
|
+
"serde",
|
|
1173
|
+
"writeable",
|
|
1174
|
+
"yoke",
|
|
1175
|
+
"zerovec",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "icu_plurals"
|
|
1180
|
+
version = "2.2.0"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "2a50023f1d49ad5c4333380328a0d4a19e4b9d6d842ec06639affd5ba47c8103"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"databake",
|
|
1185
|
+
"displaydoc",
|
|
1186
|
+
"fixed_decimal",
|
|
1187
|
+
"icu_locale",
|
|
1188
|
+
"icu_plurals_data",
|
|
1189
|
+
"icu_provider",
|
|
1190
|
+
"serde",
|
|
1191
|
+
"zerovec",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "icu_plurals_data"
|
|
1196
|
+
version = "2.2.0"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "8485497155dc865f901decb93ecc20d3e467df67bfeceb91e3ba34e2b11e8e1d"
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "icu_properties"
|
|
1202
|
+
version = "2.2.0"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"databake",
|
|
1207
|
+
"icu_collections",
|
|
1208
|
+
"icu_locale_core",
|
|
1209
|
+
"icu_properties_data",
|
|
1210
|
+
"icu_provider",
|
|
1211
|
+
"serde",
|
|
1212
|
+
"zerotrie",
|
|
1213
|
+
"zerovec",
|
|
1214
|
+
]
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "icu_properties_data"
|
|
1218
|
+
version = "2.2.0"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "icu_provider"
|
|
1224
|
+
version = "2.2.0"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"databake",
|
|
1229
|
+
"displaydoc",
|
|
1230
|
+
"erased-serde",
|
|
1231
|
+
"icu_locale_core",
|
|
1232
|
+
"postcard",
|
|
1233
|
+
"serde",
|
|
1234
|
+
"stable_deref_trait",
|
|
1235
|
+
"writeable",
|
|
1236
|
+
"yoke",
|
|
1237
|
+
"zerofrom",
|
|
1238
|
+
"zerotrie",
|
|
1239
|
+
"zerovec",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "icu_provider_registry"
|
|
1244
|
+
version = "2.2.0"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "9b9bcbe57266350ac59340174baedca7dbb2ad020fa62664e12f5437ce3c8f43"
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "icu_segmenter"
|
|
1250
|
+
version = "2.2.0"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "5c0794db0b1a86193ac9c48768d0e6c52c54448e0870ad87907d456ee0dac964"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"core_maths",
|
|
1255
|
+
"databake",
|
|
1256
|
+
"icu_collections",
|
|
1257
|
+
"icu_locale",
|
|
1258
|
+
"icu_provider",
|
|
1259
|
+
"icu_segmenter_data",
|
|
1260
|
+
"potential_utf",
|
|
1261
|
+
"serde",
|
|
1262
|
+
"utf8_iter",
|
|
1263
|
+
"zerovec",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "icu_segmenter_data"
|
|
1268
|
+
version = "2.2.0"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "e4a2c462a4d927d512f5f882a033ddd62f33a05bb9f230d98f736ac3dc85938f"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "icu_time"
|
|
1274
|
+
version = "2.2.0"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "ec3af0c141da0a61d4f6970cd1d5f4b388b17ea22f8124f8f6049d3d5147586a"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"calendrical_calculations",
|
|
1279
|
+
"databake",
|
|
1280
|
+
"displaydoc",
|
|
1281
|
+
"icu_calendar",
|
|
1282
|
+
"icu_locale_core",
|
|
1283
|
+
"icu_provider",
|
|
1284
|
+
"icu_time_data",
|
|
1285
|
+
"ixdtf",
|
|
1286
|
+
"serde",
|
|
1287
|
+
"zerotrie",
|
|
1288
|
+
"zerovec",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "icu_time_data"
|
|
1293
|
+
version = "2.2.1"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "2e0ee79a0bb29772465234bfbad6ea04fbc5220bef9fa4f318cc53eb8897070e"
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "indenter"
|
|
1299
|
+
version = "0.3.4"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "indexmap"
|
|
1305
|
+
version = "2.14.0"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"equivalent",
|
|
1310
|
+
"hashbrown 0.17.1",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "indicatif"
|
|
1315
|
+
version = "0.18.6"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "9433806cd6b4ec1aba79c021c7e4c58fb4c3b9977c085062e611ac929998fb0c"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"console",
|
|
1320
|
+
"portable-atomic",
|
|
1321
|
+
"unicode-width",
|
|
1322
|
+
"unit-prefix",
|
|
1323
|
+
"web-time",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "itertools"
|
|
1328
|
+
version = "0.13.0"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1331
|
+
dependencies = [
|
|
1332
|
+
"either",
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "itertools"
|
|
1337
|
+
version = "0.15.0"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"either",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "itoa"
|
|
1346
|
+
version = "1.0.18"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "ixdtf"
|
|
1352
|
+
version = "0.6.5"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "2ceaf4c6c48465bead8cb6a0b7c4ee0c86ecbb31239032b9c66ab9a08d2f3ee1"
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "jobserver"
|
|
1358
|
+
version = "0.1.35"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"getrandom 0.4.3",
|
|
1363
|
+
"libc",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "js-sys"
|
|
1368
|
+
version = "0.3.103"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"cfg-if",
|
|
1373
|
+
"futures-util",
|
|
1374
|
+
"wasm-bindgen",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "lazy_static"
|
|
1379
|
+
version = "1.5.0"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "libc"
|
|
1385
|
+
version = "0.2.186"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "libloading"
|
|
1391
|
+
version = "0.8.9"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"cfg-if",
|
|
1396
|
+
"windows-link",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "libm"
|
|
1401
|
+
version = "0.2.16"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "libmimalloc-sys"
|
|
1407
|
+
version = "0.1.49"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"cc",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "linux-raw-sys"
|
|
1416
|
+
version = "0.12.1"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1419
|
+
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "litemap"
|
|
1422
|
+
version = "0.8.2"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1425
|
+
dependencies = [
|
|
1426
|
+
"serde_core",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "lock_api"
|
|
1431
|
+
version = "0.4.14"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"scopeguard",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "log"
|
|
1440
|
+
version = "0.4.33"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "lz4_flex"
|
|
1446
|
+
version = "0.13.1"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"twox-hash",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "magnus"
|
|
1455
|
+
version = "0.8.2"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"magnus-macros",
|
|
1460
|
+
"rb-sys",
|
|
1461
|
+
"rb-sys-env",
|
|
1462
|
+
"seq-macro",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "magnus-macros"
|
|
1467
|
+
version = "0.8.0"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"proc-macro2",
|
|
1472
|
+
"quote",
|
|
1473
|
+
"syn",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "matrixmultiply"
|
|
1478
|
+
version = "0.3.11"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"autocfg",
|
|
1483
|
+
"rawpointer",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "memchr"
|
|
1488
|
+
version = "2.8.3"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "memmap2"
|
|
1494
|
+
version = "0.9.11"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"libc",
|
|
1499
|
+
"stable_deref_trait",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "mimalloc"
|
|
1504
|
+
version = "0.1.52"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"libmimalloc-sys",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "minimal-lexical"
|
|
1513
|
+
version = "0.2.1"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "miniz_oxide"
|
|
1519
|
+
version = "0.8.9"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"adler2",
|
|
1524
|
+
"simd-adler32",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "munge"
|
|
1529
|
+
version = "0.4.7"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"munge_macro",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "munge_macro"
|
|
1538
|
+
version = "0.4.7"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"proc-macro2",
|
|
1543
|
+
"quote",
|
|
1544
|
+
"syn",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "ndarray"
|
|
1549
|
+
version = "0.17.2"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"matrixmultiply",
|
|
1554
|
+
"num-complex",
|
|
1555
|
+
"num-integer",
|
|
1556
|
+
"num-traits",
|
|
1557
|
+
"portable-atomic",
|
|
1558
|
+
"portable-atomic-util",
|
|
1559
|
+
"rawpointer",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "nom"
|
|
1564
|
+
version = "7.1.3"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"memchr",
|
|
1569
|
+
"minimal-lexical",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "num-bigint"
|
|
1574
|
+
version = "0.4.8"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"num-integer",
|
|
1579
|
+
"num-traits",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "num-complex"
|
|
1584
|
+
version = "0.4.6"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"num-traits",
|
|
1589
|
+
]
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "num-integer"
|
|
1593
|
+
version = "0.1.46"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"num-traits",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "num-rational"
|
|
1602
|
+
version = "0.4.2"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"num-bigint",
|
|
1607
|
+
"num-integer",
|
|
1608
|
+
"num-traits",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "num-traits"
|
|
1613
|
+
version = "0.2.19"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"autocfg",
|
|
1618
|
+
"libm",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "numpy"
|
|
1623
|
+
version = "0.29.0"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"libc",
|
|
1628
|
+
"ndarray",
|
|
1629
|
+
"num-complex",
|
|
1630
|
+
"num-integer",
|
|
1631
|
+
"num-traits",
|
|
1632
|
+
"pyo3",
|
|
1633
|
+
"pyo3-build-config",
|
|
1634
|
+
"rustc-hash",
|
|
1635
|
+
]
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "once_cell"
|
|
1639
|
+
version = "1.21.4"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "oorandom"
|
|
1645
|
+
version = "11.1.5"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "page_size"
|
|
1651
|
+
version = "0.6.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"libc",
|
|
1656
|
+
"winapi",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "parking_lot_core"
|
|
1661
|
+
version = "0.9.12"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1664
|
+
dependencies = [
|
|
1665
|
+
"cfg-if",
|
|
1666
|
+
"libc",
|
|
1667
|
+
"redox_syscall",
|
|
1668
|
+
"smallvec",
|
|
1669
|
+
"windows-link",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "parquet"
|
|
1674
|
+
version = "59.1.0"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "5302d4da74d6596a1f11f9928767995b53bca657cbeea1e4e8c5074f8a1157dd"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"ahash",
|
|
1679
|
+
"arrow-array",
|
|
1680
|
+
"arrow-buffer",
|
|
1681
|
+
"arrow-data",
|
|
1682
|
+
"arrow-ipc",
|
|
1683
|
+
"arrow-schema",
|
|
1684
|
+
"arrow-select",
|
|
1685
|
+
"base64 0.22.1",
|
|
1686
|
+
"brotli",
|
|
1687
|
+
"bytes",
|
|
1688
|
+
"chrono",
|
|
1689
|
+
"flate2",
|
|
1690
|
+
"half",
|
|
1691
|
+
"hashbrown 0.17.1",
|
|
1692
|
+
"lz4_flex",
|
|
1693
|
+
"num-bigint",
|
|
1694
|
+
"num-integer",
|
|
1695
|
+
"num-traits",
|
|
1696
|
+
"paste",
|
|
1697
|
+
"seq-macro",
|
|
1698
|
+
"snap",
|
|
1699
|
+
"twox-hash",
|
|
1700
|
+
"zstd",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "paste"
|
|
1705
|
+
version = "1.0.15"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "percent-encoding"
|
|
1711
|
+
version = "2.3.2"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "pin-project-lite"
|
|
1717
|
+
version = "0.2.17"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "pkg-config"
|
|
1723
|
+
version = "0.3.33"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "plotters"
|
|
1729
|
+
version = "0.3.7"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"num-traits",
|
|
1734
|
+
"plotters-backend",
|
|
1735
|
+
"plotters-svg",
|
|
1736
|
+
"wasm-bindgen",
|
|
1737
|
+
"web-sys",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "plotters-backend"
|
|
1742
|
+
version = "0.3.7"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "plotters-svg"
|
|
1748
|
+
version = "0.3.7"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"plotters-backend",
|
|
1753
|
+
]
|
|
1754
|
+
|
|
1755
|
+
[[package]]
|
|
1756
|
+
name = "portable-atomic"
|
|
1757
|
+
version = "1.14.0"
|
|
1758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
1760
|
+
|
|
1761
|
+
[[package]]
|
|
1762
|
+
name = "portable-atomic-util"
|
|
1763
|
+
version = "0.2.7"
|
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1766
|
+
dependencies = [
|
|
1767
|
+
"portable-atomic",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "postcard"
|
|
1772
|
+
version = "1.1.3"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"cobs",
|
|
1777
|
+
"serde",
|
|
1778
|
+
]
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "potential_utf"
|
|
1782
|
+
version = "0.1.5"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1785
|
+
dependencies = [
|
|
1786
|
+
"databake",
|
|
1787
|
+
"serde_core",
|
|
1788
|
+
"writeable",
|
|
1789
|
+
"zerovec",
|
|
1790
|
+
]
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "priority-queue"
|
|
1794
|
+
version = "2.7.0"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "93980406f12d9f8140ed5abe7155acb10bb1e69ea55c88960b9c2f117445ef96"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"equivalent",
|
|
1799
|
+
"indexmap",
|
|
1800
|
+
"serde",
|
|
1801
|
+
]
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "proc-macro2"
|
|
1805
|
+
version = "1.0.106"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1808
|
+
dependencies = [
|
|
1809
|
+
"unicode-ident",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "ptr_meta"
|
|
1814
|
+
version = "0.3.1"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"ptr_meta_derive",
|
|
1819
|
+
]
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "ptr_meta_derive"
|
|
1823
|
+
version = "0.3.1"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
|
|
1826
|
+
dependencies = [
|
|
1827
|
+
"proc-macro2",
|
|
1828
|
+
"quote",
|
|
1829
|
+
"syn",
|
|
1830
|
+
]
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "pyo3"
|
|
1834
|
+
version = "0.29.0"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"eyre",
|
|
1839
|
+
"libc",
|
|
1840
|
+
"once_cell",
|
|
1841
|
+
"portable-atomic",
|
|
1842
|
+
"pyo3-build-config",
|
|
1843
|
+
"pyo3-ffi",
|
|
1844
|
+
"pyo3-macros",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "pyo3-build-config"
|
|
1849
|
+
version = "0.29.0"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"target-lexicon",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "pyo3-ffi"
|
|
1858
|
+
version = "0.29.0"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"libc",
|
|
1863
|
+
"pyo3-build-config",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "pyo3-macros"
|
|
1868
|
+
version = "0.29.0"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
1871
|
+
dependencies = [
|
|
1872
|
+
"proc-macro2",
|
|
1873
|
+
"pyo3-macros-backend",
|
|
1874
|
+
"quote",
|
|
1875
|
+
"syn",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "pyo3-macros-backend"
|
|
1880
|
+
version = "0.29.0"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"heck",
|
|
1885
|
+
"proc-macro2",
|
|
1886
|
+
"quote",
|
|
1887
|
+
"syn",
|
|
1888
|
+
]
|
|
1889
|
+
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "quote"
|
|
1892
|
+
version = "1.0.46"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1895
|
+
dependencies = [
|
|
1896
|
+
"proc-macro2",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "r-efi"
|
|
1901
|
+
version = "5.3.0"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1904
|
+
|
|
1905
|
+
[[package]]
|
|
1906
|
+
name = "r-efi"
|
|
1907
|
+
version = "6.0.0"
|
|
1908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1909
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "rancor"
|
|
1913
|
+
version = "0.1.2"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "daff8b7b3ccf5f7ba270b3e7a0a4d4c701c5797e38dec27c7e2c3dbb830fed1c"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"ptr_meta",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "rand"
|
|
1922
|
+
version = "0.10.2"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"chacha20",
|
|
1927
|
+
"getrandom 0.4.3",
|
|
1928
|
+
"rand_core",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "rand_core"
|
|
1933
|
+
version = "0.10.1"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1936
|
+
|
|
1937
|
+
[[package]]
|
|
1938
|
+
name = "rawpointer"
|
|
1939
|
+
version = "0.2.1"
|
|
1940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "rayon"
|
|
1945
|
+
version = "1.12.0"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"either",
|
|
1950
|
+
"rayon-core",
|
|
1951
|
+
]
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "rayon-core"
|
|
1955
|
+
version = "1.13.0"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1958
|
+
dependencies = [
|
|
1959
|
+
"crossbeam-deque",
|
|
1960
|
+
"crossbeam-utils",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "rb-sys"
|
|
1965
|
+
version = "0.9.128"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"rb-sys-build",
|
|
1970
|
+
]
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "rb-sys-build"
|
|
1974
|
+
version = "0.9.128"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
1977
|
+
dependencies = [
|
|
1978
|
+
"bindgen",
|
|
1979
|
+
"lazy_static",
|
|
1980
|
+
"proc-macro2",
|
|
1981
|
+
"quote",
|
|
1982
|
+
"regex",
|
|
1983
|
+
"shell-words",
|
|
1984
|
+
"syn",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "rb-sys-env"
|
|
1989
|
+
version = "0.2.3"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "redox_syscall"
|
|
1995
|
+
version = "0.5.18"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"bitflags",
|
|
2000
|
+
]
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "ref-cast"
|
|
2004
|
+
version = "1.0.25"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"ref-cast-impl",
|
|
2009
|
+
]
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "ref-cast-impl"
|
|
2013
|
+
version = "1.0.25"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2016
|
+
dependencies = [
|
|
2017
|
+
"proc-macro2",
|
|
2018
|
+
"quote",
|
|
2019
|
+
"syn",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "regex"
|
|
2024
|
+
version = "1.13.1"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"aho-corasick",
|
|
2029
|
+
"memchr",
|
|
2030
|
+
"regex-automata",
|
|
2031
|
+
"regex-syntax",
|
|
2032
|
+
]
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "regex-automata"
|
|
2036
|
+
version = "0.4.16"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"aho-corasick",
|
|
2041
|
+
"memchr",
|
|
2042
|
+
"regex-syntax",
|
|
2043
|
+
]
|
|
2044
|
+
|
|
2045
|
+
[[package]]
|
|
2046
|
+
name = "regex-syntax"
|
|
2047
|
+
version = "0.8.11"
|
|
2048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "rend"
|
|
2053
|
+
version = "0.5.4"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "663ba70707f96e871406fe10d68128412e619b06d1d47cb91c3a4c6501176240"
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "ring"
|
|
2059
|
+
version = "0.17.14"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"cc",
|
|
2064
|
+
"cfg-if",
|
|
2065
|
+
"getrandom 0.2.17",
|
|
2066
|
+
"libc",
|
|
2067
|
+
"untrusted",
|
|
2068
|
+
"windows-sys 0.52.0",
|
|
2069
|
+
]
|
|
2070
|
+
|
|
2071
|
+
[[package]]
|
|
2072
|
+
name = "rkyv"
|
|
2073
|
+
version = "0.8.17"
|
|
2074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
+
checksum = "815cc8a37159a463064825246cadb07961e25cd9885908606f6d08a98d8f8874"
|
|
2076
|
+
dependencies = [
|
|
2077
|
+
"bytes",
|
|
2078
|
+
"hashbrown 0.17.1",
|
|
2079
|
+
"indexmap",
|
|
2080
|
+
"munge",
|
|
2081
|
+
"ptr_meta",
|
|
2082
|
+
"rancor",
|
|
2083
|
+
"rend",
|
|
2084
|
+
"rkyv_derive",
|
|
2085
|
+
"tinyvec",
|
|
2086
|
+
"uuid",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "rkyv_derive"
|
|
2091
|
+
version = "0.8.17"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "c0ed1a78a1b19d184b0daa629dd9a024573173ec7d485b287cb369fb3607cc1c"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"proc-macro2",
|
|
2096
|
+
"quote",
|
|
2097
|
+
"syn",
|
|
2098
|
+
]
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "rustc-hash"
|
|
2102
|
+
version = "2.1.3"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "rustc_version"
|
|
2108
|
+
version = "0.4.1"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2111
|
+
dependencies = [
|
|
2112
|
+
"semver",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "rustix"
|
|
2117
|
+
version = "1.1.4"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2120
|
+
dependencies = [
|
|
2121
|
+
"bitflags",
|
|
2122
|
+
"errno",
|
|
2123
|
+
"libc",
|
|
2124
|
+
"linux-raw-sys",
|
|
2125
|
+
"windows-sys 0.61.2",
|
|
2126
|
+
]
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "rustls"
|
|
2130
|
+
version = "0.23.42"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"log",
|
|
2135
|
+
"once_cell",
|
|
2136
|
+
"ring",
|
|
2137
|
+
"rustls-pki-types",
|
|
2138
|
+
"rustls-webpki",
|
|
2139
|
+
"subtle",
|
|
2140
|
+
"zeroize",
|
|
2141
|
+
]
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "rustls-pki-types"
|
|
2145
|
+
version = "1.15.0"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
|
|
2148
|
+
dependencies = [
|
|
2149
|
+
"zeroize",
|
|
2150
|
+
]
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "rustls-webpki"
|
|
2154
|
+
version = "0.103.13"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"ring",
|
|
2159
|
+
"rustls-pki-types",
|
|
2160
|
+
"untrusted",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "rustversion"
|
|
2165
|
+
version = "1.0.23"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "same-file"
|
|
2171
|
+
version = "1.0.6"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"winapi-util",
|
|
2176
|
+
]
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "scopeguard"
|
|
2180
|
+
version = "1.2.0"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "semver"
|
|
2186
|
+
version = "1.0.28"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "seq-macro"
|
|
2192
|
+
version = "0.3.6"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2195
|
+
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "serde"
|
|
2198
|
+
version = "1.0.228"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2201
|
+
dependencies = [
|
|
2202
|
+
"serde_core",
|
|
2203
|
+
"serde_derive",
|
|
2204
|
+
]
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "serde_core"
|
|
2208
|
+
version = "1.0.228"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2211
|
+
dependencies = [
|
|
2212
|
+
"serde_derive",
|
|
2213
|
+
]
|
|
2214
|
+
|
|
2215
|
+
[[package]]
|
|
2216
|
+
name = "serde_derive"
|
|
2217
|
+
version = "1.0.228"
|
|
2218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2220
|
+
dependencies = [
|
|
2221
|
+
"proc-macro2",
|
|
2222
|
+
"quote",
|
|
2223
|
+
"syn",
|
|
2224
|
+
]
|
|
2225
|
+
|
|
2226
|
+
[[package]]
|
|
2227
|
+
name = "serde_json"
|
|
2228
|
+
version = "1.0.150"
|
|
2229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2231
|
+
dependencies = [
|
|
2232
|
+
"itoa",
|
|
2233
|
+
"memchr",
|
|
2234
|
+
"serde",
|
|
2235
|
+
"serde_core",
|
|
2236
|
+
"zmij",
|
|
2237
|
+
]
|
|
2238
|
+
|
|
2239
|
+
[[package]]
|
|
2240
|
+
name = "shell-words"
|
|
2241
|
+
version = "1.1.1"
|
|
2242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "shlex"
|
|
2247
|
+
version = "1.3.0"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2250
|
+
|
|
2251
|
+
[[package]]
|
|
2252
|
+
name = "shlex"
|
|
2253
|
+
version = "2.0.1"
|
|
2254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "simd-adler32"
|
|
2259
|
+
version = "0.3.10"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
2262
|
+
|
|
2263
|
+
[[package]]
|
|
2264
|
+
name = "simdutf"
|
|
2265
|
+
version = "0.7.0"
|
|
2266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
+
checksum = "5f542752c7335a9174e7bb81112c3ca1415a7a6b6ec2c3e840aca347a30f9141"
|
|
2268
|
+
dependencies = [
|
|
2269
|
+
"bitflags",
|
|
2270
|
+
"cc",
|
|
2271
|
+
]
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "simdutf8"
|
|
2275
|
+
version = "0.1.5"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "slab"
|
|
2281
|
+
version = "0.4.12"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "smallvec"
|
|
2287
|
+
version = "1.15.2"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2290
|
+
dependencies = [
|
|
2291
|
+
"serde",
|
|
2292
|
+
]
|
|
2293
|
+
|
|
2294
|
+
[[package]]
|
|
2295
|
+
name = "snap"
|
|
2296
|
+
version = "1.1.2"
|
|
2297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
+
checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "sonic-number"
|
|
2302
|
+
version = "0.1.2"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "3775c3390edf958191f1ab1e8c5c188907feebd0f3ce1604cb621f72961dbf32"
|
|
2305
|
+
dependencies = [
|
|
2306
|
+
"cfg-if",
|
|
2307
|
+
]
|
|
2308
|
+
|
|
2309
|
+
[[package]]
|
|
2310
|
+
name = "sonic-rs"
|
|
2311
|
+
version = "0.5.8"
|
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
+
checksum = "d971cc77a245ccf1756dbd1a87c3e7f709c0191464096510d43eec056d0f2c4f"
|
|
2314
|
+
dependencies = [
|
|
2315
|
+
"ahash",
|
|
2316
|
+
"bumpalo",
|
|
2317
|
+
"bytes",
|
|
2318
|
+
"cfg-if",
|
|
2319
|
+
"faststr",
|
|
2320
|
+
"itoa",
|
|
2321
|
+
"ref-cast",
|
|
2322
|
+
"serde",
|
|
2323
|
+
"simdutf8",
|
|
2324
|
+
"sonic-number",
|
|
2325
|
+
"sonic-simd",
|
|
2326
|
+
"thiserror",
|
|
2327
|
+
"zmij",
|
|
2328
|
+
]
|
|
2329
|
+
|
|
2330
|
+
[[package]]
|
|
2331
|
+
name = "sonic-simd"
|
|
2332
|
+
version = "0.1.4"
|
|
2333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
+
checksum = "f99e664ecd2d85a68c87e3c7a3cfe691f647ea9e835de984aba4d54a41f817d4"
|
|
2335
|
+
dependencies = [
|
|
2336
|
+
"cfg-if",
|
|
2337
|
+
]
|
|
2338
|
+
|
|
2339
|
+
[[package]]
|
|
2340
|
+
name = "spm_precompiled"
|
|
2341
|
+
version = "0.1.4"
|
|
2342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
|
2344
|
+
dependencies = [
|
|
2345
|
+
"base64 0.13.1",
|
|
2346
|
+
"nom",
|
|
2347
|
+
"serde",
|
|
2348
|
+
"unicode-segmentation",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "stable_deref_trait"
|
|
2353
|
+
version = "1.2.1"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "subtle"
|
|
2359
|
+
version = "2.6.1"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2362
|
+
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "syn"
|
|
2365
|
+
version = "2.0.119"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
2368
|
+
dependencies = [
|
|
2369
|
+
"proc-macro2",
|
|
2370
|
+
"quote",
|
|
2371
|
+
"unicode-ident",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "synstructure"
|
|
2376
|
+
version = "0.13.2"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"proc-macro2",
|
|
2381
|
+
"quote",
|
|
2382
|
+
"syn",
|
|
2383
|
+
]
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "target-lexicon"
|
|
2387
|
+
version = "0.13.5"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "tempfile"
|
|
2393
|
+
version = "3.27.0"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"fastrand",
|
|
2398
|
+
"getrandom 0.4.3",
|
|
2399
|
+
"once_cell",
|
|
2400
|
+
"rustix",
|
|
2401
|
+
"windows-sys 0.61.2",
|
|
2402
|
+
]
|
|
2403
|
+
|
|
2404
|
+
[[package]]
|
|
2405
|
+
name = "thiserror"
|
|
2406
|
+
version = "2.0.18"
|
|
2407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2409
|
+
dependencies = [
|
|
2410
|
+
"thiserror-impl",
|
|
2411
|
+
]
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "thiserror-impl"
|
|
2415
|
+
version = "2.0.18"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"proc-macro2",
|
|
2420
|
+
"quote",
|
|
2421
|
+
"syn",
|
|
2422
|
+
]
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "tiny-keccak"
|
|
2426
|
+
version = "2.0.2"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
2429
|
+
dependencies = [
|
|
2430
|
+
"crunchy",
|
|
2431
|
+
]
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "tinystr"
|
|
2435
|
+
version = "0.8.3"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"databake",
|
|
2440
|
+
"displaydoc",
|
|
2441
|
+
"serde_core",
|
|
2442
|
+
"zerovec",
|
|
2443
|
+
]
|
|
2444
|
+
|
|
2445
|
+
[[package]]
|
|
2446
|
+
name = "tinytemplate"
|
|
2447
|
+
version = "1.2.1"
|
|
2448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2449
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2450
|
+
dependencies = [
|
|
2451
|
+
"serde",
|
|
2452
|
+
"serde_json",
|
|
2453
|
+
]
|
|
2454
|
+
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "tinyvec"
|
|
2457
|
+
version = "1.12.0"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
2460
|
+
dependencies = [
|
|
2461
|
+
"tinyvec_macros",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "tinyvec_macros"
|
|
2466
|
+
version = "0.1.1"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2469
|
+
|
|
2470
|
+
[[package]]
|
|
2471
|
+
name = "twox-hash"
|
|
2472
|
+
version = "2.1.2"
|
|
2473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
2475
|
+
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "typeid"
|
|
2478
|
+
version = "1.0.3"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "unicode-ident"
|
|
2484
|
+
version = "1.0.24"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "unicode-segmentation"
|
|
2490
|
+
version = "1.13.3"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "unicode-width"
|
|
2496
|
+
version = "0.2.2"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "unit-prefix"
|
|
2502
|
+
version = "0.5.2"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
2505
|
+
|
|
2506
|
+
[[package]]
|
|
2507
|
+
name = "untrusted"
|
|
2508
|
+
version = "0.9.0"
|
|
2509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "ureq"
|
|
2514
|
+
version = "3.3.0"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"base64 0.22.1",
|
|
2519
|
+
"log",
|
|
2520
|
+
"percent-encoding",
|
|
2521
|
+
"rustls",
|
|
2522
|
+
"rustls-pki-types",
|
|
2523
|
+
"ureq-proto",
|
|
2524
|
+
"utf8-zero",
|
|
2525
|
+
"webpki-roots",
|
|
2526
|
+
]
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "ureq-proto"
|
|
2530
|
+
version = "0.6.0"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"base64 0.22.1",
|
|
2535
|
+
"http",
|
|
2536
|
+
"httparse",
|
|
2537
|
+
"log",
|
|
2538
|
+
]
|
|
2539
|
+
|
|
2540
|
+
[[package]]
|
|
2541
|
+
name = "utf16_iter"
|
|
2542
|
+
version = "1.0.5"
|
|
2543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2544
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "utf8-zero"
|
|
2548
|
+
version = "0.8.1"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
2551
|
+
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "utf8_iter"
|
|
2554
|
+
version = "1.0.4"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "uuid"
|
|
2560
|
+
version = "1.24.0"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"js-sys",
|
|
2565
|
+
"wasm-bindgen",
|
|
2566
|
+
]
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "version_check"
|
|
2570
|
+
version = "0.9.5"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2573
|
+
|
|
2574
|
+
[[package]]
|
|
2575
|
+
name = "walkdir"
|
|
2576
|
+
version = "2.5.0"
|
|
2577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2578
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2579
|
+
dependencies = [
|
|
2580
|
+
"same-file",
|
|
2581
|
+
"winapi-util",
|
|
2582
|
+
]
|
|
2583
|
+
|
|
2584
|
+
[[package]]
|
|
2585
|
+
name = "wasi"
|
|
2586
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "wasip2"
|
|
2592
|
+
version = "1.0.4+wasi-0.2.12"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2595
|
+
dependencies = [
|
|
2596
|
+
"wit-bindgen",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "wasm-bindgen"
|
|
2601
|
+
version = "0.2.126"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
2604
|
+
dependencies = [
|
|
2605
|
+
"cfg-if",
|
|
2606
|
+
"once_cell",
|
|
2607
|
+
"rustversion",
|
|
2608
|
+
"wasm-bindgen-macro",
|
|
2609
|
+
"wasm-bindgen-shared",
|
|
2610
|
+
]
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "wasm-bindgen-macro"
|
|
2614
|
+
version = "0.2.126"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"quote",
|
|
2619
|
+
"wasm-bindgen-macro-support",
|
|
2620
|
+
]
|
|
2621
|
+
|
|
2622
|
+
[[package]]
|
|
2623
|
+
name = "wasm-bindgen-macro-support"
|
|
2624
|
+
version = "0.2.126"
|
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
2627
|
+
dependencies = [
|
|
2628
|
+
"bumpalo",
|
|
2629
|
+
"proc-macro2",
|
|
2630
|
+
"quote",
|
|
2631
|
+
"syn",
|
|
2632
|
+
"wasm-bindgen-shared",
|
|
2633
|
+
]
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "wasm-bindgen-shared"
|
|
2637
|
+
version = "0.2.126"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
2640
|
+
dependencies = [
|
|
2641
|
+
"unicode-ident",
|
|
2642
|
+
]
|
|
2643
|
+
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "web-sys"
|
|
2646
|
+
version = "0.3.103"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"js-sys",
|
|
2651
|
+
"wasm-bindgen",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "web-time"
|
|
2656
|
+
version = "1.1.0"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2659
|
+
dependencies = [
|
|
2660
|
+
"js-sys",
|
|
2661
|
+
"wasm-bindgen",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "webpki-roots"
|
|
2666
|
+
version = "1.0.9"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"rustls-pki-types",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "winapi"
|
|
2675
|
+
version = "0.3.9"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2678
|
+
dependencies = [
|
|
2679
|
+
"winapi-i686-pc-windows-gnu",
|
|
2680
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2681
|
+
]
|
|
2682
|
+
|
|
2683
|
+
[[package]]
|
|
2684
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2685
|
+
version = "0.4.0"
|
|
2686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2688
|
+
|
|
2689
|
+
[[package]]
|
|
2690
|
+
name = "winapi-util"
|
|
2691
|
+
version = "0.1.11"
|
|
2692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2693
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2694
|
+
dependencies = [
|
|
2695
|
+
"windows-sys 0.61.2",
|
|
2696
|
+
]
|
|
2697
|
+
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2700
|
+
version = "0.4.0"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "windows-core"
|
|
2706
|
+
version = "0.62.2"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2709
|
+
dependencies = [
|
|
2710
|
+
"windows-implement",
|
|
2711
|
+
"windows-interface",
|
|
2712
|
+
"windows-link",
|
|
2713
|
+
"windows-result",
|
|
2714
|
+
"windows-strings",
|
|
2715
|
+
]
|
|
2716
|
+
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "windows-implement"
|
|
2719
|
+
version = "0.60.2"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2722
|
+
dependencies = [
|
|
2723
|
+
"proc-macro2",
|
|
2724
|
+
"quote",
|
|
2725
|
+
"syn",
|
|
2726
|
+
]
|
|
2727
|
+
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "windows-interface"
|
|
2730
|
+
version = "0.59.3"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2733
|
+
dependencies = [
|
|
2734
|
+
"proc-macro2",
|
|
2735
|
+
"quote",
|
|
2736
|
+
"syn",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "windows-link"
|
|
2741
|
+
version = "0.2.1"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "windows-result"
|
|
2747
|
+
version = "0.4.1"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"windows-link",
|
|
2752
|
+
]
|
|
2753
|
+
|
|
2754
|
+
[[package]]
|
|
2755
|
+
name = "windows-strings"
|
|
2756
|
+
version = "0.5.1"
|
|
2757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2759
|
+
dependencies = [
|
|
2760
|
+
"windows-link",
|
|
2761
|
+
]
|
|
2762
|
+
|
|
2763
|
+
[[package]]
|
|
2764
|
+
name = "windows-sys"
|
|
2765
|
+
version = "0.52.0"
|
|
2766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2768
|
+
dependencies = [
|
|
2769
|
+
"windows-targets",
|
|
2770
|
+
]
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "windows-sys"
|
|
2774
|
+
version = "0.61.2"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"windows-link",
|
|
2779
|
+
]
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "windows-targets"
|
|
2783
|
+
version = "0.52.6"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"windows_aarch64_gnullvm",
|
|
2788
|
+
"windows_aarch64_msvc",
|
|
2789
|
+
"windows_i686_gnu",
|
|
2790
|
+
"windows_i686_gnullvm",
|
|
2791
|
+
"windows_i686_msvc",
|
|
2792
|
+
"windows_x86_64_gnu",
|
|
2793
|
+
"windows_x86_64_gnullvm",
|
|
2794
|
+
"windows_x86_64_msvc",
|
|
2795
|
+
]
|
|
2796
|
+
|
|
2797
|
+
[[package]]
|
|
2798
|
+
name = "windows_aarch64_gnullvm"
|
|
2799
|
+
version = "0.52.6"
|
|
2800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2801
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2802
|
+
|
|
2803
|
+
[[package]]
|
|
2804
|
+
name = "windows_aarch64_msvc"
|
|
2805
|
+
version = "0.52.6"
|
|
2806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2807
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2808
|
+
|
|
2809
|
+
[[package]]
|
|
2810
|
+
name = "windows_i686_gnu"
|
|
2811
|
+
version = "0.52.6"
|
|
2812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2814
|
+
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "windows_i686_gnullvm"
|
|
2817
|
+
version = "0.52.6"
|
|
2818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "windows_i686_msvc"
|
|
2823
|
+
version = "0.52.6"
|
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2826
|
+
|
|
2827
|
+
[[package]]
|
|
2828
|
+
name = "windows_x86_64_gnu"
|
|
2829
|
+
version = "0.52.6"
|
|
2830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2831
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "windows_x86_64_gnullvm"
|
|
2835
|
+
version = "0.52.6"
|
|
2836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "windows_x86_64_msvc"
|
|
2841
|
+
version = "0.52.6"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "winnow"
|
|
2847
|
+
version = "1.0.4"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
2850
|
+
dependencies = [
|
|
2851
|
+
"memchr",
|
|
2852
|
+
]
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "wit-bindgen"
|
|
2856
|
+
version = "0.57.1"
|
|
2857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "write16"
|
|
2862
|
+
version = "1.0.0"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
2865
|
+
|
|
2866
|
+
[[package]]
|
|
2867
|
+
name = "writeable"
|
|
2868
|
+
version = "0.6.3"
|
|
2869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2871
|
+
dependencies = [
|
|
2872
|
+
"either",
|
|
2873
|
+
]
|
|
2874
|
+
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "yoke"
|
|
2877
|
+
version = "0.8.3"
|
|
2878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2880
|
+
dependencies = [
|
|
2881
|
+
"stable_deref_trait",
|
|
2882
|
+
"yoke-derive",
|
|
2883
|
+
"zerofrom",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "yoke-derive"
|
|
2888
|
+
version = "0.8.2"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"proc-macro2",
|
|
2893
|
+
"quote",
|
|
2894
|
+
"syn",
|
|
2895
|
+
"synstructure",
|
|
2896
|
+
]
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "zerocopy"
|
|
2900
|
+
version = "0.8.54"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
2903
|
+
dependencies = [
|
|
2904
|
+
"zerocopy-derive",
|
|
2905
|
+
]
|
|
2906
|
+
|
|
2907
|
+
[[package]]
|
|
2908
|
+
name = "zerocopy-derive"
|
|
2909
|
+
version = "0.8.54"
|
|
2910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
2912
|
+
dependencies = [
|
|
2913
|
+
"proc-macro2",
|
|
2914
|
+
"quote",
|
|
2915
|
+
"syn",
|
|
2916
|
+
]
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "zerofrom"
|
|
2920
|
+
version = "0.1.8"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"zerofrom-derive",
|
|
2925
|
+
]
|
|
2926
|
+
|
|
2927
|
+
[[package]]
|
|
2928
|
+
name = "zerofrom-derive"
|
|
2929
|
+
version = "0.1.7"
|
|
2930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2932
|
+
dependencies = [
|
|
2933
|
+
"proc-macro2",
|
|
2934
|
+
"quote",
|
|
2935
|
+
"syn",
|
|
2936
|
+
"synstructure",
|
|
2937
|
+
]
|
|
2938
|
+
|
|
2939
|
+
[[package]]
|
|
2940
|
+
name = "zeroize"
|
|
2941
|
+
version = "1.9.0"
|
|
2942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2943
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
2944
|
+
|
|
2945
|
+
[[package]]
|
|
2946
|
+
name = "zerotrie"
|
|
2947
|
+
version = "0.2.4"
|
|
2948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2949
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2950
|
+
dependencies = [
|
|
2951
|
+
"databake",
|
|
2952
|
+
"displaydoc",
|
|
2953
|
+
"litemap",
|
|
2954
|
+
"serde_core",
|
|
2955
|
+
"yoke",
|
|
2956
|
+
"zerofrom",
|
|
2957
|
+
"zerovec",
|
|
2958
|
+
]
|
|
2959
|
+
|
|
2960
|
+
[[package]]
|
|
2961
|
+
name = "zerovec"
|
|
2962
|
+
version = "0.11.6"
|
|
2963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2964
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2965
|
+
dependencies = [
|
|
2966
|
+
"databake",
|
|
2967
|
+
"serde",
|
|
2968
|
+
"yoke",
|
|
2969
|
+
"zerofrom",
|
|
2970
|
+
"zerovec-derive",
|
|
2971
|
+
]
|
|
2972
|
+
|
|
2973
|
+
[[package]]
|
|
2974
|
+
name = "zerovec-derive"
|
|
2975
|
+
version = "0.11.3"
|
|
2976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2978
|
+
dependencies = [
|
|
2979
|
+
"proc-macro2",
|
|
2980
|
+
"quote",
|
|
2981
|
+
"syn",
|
|
2982
|
+
]
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "zmij"
|
|
2986
|
+
version = "1.0.23"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "zstd"
|
|
2992
|
+
version = "0.13.3"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
2995
|
+
dependencies = [
|
|
2996
|
+
"zstd-safe",
|
|
2997
|
+
]
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "zstd-safe"
|
|
3001
|
+
version = "7.2.4"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3004
|
+
dependencies = [
|
|
3005
|
+
"zstd-sys",
|
|
3006
|
+
]
|
|
3007
|
+
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "zstd-sys"
|
|
3010
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3013
|
+
dependencies = [
|
|
3014
|
+
"cc",
|
|
3015
|
+
"pkg-config",
|
|
3016
|
+
]
|