qollage 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qollage-0.1.0/Cargo.lock +3559 -0
- qollage-0.1.0/Cargo.toml +9 -0
- qollage-0.1.0/PKG-INFO +79 -0
- qollage-0.1.0/README.md +51 -0
- qollage-0.1.0/pyproject.toml +39 -0
- qollage-0.1.0/qollage/Cargo.toml +42 -0
- qollage-0.1.0/qollage/DEPENDENCIES +61057 -0
- qollage-0.1.0/qollage/LICENSE +201 -0
- qollage-0.1.0/qollage/README.md +51 -0
- qollage-0.1.0/qollage/__init__.py +26 -0
- qollage-0.1.0/qollage/qollage.pyi +109 -0
- qollage-0.1.0/qollage/src/backend.rs +195 -0
- qollage-0.1.0/qollage/src/lib.rs +37 -0
- qollage-0.1.0/roqollage/Cargo.toml +40 -0
- qollage-0.1.0/roqollage/LICENSE +201 -0
- qollage-0.1.0/roqollage/README.md +20 -0
- qollage-0.1.0/roqollage/src/backend.rs +513 -0
- qollage-0.1.0/roqollage/src/interface.rs +2242 -0
- qollage-0.1.0/roqollage/src/lib.rs +29 -0
qollage-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,3559 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler"
|
|
7
|
+
version = "1.0.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.3"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aligned-vec"
|
|
22
|
+
version = "0.5.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anyhow"
|
|
28
|
+
version = "1.0.86"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "approx"
|
|
34
|
+
version = "0.5.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"num-traits",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "arbitrary"
|
|
43
|
+
version = "1.3.2"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "arg_enum_proc_macro"
|
|
49
|
+
version = "0.3.4"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"proc-macro2",
|
|
54
|
+
"quote",
|
|
55
|
+
"syn",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "arrayref"
|
|
60
|
+
version = "0.3.7"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "arrayvec"
|
|
66
|
+
version = "0.7.4"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "autocfg"
|
|
72
|
+
version = "1.3.0"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "av1-grain"
|
|
78
|
+
version = "0.2.3"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"anyhow",
|
|
83
|
+
"arrayvec",
|
|
84
|
+
"log",
|
|
85
|
+
"nom",
|
|
86
|
+
"num-rational",
|
|
87
|
+
"v_frame",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "avif-serialize"
|
|
92
|
+
version = "0.8.1"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2"
|
|
95
|
+
dependencies = [
|
|
96
|
+
"arrayvec",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "az"
|
|
101
|
+
version = "1.2.1"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "base64"
|
|
107
|
+
version = "0.21.7"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "base64"
|
|
113
|
+
version = "0.22.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "biblatex"
|
|
119
|
+
version = "0.9.3"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "27fe7285040d0227cd8b5395e1c4783f44f0b673eca5a657f4432ae401f2b7b8"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"numerals",
|
|
124
|
+
"paste",
|
|
125
|
+
"strum",
|
|
126
|
+
"unicode-normalization",
|
|
127
|
+
"unscanny",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bincode"
|
|
132
|
+
version = "1.3.3"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"serde",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "bit-set"
|
|
141
|
+
version = "0.5.3"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"bit-vec",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "bit-vec"
|
|
150
|
+
version = "0.6.3"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "bit_field"
|
|
156
|
+
version = "0.10.2"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "bitflags"
|
|
162
|
+
version = "1.3.2"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "bitflags"
|
|
168
|
+
version = "2.6.0"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"serde",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "bitstream-io"
|
|
177
|
+
version = "2.4.2"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "415f8399438eb5e4b2f73ed3152a3448b98149dda642a957ee704e1daa5cf1d8"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "built"
|
|
183
|
+
version = "0.7.3"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "c6a6c0b39c38fd754ac338b00a88066436389c0f029da5d37d1e01091d9b7c17"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "bumpalo"
|
|
189
|
+
version = "3.16.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "by_address"
|
|
195
|
+
version = "1.2.1"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "bytemuck"
|
|
201
|
+
version = "1.16.1"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "byteorder"
|
|
207
|
+
version = "1.5.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "byteorder-lite"
|
|
213
|
+
version = "0.1.0"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "cc"
|
|
219
|
+
version = "1.0.104"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"jobserver",
|
|
224
|
+
"libc",
|
|
225
|
+
"once_cell",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "cfg-expr"
|
|
230
|
+
version = "0.15.8"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"smallvec",
|
|
235
|
+
"target-lexicon",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "cfg-if"
|
|
240
|
+
version = "1.0.0"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "chinese-number"
|
|
246
|
+
version = "0.7.7"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "49fccaef6346f6d6a741908d3b79fe97c2debe2fbb5eb3a7d00ff5981b52bb6c"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"chinese-variant",
|
|
251
|
+
"enum-ordinalize",
|
|
252
|
+
"num-bigint",
|
|
253
|
+
"num-traits",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "chinese-variant"
|
|
258
|
+
version = "1.1.3"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "7588475145507237ded760e52bf2f1085495245502033756d28ea72ade0e498b"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "ciborium"
|
|
264
|
+
version = "0.2.2"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"ciborium-io",
|
|
269
|
+
"ciborium-ll",
|
|
270
|
+
"serde",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "ciborium-io"
|
|
275
|
+
version = "0.2.2"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "ciborium-ll"
|
|
281
|
+
version = "0.2.2"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"ciborium-io",
|
|
286
|
+
"half",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "citationberg"
|
|
291
|
+
version = "0.3.1"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "d259fe9fd78ffa05a119581d20fddb50bfba428311057b12741ffb9015123d0b"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"quick-xml 0.31.0",
|
|
296
|
+
"serde",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "cobs"
|
|
301
|
+
version = "0.2.3"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "color_quant"
|
|
307
|
+
version = "1.1.0"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "comemo"
|
|
313
|
+
version = "0.4.0"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "df6916408a724339aa77b18214233355f3eb04c42eb895e5f8909215bd8a7a91"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"comemo-macros",
|
|
318
|
+
"once_cell",
|
|
319
|
+
"parking_lot",
|
|
320
|
+
"siphasher 1.0.1",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "comemo-macros"
|
|
325
|
+
version = "0.4.0"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "c8936e42f9b4f5bdfaf23700609ac1f11cb03ad4c1ec128a4ee4fd0903e228db"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"proc-macro2",
|
|
330
|
+
"quote",
|
|
331
|
+
"syn",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "core_maths"
|
|
336
|
+
version = "0.1.0"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "e3b02505ccb8c50b0aa21ace0fc08c3e53adebd4e58caa18a36152803c7709a3"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"libm",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "crc32fast"
|
|
345
|
+
version = "1.4.2"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"cfg-if",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "crossbeam-deque"
|
|
354
|
+
version = "0.8.5"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"crossbeam-epoch",
|
|
359
|
+
"crossbeam-utils",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "crossbeam-epoch"
|
|
364
|
+
version = "0.9.18"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"crossbeam-utils",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "crossbeam-utils"
|
|
373
|
+
version = "0.8.20"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "crunchy"
|
|
379
|
+
version = "0.2.2"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "csv"
|
|
385
|
+
version = "1.3.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"csv-core",
|
|
390
|
+
"itoa",
|
|
391
|
+
"ryu",
|
|
392
|
+
"serde",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "csv-core"
|
|
397
|
+
version = "0.1.11"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"memchr",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "data-url"
|
|
406
|
+
version = "0.3.1"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "deranged"
|
|
412
|
+
version = "0.3.11"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"powerfmt",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "displaydoc"
|
|
421
|
+
version = "0.2.5"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"proc-macro2",
|
|
426
|
+
"quote",
|
|
427
|
+
"syn",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "downcast-rs"
|
|
432
|
+
version = "1.2.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "dyn-clone"
|
|
438
|
+
version = "1.0.17"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "ecow"
|
|
444
|
+
version = "0.2.2"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "54bfbb1708988623190a6c4dbedaeaf0f53c20c6395abd6a01feb327b3146f4b"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"serde",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "either"
|
|
453
|
+
version = "1.13.0"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "embedded-io"
|
|
459
|
+
version = "0.4.0"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "enum-ordinalize"
|
|
465
|
+
version = "4.3.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"enum-ordinalize-derive",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "enum-ordinalize-derive"
|
|
474
|
+
version = "4.3.1"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"proc-macro2",
|
|
479
|
+
"quote",
|
|
480
|
+
"syn",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "equivalent"
|
|
485
|
+
version = "1.0.1"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "errno"
|
|
491
|
+
version = "0.3.9"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"libc",
|
|
496
|
+
"windows-sys",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "exr"
|
|
501
|
+
version = "1.72.0"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"bit_field",
|
|
506
|
+
"flume",
|
|
507
|
+
"half",
|
|
508
|
+
"lebe",
|
|
509
|
+
"miniz_oxide",
|
|
510
|
+
"rayon-core",
|
|
511
|
+
"smallvec",
|
|
512
|
+
"zune-inflate",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "fancy-regex"
|
|
517
|
+
version = "0.11.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"bit-set",
|
|
522
|
+
"regex",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "fast-srgb8"
|
|
527
|
+
version = "1.0.0"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "fdeflate"
|
|
533
|
+
version = "0.3.4"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"simd-adler32",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "filetime"
|
|
542
|
+
version = "0.2.23"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"cfg-if",
|
|
547
|
+
"libc",
|
|
548
|
+
"redox_syscall 0.4.1",
|
|
549
|
+
"windows-sys",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "fixedbitset"
|
|
554
|
+
version = "0.4.2"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "flate2"
|
|
560
|
+
version = "1.0.30"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"crc32fast",
|
|
565
|
+
"miniz_oxide",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "float-cmp"
|
|
570
|
+
version = "0.9.0"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "flume"
|
|
576
|
+
version = "0.11.0"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"spin",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "fnv"
|
|
585
|
+
version = "1.0.7"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "fontdb"
|
|
591
|
+
version = "0.16.2"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "b0299020c3ef3f60f526a4f64ab4a3d4ce116b1acbf24cdd22da0068e5d81dc3"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"log",
|
|
596
|
+
"slotmap",
|
|
597
|
+
"tinyvec",
|
|
598
|
+
"ttf-parser 0.20.0",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "form_urlencoded"
|
|
603
|
+
version = "1.2.1"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"percent-encoding",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "futures"
|
|
612
|
+
version = "0.3.30"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"futures-channel",
|
|
617
|
+
"futures-core",
|
|
618
|
+
"futures-executor",
|
|
619
|
+
"futures-io",
|
|
620
|
+
"futures-sink",
|
|
621
|
+
"futures-task",
|
|
622
|
+
"futures-util",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "futures-channel"
|
|
627
|
+
version = "0.3.30"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"futures-core",
|
|
632
|
+
"futures-sink",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "futures-core"
|
|
637
|
+
version = "0.3.30"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "futures-executor"
|
|
643
|
+
version = "0.3.30"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"futures-core",
|
|
648
|
+
"futures-task",
|
|
649
|
+
"futures-util",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "futures-io"
|
|
654
|
+
version = "0.3.30"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "futures-sink"
|
|
660
|
+
version = "0.3.30"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "futures-task"
|
|
666
|
+
version = "0.3.30"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "futures-util"
|
|
672
|
+
version = "0.3.30"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"futures-channel",
|
|
677
|
+
"futures-core",
|
|
678
|
+
"futures-io",
|
|
679
|
+
"futures-sink",
|
|
680
|
+
"futures-task",
|
|
681
|
+
"memchr",
|
|
682
|
+
"pin-project-lite",
|
|
683
|
+
"pin-utils",
|
|
684
|
+
"slab",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "getrandom"
|
|
689
|
+
version = "0.2.15"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"cfg-if",
|
|
694
|
+
"libc",
|
|
695
|
+
"wasi",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "gif"
|
|
700
|
+
version = "0.12.0"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"color_quant",
|
|
705
|
+
"weezl",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "gif"
|
|
710
|
+
version = "0.13.1"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"color_quant",
|
|
715
|
+
"weezl",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "half"
|
|
720
|
+
version = "2.4.1"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"cfg-if",
|
|
725
|
+
"crunchy",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "hashbrown"
|
|
730
|
+
version = "0.14.5"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "hayagriva"
|
|
736
|
+
version = "0.5.3"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "1d0d20c98b77b86ce737876b2a1653e2e6abbeee84afbb39d72111091191c97a"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"biblatex",
|
|
741
|
+
"ciborium",
|
|
742
|
+
"citationberg",
|
|
743
|
+
"indexmap",
|
|
744
|
+
"numerals",
|
|
745
|
+
"paste",
|
|
746
|
+
"serde",
|
|
747
|
+
"serde_yaml",
|
|
748
|
+
"thiserror",
|
|
749
|
+
"unic-langid",
|
|
750
|
+
"unicode-segmentation",
|
|
751
|
+
"unscanny",
|
|
752
|
+
"url",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "heck"
|
|
757
|
+
version = "0.4.1"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "heck"
|
|
763
|
+
version = "0.5.0"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "hypher"
|
|
769
|
+
version = "0.1.5"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "3b24ad5637230df201ab1034d593f1d09bf7f2a9274f2e8897638078579f4265"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "icu_collections"
|
|
775
|
+
version = "1.5.0"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"displaydoc",
|
|
780
|
+
"serde",
|
|
781
|
+
"yoke",
|
|
782
|
+
"zerofrom",
|
|
783
|
+
"zerovec",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "icu_locid"
|
|
788
|
+
version = "1.5.0"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"displaydoc",
|
|
793
|
+
"litemap",
|
|
794
|
+
"tinystr",
|
|
795
|
+
"writeable",
|
|
796
|
+
"zerovec",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "icu_locid_transform"
|
|
801
|
+
version = "1.5.0"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"displaydoc",
|
|
806
|
+
"icu_locid",
|
|
807
|
+
"icu_locid_transform_data",
|
|
808
|
+
"icu_provider",
|
|
809
|
+
"tinystr",
|
|
810
|
+
"zerovec",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "icu_locid_transform_data"
|
|
815
|
+
version = "1.5.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "icu_properties"
|
|
821
|
+
version = "1.5.1"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"displaydoc",
|
|
826
|
+
"icu_collections",
|
|
827
|
+
"icu_locid_transform",
|
|
828
|
+
"icu_properties_data",
|
|
829
|
+
"icu_provider",
|
|
830
|
+
"serde",
|
|
831
|
+
"tinystr",
|
|
832
|
+
"zerovec",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "icu_properties_data"
|
|
837
|
+
version = "1.5.0"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "icu_provider"
|
|
843
|
+
version = "1.5.0"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"displaydoc",
|
|
848
|
+
"icu_locid",
|
|
849
|
+
"icu_provider_macros",
|
|
850
|
+
"postcard",
|
|
851
|
+
"serde",
|
|
852
|
+
"stable_deref_trait",
|
|
853
|
+
"tinystr",
|
|
854
|
+
"writeable",
|
|
855
|
+
"yoke",
|
|
856
|
+
"zerofrom",
|
|
857
|
+
"zerovec",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "icu_provider_adapters"
|
|
862
|
+
version = "1.5.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "d6324dfd08348a8e0374a447ebd334044d766b1839bb8d5ccf2482a99a77c0bc"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"icu_locid",
|
|
867
|
+
"icu_locid_transform",
|
|
868
|
+
"icu_provider",
|
|
869
|
+
"tinystr",
|
|
870
|
+
"zerovec",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "icu_provider_blob"
|
|
875
|
+
version = "1.5.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "c24b98d1365f55d78186c205817631a4acf08d7a45bdf5dc9dcf9c5d54dccf51"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"icu_provider",
|
|
880
|
+
"postcard",
|
|
881
|
+
"serde",
|
|
882
|
+
"writeable",
|
|
883
|
+
"zerotrie",
|
|
884
|
+
"zerovec",
|
|
885
|
+
]
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "icu_provider_macros"
|
|
889
|
+
version = "1.5.0"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"proc-macro2",
|
|
894
|
+
"quote",
|
|
895
|
+
"syn",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "icu_segmenter"
|
|
900
|
+
version = "1.5.0"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "a717725612346ffc2d7b42c94b820db6908048f39434504cb130e8b46256b0de"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"core_maths",
|
|
905
|
+
"displaydoc",
|
|
906
|
+
"icu_collections",
|
|
907
|
+
"icu_locid",
|
|
908
|
+
"icu_provider",
|
|
909
|
+
"icu_segmenter_data",
|
|
910
|
+
"serde",
|
|
911
|
+
"utf8_iter",
|
|
912
|
+
"zerovec",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "icu_segmenter_data"
|
|
917
|
+
version = "1.5.0"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "f739ee737260d955e330bc83fdeaaf1631f7fb7ed218761d3c04bb13bb7d79df"
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "idna"
|
|
923
|
+
version = "0.5.0"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"unicode-bidi",
|
|
928
|
+
"unicode-normalization",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "if_chain"
|
|
933
|
+
version = "1.0.2"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "image"
|
|
939
|
+
version = "0.24.9"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"bytemuck",
|
|
944
|
+
"byteorder",
|
|
945
|
+
"color_quant",
|
|
946
|
+
"gif 0.13.1",
|
|
947
|
+
"jpeg-decoder",
|
|
948
|
+
"num-traits",
|
|
949
|
+
"png",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "image"
|
|
954
|
+
version = "0.25.1"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"bytemuck",
|
|
959
|
+
"byteorder",
|
|
960
|
+
"color_quant",
|
|
961
|
+
"exr",
|
|
962
|
+
"gif 0.13.1",
|
|
963
|
+
"image-webp",
|
|
964
|
+
"num-traits",
|
|
965
|
+
"png",
|
|
966
|
+
"qoi",
|
|
967
|
+
"ravif",
|
|
968
|
+
"rayon",
|
|
969
|
+
"rgb",
|
|
970
|
+
"tiff",
|
|
971
|
+
"zune-core",
|
|
972
|
+
"zune-jpeg",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "image-webp"
|
|
977
|
+
version = "0.1.2"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"byteorder-lite",
|
|
982
|
+
"thiserror",
|
|
983
|
+
]
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "imagesize"
|
|
987
|
+
version = "0.12.0"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284"
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "imgref"
|
|
993
|
+
version = "1.10.1"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126"
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "indexmap"
|
|
999
|
+
version = "2.2.6"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1002
|
+
dependencies = [
|
|
1003
|
+
"equivalent",
|
|
1004
|
+
"hashbrown",
|
|
1005
|
+
"serde",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "indexmap-nostd"
|
|
1010
|
+
version = "0.4.0"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590"
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "indoc"
|
|
1016
|
+
version = "2.0.5"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "interpolate_name"
|
|
1022
|
+
version = "0.2.4"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"proc-macro2",
|
|
1027
|
+
"quote",
|
|
1028
|
+
"syn",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "inventory"
|
|
1033
|
+
version = "0.3.15"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "itertools"
|
|
1039
|
+
version = "0.12.1"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"either",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "itoa"
|
|
1048
|
+
version = "1.0.11"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "jobserver"
|
|
1054
|
+
version = "0.1.31"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"libc",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "jpeg-decoder"
|
|
1063
|
+
version = "0.3.1"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "kamadak-exif"
|
|
1069
|
+
version = "0.5.5"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"mutate_once",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "kurbo"
|
|
1078
|
+
version = "0.9.5"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "bd85a5776cd9500c2e2059c8c76c3b01528566b7fcbaf8098b55a33fc298849b"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"arrayvec",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "lebe"
|
|
1087
|
+
version = "0.5.2"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "libc"
|
|
1093
|
+
version = "0.2.155"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "libfuzzer-sys"
|
|
1099
|
+
version = "0.4.7"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"arbitrary",
|
|
1104
|
+
"cc",
|
|
1105
|
+
"once_cell",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "libm"
|
|
1110
|
+
version = "0.2.8"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "linked-hash-map"
|
|
1116
|
+
version = "0.5.6"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "linux-raw-sys"
|
|
1122
|
+
version = "0.4.14"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "lipsum"
|
|
1128
|
+
version = "0.9.1"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "636860251af8963cc40f6b4baadee105f02e21b28131d76eba8e40ce84ab8064"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"rand",
|
|
1133
|
+
"rand_chacha",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "litemap"
|
|
1138
|
+
version = "0.7.3"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"serde",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "lock_api"
|
|
1147
|
+
version = "0.4.12"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"autocfg",
|
|
1152
|
+
"scopeguard",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "log"
|
|
1157
|
+
version = "0.4.22"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "loop9"
|
|
1163
|
+
version = "0.1.5"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"imgref",
|
|
1168
|
+
]
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "matrixmultiply"
|
|
1172
|
+
version = "0.3.8"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"autocfg",
|
|
1177
|
+
"rawpointer",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "maybe-rayon"
|
|
1182
|
+
version = "0.1.1"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"cfg-if",
|
|
1187
|
+
"rayon",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "memchr"
|
|
1192
|
+
version = "2.7.4"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "memoffset"
|
|
1198
|
+
version = "0.9.1"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"autocfg",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "minimal-lexical"
|
|
1207
|
+
version = "0.2.1"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "miniz_oxide"
|
|
1213
|
+
version = "0.7.4"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"adler",
|
|
1218
|
+
"simd-adler32",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "mutate_once"
|
|
1223
|
+
version = "0.1.1"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "nalgebra"
|
|
1229
|
+
version = "0.32.6"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"approx",
|
|
1234
|
+
"matrixmultiply",
|
|
1235
|
+
"nalgebra-macros",
|
|
1236
|
+
"num-complex",
|
|
1237
|
+
"num-rational",
|
|
1238
|
+
"num-traits",
|
|
1239
|
+
"simba",
|
|
1240
|
+
"typenum",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "nalgebra-macros"
|
|
1245
|
+
version = "0.2.2"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
1248
|
+
dependencies = [
|
|
1249
|
+
"proc-macro2",
|
|
1250
|
+
"quote",
|
|
1251
|
+
"syn",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "ndarray"
|
|
1256
|
+
version = "0.15.6"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"matrixmultiply",
|
|
1261
|
+
"num-complex",
|
|
1262
|
+
"num-integer",
|
|
1263
|
+
"num-traits",
|
|
1264
|
+
"rawpointer",
|
|
1265
|
+
"serde",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "new_debug_unreachable"
|
|
1270
|
+
version = "1.0.6"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "nom"
|
|
1276
|
+
version = "7.1.3"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"memchr",
|
|
1281
|
+
"minimal-lexical",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "noop_proc_macro"
|
|
1286
|
+
version = "0.3.0"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "num-bigint"
|
|
1292
|
+
version = "0.4.6"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"num-integer",
|
|
1297
|
+
"num-traits",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "num-complex"
|
|
1302
|
+
version = "0.4.6"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"num-traits",
|
|
1307
|
+
"serde",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "num-conv"
|
|
1312
|
+
version = "0.1.0"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "num-derive"
|
|
1318
|
+
version = "0.4.2"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"proc-macro2",
|
|
1323
|
+
"quote",
|
|
1324
|
+
"syn",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "num-integer"
|
|
1329
|
+
version = "0.1.46"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"num-traits",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "num-rational"
|
|
1338
|
+
version = "0.4.2"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"num-bigint",
|
|
1343
|
+
"num-integer",
|
|
1344
|
+
"num-traits",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "num-traits"
|
|
1349
|
+
version = "0.2.19"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"autocfg",
|
|
1354
|
+
"libm",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "numerals"
|
|
1359
|
+
version = "0.1.4"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "e25be21376a772d15f97ae789845340a9651d3c4246ff5ebb6a2b35f9c37bd31"
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "numpy"
|
|
1365
|
+
version = "0.21.0"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"libc",
|
|
1370
|
+
"ndarray",
|
|
1371
|
+
"num-complex",
|
|
1372
|
+
"num-integer",
|
|
1373
|
+
"num-traits",
|
|
1374
|
+
"pyo3",
|
|
1375
|
+
"rustc-hash",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "once_cell"
|
|
1380
|
+
version = "1.19.0"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "palette"
|
|
1386
|
+
version = "0.7.6"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"approx",
|
|
1391
|
+
"fast-srgb8",
|
|
1392
|
+
"libm",
|
|
1393
|
+
"palette_derive",
|
|
1394
|
+
]
|
|
1395
|
+
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "palette_derive"
|
|
1398
|
+
version = "0.7.6"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
|
|
1401
|
+
dependencies = [
|
|
1402
|
+
"by_address",
|
|
1403
|
+
"proc-macro2",
|
|
1404
|
+
"quote",
|
|
1405
|
+
"syn",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "parking_lot"
|
|
1410
|
+
version = "0.12.3"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"lock_api",
|
|
1415
|
+
"parking_lot_core",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "parking_lot_core"
|
|
1420
|
+
version = "0.9.10"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"cfg-if",
|
|
1425
|
+
"libc",
|
|
1426
|
+
"redox_syscall 0.5.2",
|
|
1427
|
+
"smallvec",
|
|
1428
|
+
"windows-targets",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "paste"
|
|
1433
|
+
version = "1.0.15"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "percent-encoding"
|
|
1439
|
+
version = "2.3.1"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "petgraph"
|
|
1445
|
+
version = "0.6.5"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"fixedbitset",
|
|
1450
|
+
"indexmap",
|
|
1451
|
+
"serde",
|
|
1452
|
+
"serde_derive",
|
|
1453
|
+
]
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "phf"
|
|
1457
|
+
version = "0.11.2"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"phf_macros",
|
|
1462
|
+
"phf_shared",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "phf_generator"
|
|
1467
|
+
version = "0.11.2"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"phf_shared",
|
|
1472
|
+
"rand",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "phf_macros"
|
|
1477
|
+
version = "0.11.2"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"phf_generator",
|
|
1482
|
+
"phf_shared",
|
|
1483
|
+
"proc-macro2",
|
|
1484
|
+
"quote",
|
|
1485
|
+
"syn",
|
|
1486
|
+
]
|
|
1487
|
+
|
|
1488
|
+
[[package]]
|
|
1489
|
+
name = "phf_shared"
|
|
1490
|
+
version = "0.11.2"
|
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
1493
|
+
dependencies = [
|
|
1494
|
+
"siphasher 0.3.11",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "pico-args"
|
|
1499
|
+
version = "0.5.0"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "pin-project-lite"
|
|
1505
|
+
version = "0.2.14"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "pin-utils"
|
|
1511
|
+
version = "0.1.0"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "pixglyph"
|
|
1517
|
+
version = "0.3.0"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "e2e0f8ad4c197db38125b880c3c44544788665c7d5f4c42f5a35da44bca1a712"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"ttf-parser 0.20.0",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "pkg-config"
|
|
1526
|
+
version = "0.3.30"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "plist"
|
|
1532
|
+
version = "1.7.0"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"base64 0.22.1",
|
|
1537
|
+
"indexmap",
|
|
1538
|
+
"quick-xml 0.32.0",
|
|
1539
|
+
"serde",
|
|
1540
|
+
"time",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "png"
|
|
1545
|
+
version = "0.17.13"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
|
|
1548
|
+
dependencies = [
|
|
1549
|
+
"bitflags 1.3.2",
|
|
1550
|
+
"crc32fast",
|
|
1551
|
+
"fdeflate",
|
|
1552
|
+
"flate2",
|
|
1553
|
+
"miniz_oxide",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "portable-atomic"
|
|
1558
|
+
version = "1.6.0"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "postcard"
|
|
1564
|
+
version = "1.0.8"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"cobs",
|
|
1569
|
+
"embedded-io",
|
|
1570
|
+
"serde",
|
|
1571
|
+
]
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "powerfmt"
|
|
1575
|
+
version = "0.2.0"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "ppv-lite86"
|
|
1581
|
+
version = "0.2.17"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "proc-macro2"
|
|
1587
|
+
version = "1.0.86"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"unicode-ident",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "profiling"
|
|
1596
|
+
version = "1.0.15"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"profiling-procmacros",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "profiling-procmacros"
|
|
1605
|
+
version = "1.0.15"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"quote",
|
|
1610
|
+
"syn",
|
|
1611
|
+
]
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "psm"
|
|
1615
|
+
version = "0.1.21"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"cc",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "pyo3"
|
|
1624
|
+
version = "0.21.2"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"cfg-if",
|
|
1629
|
+
"indoc",
|
|
1630
|
+
"inventory",
|
|
1631
|
+
"libc",
|
|
1632
|
+
"memoffset",
|
|
1633
|
+
"num-complex",
|
|
1634
|
+
"parking_lot",
|
|
1635
|
+
"portable-atomic",
|
|
1636
|
+
"pyo3-build-config 0.21.2",
|
|
1637
|
+
"pyo3-ffi",
|
|
1638
|
+
"pyo3-macros",
|
|
1639
|
+
"unindent",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "pyo3-build-config"
|
|
1644
|
+
version = "0.20.3"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"once_cell",
|
|
1649
|
+
"target-lexicon",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "pyo3-build-config"
|
|
1654
|
+
version = "0.21.2"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"once_cell",
|
|
1659
|
+
"target-lexicon",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "pyo3-ffi"
|
|
1664
|
+
version = "0.21.2"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"libc",
|
|
1669
|
+
"pyo3-build-config 0.21.2",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "pyo3-macros"
|
|
1674
|
+
version = "0.21.2"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"proc-macro2",
|
|
1679
|
+
"pyo3-macros-backend",
|
|
1680
|
+
"quote",
|
|
1681
|
+
"syn",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "pyo3-macros-backend"
|
|
1686
|
+
version = "0.21.2"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"heck 0.4.1",
|
|
1691
|
+
"proc-macro2",
|
|
1692
|
+
"pyo3-build-config 0.21.2",
|
|
1693
|
+
"quote",
|
|
1694
|
+
"syn",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "qcms"
|
|
1699
|
+
version = "0.3.0"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "edecfcd5d755a5e5d98e24cf43113e7cdaec5a070edd0f6b250c03a573da30fa"
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "qoi"
|
|
1705
|
+
version = "0.4.1"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"bytemuck",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "qollage"
|
|
1714
|
+
version = "0.1.0"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"image 0.25.1",
|
|
1717
|
+
"ndarray",
|
|
1718
|
+
"pyo3",
|
|
1719
|
+
"pyo3-build-config 0.21.2",
|
|
1720
|
+
"qoqo",
|
|
1721
|
+
"qoqo_calculator",
|
|
1722
|
+
"qoqo_calculator_pyo3",
|
|
1723
|
+
"roqollage",
|
|
1724
|
+
"roqoqo",
|
|
1725
|
+
"test-case",
|
|
1726
|
+
]
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "qoqo"
|
|
1730
|
+
version = "1.14.0"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "c37715f969cf4027b9d042e52196d3008c5b6fe8344113e3ca61b790d2383a4a"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"bincode",
|
|
1735
|
+
"ndarray",
|
|
1736
|
+
"num-complex",
|
|
1737
|
+
"numpy",
|
|
1738
|
+
"proc-macro2",
|
|
1739
|
+
"pyo3",
|
|
1740
|
+
"pyo3-build-config 0.21.2",
|
|
1741
|
+
"qoqo-macros",
|
|
1742
|
+
"qoqo_calculator",
|
|
1743
|
+
"qoqo_calculator_pyo3",
|
|
1744
|
+
"quote",
|
|
1745
|
+
"regex",
|
|
1746
|
+
"roqoqo",
|
|
1747
|
+
"schemars",
|
|
1748
|
+
"serde",
|
|
1749
|
+
"serde_json",
|
|
1750
|
+
"struqture",
|
|
1751
|
+
"struqture-py",
|
|
1752
|
+
"syn",
|
|
1753
|
+
"thiserror",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "qoqo-macros"
|
|
1758
|
+
version = "1.14.0"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "58334799cb43ae7b5334a4e48081eb0809cf5aa4f8a855808bde329d9277a659"
|
|
1761
|
+
dependencies = [
|
|
1762
|
+
"proc-macro2",
|
|
1763
|
+
"quote",
|
|
1764
|
+
"struqture",
|
|
1765
|
+
"syn",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "qoqo_calculator"
|
|
1770
|
+
version = "1.2.2"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "6fa8b27bb34103af09afcca6d21ccb52dfa66a34c0ffa0f8103003bb1afd9d53"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"num-complex",
|
|
1775
|
+
"schemars",
|
|
1776
|
+
"serde",
|
|
1777
|
+
"thiserror",
|
|
1778
|
+
]
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "qoqo_calculator_pyo3"
|
|
1782
|
+
version = "1.2.2"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "76c7ab3901e5e23a81517803d3cecc9e3de2fe0fbf1355726ff9df6e7ff1b4fd"
|
|
1785
|
+
dependencies = [
|
|
1786
|
+
"num-complex",
|
|
1787
|
+
"pyo3",
|
|
1788
|
+
"pyo3-build-config 0.21.2",
|
|
1789
|
+
"qoqo_calculator",
|
|
1790
|
+
"serde",
|
|
1791
|
+
"thiserror",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "quick-error"
|
|
1796
|
+
version = "2.0.1"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "quick-xml"
|
|
1802
|
+
version = "0.31.0"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"memchr",
|
|
1807
|
+
"serde",
|
|
1808
|
+
]
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "quick-xml"
|
|
1812
|
+
version = "0.32.0"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
|
1815
|
+
dependencies = [
|
|
1816
|
+
"memchr",
|
|
1817
|
+
]
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "quote"
|
|
1821
|
+
version = "1.0.36"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
1824
|
+
dependencies = [
|
|
1825
|
+
"proc-macro2",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "rand"
|
|
1830
|
+
version = "0.8.5"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"libc",
|
|
1835
|
+
"rand_chacha",
|
|
1836
|
+
"rand_core",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "rand_chacha"
|
|
1841
|
+
version = "0.3.1"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1844
|
+
dependencies = [
|
|
1845
|
+
"ppv-lite86",
|
|
1846
|
+
"rand_core",
|
|
1847
|
+
]
|
|
1848
|
+
|
|
1849
|
+
[[package]]
|
|
1850
|
+
name = "rand_core"
|
|
1851
|
+
version = "0.6.4"
|
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1854
|
+
dependencies = [
|
|
1855
|
+
"getrandom",
|
|
1856
|
+
]
|
|
1857
|
+
|
|
1858
|
+
[[package]]
|
|
1859
|
+
name = "rand_distr"
|
|
1860
|
+
version = "0.4.3"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"num-traits",
|
|
1865
|
+
"rand",
|
|
1866
|
+
]
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "rav1e"
|
|
1870
|
+
version = "0.7.1"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
|
|
1873
|
+
dependencies = [
|
|
1874
|
+
"arbitrary",
|
|
1875
|
+
"arg_enum_proc_macro",
|
|
1876
|
+
"arrayvec",
|
|
1877
|
+
"av1-grain",
|
|
1878
|
+
"bitstream-io",
|
|
1879
|
+
"built",
|
|
1880
|
+
"cfg-if",
|
|
1881
|
+
"interpolate_name",
|
|
1882
|
+
"itertools",
|
|
1883
|
+
"libc",
|
|
1884
|
+
"libfuzzer-sys",
|
|
1885
|
+
"log",
|
|
1886
|
+
"maybe-rayon",
|
|
1887
|
+
"new_debug_unreachable",
|
|
1888
|
+
"noop_proc_macro",
|
|
1889
|
+
"num-derive",
|
|
1890
|
+
"num-traits",
|
|
1891
|
+
"once_cell",
|
|
1892
|
+
"paste",
|
|
1893
|
+
"profiling",
|
|
1894
|
+
"rand",
|
|
1895
|
+
"rand_chacha",
|
|
1896
|
+
"simd_helpers",
|
|
1897
|
+
"system-deps",
|
|
1898
|
+
"thiserror",
|
|
1899
|
+
"v_frame",
|
|
1900
|
+
"wasm-bindgen",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "ravif"
|
|
1905
|
+
version = "0.11.7"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "67376f469e7e7840d0040bbf4b9b3334005bb167f814621326e4c7ab8cd6e944"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"avif-serialize",
|
|
1910
|
+
"imgref",
|
|
1911
|
+
"loop9",
|
|
1912
|
+
"quick-error",
|
|
1913
|
+
"rav1e",
|
|
1914
|
+
"rayon",
|
|
1915
|
+
"rgb",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "rawpointer"
|
|
1920
|
+
version = "0.2.1"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "rayon"
|
|
1926
|
+
version = "1.10.0"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"either",
|
|
1931
|
+
"rayon-core",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "rayon-core"
|
|
1936
|
+
version = "1.12.1"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"crossbeam-deque",
|
|
1941
|
+
"crossbeam-utils",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "redox_syscall"
|
|
1946
|
+
version = "0.4.1"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"bitflags 1.3.2",
|
|
1951
|
+
]
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "redox_syscall"
|
|
1955
|
+
version = "0.5.2"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
|
1958
|
+
dependencies = [
|
|
1959
|
+
"bitflags 2.6.0",
|
|
1960
|
+
]
|
|
1961
|
+
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "regex"
|
|
1964
|
+
version = "1.10.5"
|
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
|
1967
|
+
dependencies = [
|
|
1968
|
+
"aho-corasick",
|
|
1969
|
+
"memchr",
|
|
1970
|
+
"regex-automata",
|
|
1971
|
+
"regex-syntax",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "regex-automata"
|
|
1976
|
+
version = "0.4.7"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
1979
|
+
dependencies = [
|
|
1980
|
+
"aho-corasick",
|
|
1981
|
+
"memchr",
|
|
1982
|
+
"regex-syntax",
|
|
1983
|
+
]
|
|
1984
|
+
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "regex-syntax"
|
|
1987
|
+
version = "0.8.4"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "resvg"
|
|
1993
|
+
version = "0.38.0"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "5c34501046959e06470ba62a2dc7f31c15f94ac250d842a45f9e012f4ee40c1e"
|
|
1996
|
+
dependencies = [
|
|
1997
|
+
"gif 0.12.0",
|
|
1998
|
+
"jpeg-decoder",
|
|
1999
|
+
"log",
|
|
2000
|
+
"pico-args",
|
|
2001
|
+
"png",
|
|
2002
|
+
"rgb",
|
|
2003
|
+
"svgtypes",
|
|
2004
|
+
"tiny-skia",
|
|
2005
|
+
"usvg",
|
|
2006
|
+
]
|
|
2007
|
+
|
|
2008
|
+
[[package]]
|
|
2009
|
+
name = "rgb"
|
|
2010
|
+
version = "0.8.40"
|
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
+
checksum = "a7439be6844e40133eda024efd85bf07f59d0dd2f59b10c00dd6cfb92cc5c741"
|
|
2013
|
+
dependencies = [
|
|
2014
|
+
"bytemuck",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "ring"
|
|
2019
|
+
version = "0.17.8"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"cc",
|
|
2024
|
+
"cfg-if",
|
|
2025
|
+
"getrandom",
|
|
2026
|
+
"libc",
|
|
2027
|
+
"spin",
|
|
2028
|
+
"untrusted",
|
|
2029
|
+
"windows-sys",
|
|
2030
|
+
]
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "roqollage"
|
|
2034
|
+
version = "0.1.0"
|
|
2035
|
+
dependencies = [
|
|
2036
|
+
"bytemuck",
|
|
2037
|
+
"comemo",
|
|
2038
|
+
"image 0.25.1",
|
|
2039
|
+
"ndarray",
|
|
2040
|
+
"num-complex",
|
|
2041
|
+
"qoqo_calculator",
|
|
2042
|
+
"regex",
|
|
2043
|
+
"roqoqo",
|
|
2044
|
+
"serial_test",
|
|
2045
|
+
"tar",
|
|
2046
|
+
"test-case",
|
|
2047
|
+
"time",
|
|
2048
|
+
"ttf-parser 0.21.1",
|
|
2049
|
+
"typst",
|
|
2050
|
+
"typst-render",
|
|
2051
|
+
"ureq",
|
|
2052
|
+
"zune-inflate",
|
|
2053
|
+
]
|
|
2054
|
+
|
|
2055
|
+
[[package]]
|
|
2056
|
+
name = "roqoqo"
|
|
2057
|
+
version = "1.14.0"
|
|
2058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
+
checksum = "b62db22116b097801d5329c27b3f7c6a7fe8afad446ed9a5204420d8b5865925"
|
|
2060
|
+
dependencies = [
|
|
2061
|
+
"bincode",
|
|
2062
|
+
"nalgebra",
|
|
2063
|
+
"ndarray",
|
|
2064
|
+
"num-complex",
|
|
2065
|
+
"petgraph",
|
|
2066
|
+
"proc-macro2",
|
|
2067
|
+
"qoqo_calculator",
|
|
2068
|
+
"quote",
|
|
2069
|
+
"rand",
|
|
2070
|
+
"rand_distr",
|
|
2071
|
+
"roqoqo-derive",
|
|
2072
|
+
"serde",
|
|
2073
|
+
"struqture",
|
|
2074
|
+
"syn",
|
|
2075
|
+
"thiserror",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "roqoqo-derive"
|
|
2080
|
+
version = "1.14.0"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "df8e08170811f9a78a64949c1f2553741d1623decf2927cc3dfdaf328539a222"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"proc-macro2",
|
|
2085
|
+
"quote",
|
|
2086
|
+
"syn",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "roxmltree"
|
|
2091
|
+
version = "0.19.0"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f"
|
|
2094
|
+
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "rustc-hash"
|
|
2097
|
+
version = "1.1.0"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "rustix"
|
|
2103
|
+
version = "0.38.34"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"bitflags 2.6.0",
|
|
2108
|
+
"errno",
|
|
2109
|
+
"libc",
|
|
2110
|
+
"linux-raw-sys",
|
|
2111
|
+
"windows-sys",
|
|
2112
|
+
]
|
|
2113
|
+
|
|
2114
|
+
[[package]]
|
|
2115
|
+
name = "rustls"
|
|
2116
|
+
version = "0.22.4"
|
|
2117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
2119
|
+
dependencies = [
|
|
2120
|
+
"log",
|
|
2121
|
+
"ring",
|
|
2122
|
+
"rustls-pki-types",
|
|
2123
|
+
"rustls-webpki",
|
|
2124
|
+
"subtle",
|
|
2125
|
+
"zeroize",
|
|
2126
|
+
]
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "rustls-pki-types"
|
|
2130
|
+
version = "1.7.0"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
2133
|
+
|
|
2134
|
+
[[package]]
|
|
2135
|
+
name = "rustls-webpki"
|
|
2136
|
+
version = "0.102.5"
|
|
2137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
+
checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78"
|
|
2139
|
+
dependencies = [
|
|
2140
|
+
"ring",
|
|
2141
|
+
"rustls-pki-types",
|
|
2142
|
+
"untrusted",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "rustversion"
|
|
2147
|
+
version = "1.0.17"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
2150
|
+
|
|
2151
|
+
[[package]]
|
|
2152
|
+
name = "rustybuzz"
|
|
2153
|
+
version = "0.12.1"
|
|
2154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
+
checksum = "f0ae5692c5beaad6a9e22830deeed7874eae8a4e3ba4076fb48e12c56856222c"
|
|
2156
|
+
dependencies = [
|
|
2157
|
+
"bitflags 2.6.0",
|
|
2158
|
+
"bytemuck",
|
|
2159
|
+
"smallvec",
|
|
2160
|
+
"ttf-parser 0.20.0",
|
|
2161
|
+
"unicode-bidi-mirroring",
|
|
2162
|
+
"unicode-ccc",
|
|
2163
|
+
"unicode-properties",
|
|
2164
|
+
"unicode-script",
|
|
2165
|
+
]
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "ryu"
|
|
2169
|
+
version = "1.0.18"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "safe_arch"
|
|
2175
|
+
version = "0.7.2"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"bytemuck",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "same-file"
|
|
2184
|
+
version = "1.0.6"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2187
|
+
dependencies = [
|
|
2188
|
+
"winapi-util",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "scc"
|
|
2193
|
+
version = "2.1.1"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "76ad2bbb0ae5100a07b7a6f2ed7ab5fd0045551a4c507989b7a620046ea3efdc"
|
|
2196
|
+
dependencies = [
|
|
2197
|
+
"sdd",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "schemars"
|
|
2202
|
+
version = "0.8.21"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"dyn-clone",
|
|
2207
|
+
"schemars_derive",
|
|
2208
|
+
"serde",
|
|
2209
|
+
"serde_json",
|
|
2210
|
+
]
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "schemars_derive"
|
|
2214
|
+
version = "0.8.21"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e"
|
|
2217
|
+
dependencies = [
|
|
2218
|
+
"proc-macro2",
|
|
2219
|
+
"quote",
|
|
2220
|
+
"serde_derive_internals",
|
|
2221
|
+
"syn",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "scopeguard"
|
|
2226
|
+
version = "1.2.0"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2229
|
+
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "sdd"
|
|
2232
|
+
version = "0.2.0"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "b84345e4c9bd703274a082fb80caaa99b7612be48dfaa1dd9266577ec412309d"
|
|
2235
|
+
|
|
2236
|
+
[[package]]
|
|
2237
|
+
name = "serde"
|
|
2238
|
+
version = "1.0.203"
|
|
2239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
+
checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
|
|
2241
|
+
dependencies = [
|
|
2242
|
+
"serde_derive",
|
|
2243
|
+
]
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "serde_derive"
|
|
2247
|
+
version = "1.0.203"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
|
|
2250
|
+
dependencies = [
|
|
2251
|
+
"proc-macro2",
|
|
2252
|
+
"quote",
|
|
2253
|
+
"syn",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "serde_derive_internals"
|
|
2258
|
+
version = "0.29.1"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"proc-macro2",
|
|
2263
|
+
"quote",
|
|
2264
|
+
"syn",
|
|
2265
|
+
]
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "serde_json"
|
|
2269
|
+
version = "1.0.120"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
|
|
2272
|
+
dependencies = [
|
|
2273
|
+
"itoa",
|
|
2274
|
+
"ryu",
|
|
2275
|
+
"serde",
|
|
2276
|
+
]
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "serde_spanned"
|
|
2280
|
+
version = "0.6.6"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"serde",
|
|
2285
|
+
]
|
|
2286
|
+
|
|
2287
|
+
[[package]]
|
|
2288
|
+
name = "serde_yaml"
|
|
2289
|
+
version = "0.9.34+deprecated"
|
|
2290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2291
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2292
|
+
dependencies = [
|
|
2293
|
+
"indexmap",
|
|
2294
|
+
"itoa",
|
|
2295
|
+
"ryu",
|
|
2296
|
+
"serde",
|
|
2297
|
+
"unsafe-libyaml",
|
|
2298
|
+
]
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "serial_test"
|
|
2302
|
+
version = "3.1.1"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "4b4b487fe2acf240a021cf57c6b2b4903b1e78ca0ecd862a71b71d2a51fed77d"
|
|
2305
|
+
dependencies = [
|
|
2306
|
+
"futures",
|
|
2307
|
+
"log",
|
|
2308
|
+
"once_cell",
|
|
2309
|
+
"parking_lot",
|
|
2310
|
+
"scc",
|
|
2311
|
+
"serial_test_derive",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "serial_test_derive"
|
|
2316
|
+
version = "3.1.1"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "82fe9db325bcef1fbcde82e078a5cc4efdf787e96b3b9cf45b50b529f2083d67"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"proc-macro2",
|
|
2321
|
+
"quote",
|
|
2322
|
+
"syn",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "simba"
|
|
2327
|
+
version = "0.8.1"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
|
|
2330
|
+
dependencies = [
|
|
2331
|
+
"approx",
|
|
2332
|
+
"num-complex",
|
|
2333
|
+
"num-traits",
|
|
2334
|
+
"paste",
|
|
2335
|
+
"wide",
|
|
2336
|
+
]
|
|
2337
|
+
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "simd-adler32"
|
|
2340
|
+
version = "0.3.7"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "simd_helpers"
|
|
2346
|
+
version = "0.1.0"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
2349
|
+
dependencies = [
|
|
2350
|
+
"quote",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "simplecss"
|
|
2355
|
+
version = "0.2.1"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "a11be7c62927d9427e9f40f3444d5499d868648e2edbc4e2116de69e7ec0e89d"
|
|
2358
|
+
dependencies = [
|
|
2359
|
+
"log",
|
|
2360
|
+
]
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "siphasher"
|
|
2364
|
+
version = "0.3.11"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "siphasher"
|
|
2370
|
+
version = "1.0.1"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "slab"
|
|
2376
|
+
version = "0.4.9"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"autocfg",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "slotmap"
|
|
2385
|
+
version = "1.0.7"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"version_check",
|
|
2390
|
+
]
|
|
2391
|
+
|
|
2392
|
+
[[package]]
|
|
2393
|
+
name = "smallvec"
|
|
2394
|
+
version = "1.13.2"
|
|
2395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2397
|
+
|
|
2398
|
+
[[package]]
|
|
2399
|
+
name = "spin"
|
|
2400
|
+
version = "0.9.8"
|
|
2401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2402
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2403
|
+
dependencies = [
|
|
2404
|
+
"lock_api",
|
|
2405
|
+
]
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "stable_deref_trait"
|
|
2409
|
+
version = "1.2.0"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "stacker"
|
|
2415
|
+
version = "0.1.15"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"cc",
|
|
2420
|
+
"cfg-if",
|
|
2421
|
+
"libc",
|
|
2422
|
+
"psm",
|
|
2423
|
+
"winapi",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "strict-num"
|
|
2428
|
+
version = "0.1.1"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
2431
|
+
dependencies = [
|
|
2432
|
+
"float-cmp",
|
|
2433
|
+
]
|
|
2434
|
+
|
|
2435
|
+
[[package]]
|
|
2436
|
+
name = "strum"
|
|
2437
|
+
version = "0.26.3"
|
|
2438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"strum_macros",
|
|
2442
|
+
]
|
|
2443
|
+
|
|
2444
|
+
[[package]]
|
|
2445
|
+
name = "strum_macros"
|
|
2446
|
+
version = "0.26.4"
|
|
2447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
2449
|
+
dependencies = [
|
|
2450
|
+
"heck 0.5.0",
|
|
2451
|
+
"proc-macro2",
|
|
2452
|
+
"quote",
|
|
2453
|
+
"rustversion",
|
|
2454
|
+
"syn",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "struqture"
|
|
2459
|
+
version = "1.7.1"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "628779c97f727781bb4b9c20d32c1410bf9c86e32090a0841336d7cf6dae7a49"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"itertools",
|
|
2464
|
+
"ndarray",
|
|
2465
|
+
"num-complex",
|
|
2466
|
+
"qoqo_calculator",
|
|
2467
|
+
"schemars",
|
|
2468
|
+
"serde",
|
|
2469
|
+
"test-case",
|
|
2470
|
+
"thiserror",
|
|
2471
|
+
"tinyvec",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "struqture-py"
|
|
2476
|
+
version = "1.7.1"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "fecd0d102b86be41793c8171abaadb5fbf66deae98e073157d08425dff4ea6c9"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"bincode",
|
|
2481
|
+
"num-complex",
|
|
2482
|
+
"numpy",
|
|
2483
|
+
"proc-macro2",
|
|
2484
|
+
"pyo3",
|
|
2485
|
+
"pyo3-build-config 0.20.3",
|
|
2486
|
+
"qoqo_calculator",
|
|
2487
|
+
"qoqo_calculator_pyo3",
|
|
2488
|
+
"quote",
|
|
2489
|
+
"schemars",
|
|
2490
|
+
"serde",
|
|
2491
|
+
"serde_json",
|
|
2492
|
+
"struqture",
|
|
2493
|
+
"struqture-py-macros",
|
|
2494
|
+
"syn",
|
|
2495
|
+
"thiserror",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "struqture-py-macros"
|
|
2500
|
+
version = "1.8.0"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "c3693d71aa16d95546f291d2a6bb9d98ed6c0db68f06da77e0316ac03cfa76ce"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"num-complex",
|
|
2505
|
+
"proc-macro2",
|
|
2506
|
+
"quote",
|
|
2507
|
+
"syn",
|
|
2508
|
+
]
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "subtle"
|
|
2512
|
+
version = "2.6.1"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "svgtypes"
|
|
2518
|
+
version = "0.13.0"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "6e44e288cd960318917cbd540340968b90becc8bc81f171345d706e7a89d9d70"
|
|
2521
|
+
dependencies = [
|
|
2522
|
+
"kurbo",
|
|
2523
|
+
"siphasher 0.3.11",
|
|
2524
|
+
]
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "syn"
|
|
2528
|
+
version = "2.0.68"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "901fa70d88b9d6c98022e23b4136f9f3e54e4662c3bc1bd1d84a42a9a0f0c1e9"
|
|
2531
|
+
dependencies = [
|
|
2532
|
+
"proc-macro2",
|
|
2533
|
+
"quote",
|
|
2534
|
+
"unicode-ident",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "synstructure"
|
|
2539
|
+
version = "0.13.1"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"proc-macro2",
|
|
2544
|
+
"quote",
|
|
2545
|
+
"syn",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "syntect"
|
|
2550
|
+
version = "5.2.0"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
|
2553
|
+
dependencies = [
|
|
2554
|
+
"bincode",
|
|
2555
|
+
"bitflags 1.3.2",
|
|
2556
|
+
"fancy-regex",
|
|
2557
|
+
"flate2",
|
|
2558
|
+
"fnv",
|
|
2559
|
+
"once_cell",
|
|
2560
|
+
"plist",
|
|
2561
|
+
"regex-syntax",
|
|
2562
|
+
"serde",
|
|
2563
|
+
"serde_derive",
|
|
2564
|
+
"serde_json",
|
|
2565
|
+
"thiserror",
|
|
2566
|
+
"walkdir",
|
|
2567
|
+
"yaml-rust",
|
|
2568
|
+
]
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "system-deps"
|
|
2572
|
+
version = "6.2.2"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
|
|
2575
|
+
dependencies = [
|
|
2576
|
+
"cfg-expr",
|
|
2577
|
+
"heck 0.5.0",
|
|
2578
|
+
"pkg-config",
|
|
2579
|
+
"toml",
|
|
2580
|
+
"version-compare",
|
|
2581
|
+
]
|
|
2582
|
+
|
|
2583
|
+
[[package]]
|
|
2584
|
+
name = "tar"
|
|
2585
|
+
version = "0.4.41"
|
|
2586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
+
checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909"
|
|
2588
|
+
dependencies = [
|
|
2589
|
+
"filetime",
|
|
2590
|
+
"libc",
|
|
2591
|
+
"xattr",
|
|
2592
|
+
]
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "target-lexicon"
|
|
2596
|
+
version = "0.12.14"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
2599
|
+
|
|
2600
|
+
[[package]]
|
|
2601
|
+
name = "test-case"
|
|
2602
|
+
version = "3.3.1"
|
|
2603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
+
checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
|
|
2605
|
+
dependencies = [
|
|
2606
|
+
"test-case-macros",
|
|
2607
|
+
]
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "test-case-core"
|
|
2611
|
+
version = "3.3.1"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
|
|
2614
|
+
dependencies = [
|
|
2615
|
+
"cfg-if",
|
|
2616
|
+
"proc-macro2",
|
|
2617
|
+
"quote",
|
|
2618
|
+
"syn",
|
|
2619
|
+
]
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "test-case-macros"
|
|
2623
|
+
version = "3.3.1"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"proc-macro2",
|
|
2628
|
+
"quote",
|
|
2629
|
+
"syn",
|
|
2630
|
+
"test-case-core",
|
|
2631
|
+
]
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "thiserror"
|
|
2635
|
+
version = "1.0.61"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
|
2638
|
+
dependencies = [
|
|
2639
|
+
"thiserror-impl",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "thiserror-impl"
|
|
2644
|
+
version = "1.0.61"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"proc-macro2",
|
|
2649
|
+
"quote",
|
|
2650
|
+
"syn",
|
|
2651
|
+
]
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "tiff"
|
|
2655
|
+
version = "0.9.1"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
|
2658
|
+
dependencies = [
|
|
2659
|
+
"flate2",
|
|
2660
|
+
"jpeg-decoder",
|
|
2661
|
+
"weezl",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "time"
|
|
2666
|
+
version = "0.3.36"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"deranged",
|
|
2671
|
+
"itoa",
|
|
2672
|
+
"num-conv",
|
|
2673
|
+
"powerfmt",
|
|
2674
|
+
"serde",
|
|
2675
|
+
"time-core",
|
|
2676
|
+
"time-macros",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "time-core"
|
|
2681
|
+
version = "0.1.2"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "time-macros"
|
|
2687
|
+
version = "0.2.18"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
2690
|
+
dependencies = [
|
|
2691
|
+
"num-conv",
|
|
2692
|
+
"time-core",
|
|
2693
|
+
]
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "tiny-skia"
|
|
2697
|
+
version = "0.11.4"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
|
|
2700
|
+
dependencies = [
|
|
2701
|
+
"arrayref",
|
|
2702
|
+
"arrayvec",
|
|
2703
|
+
"bytemuck",
|
|
2704
|
+
"cfg-if",
|
|
2705
|
+
"log",
|
|
2706
|
+
"png",
|
|
2707
|
+
"tiny-skia-path",
|
|
2708
|
+
]
|
|
2709
|
+
|
|
2710
|
+
[[package]]
|
|
2711
|
+
name = "tiny-skia-path"
|
|
2712
|
+
version = "0.11.4"
|
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
+
checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
|
|
2715
|
+
dependencies = [
|
|
2716
|
+
"arrayref",
|
|
2717
|
+
"bytemuck",
|
|
2718
|
+
"strict-num",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "tinystr"
|
|
2723
|
+
version = "0.7.6"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
2726
|
+
dependencies = [
|
|
2727
|
+
"displaydoc",
|
|
2728
|
+
"serde",
|
|
2729
|
+
"zerovec",
|
|
2730
|
+
]
|
|
2731
|
+
|
|
2732
|
+
[[package]]
|
|
2733
|
+
name = "tinyvec"
|
|
2734
|
+
version = "1.6.1"
|
|
2735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
+
checksum = "c55115c6fbe2d2bef26eb09ad74bde02d8255476fc0c7b515ef09fbb35742d82"
|
|
2737
|
+
dependencies = [
|
|
2738
|
+
"serde",
|
|
2739
|
+
"tinyvec_macros",
|
|
2740
|
+
]
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "tinyvec_macros"
|
|
2744
|
+
version = "0.1.1"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2747
|
+
|
|
2748
|
+
[[package]]
|
|
2749
|
+
name = "toml"
|
|
2750
|
+
version = "0.8.14"
|
|
2751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
+
checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335"
|
|
2753
|
+
dependencies = [
|
|
2754
|
+
"serde",
|
|
2755
|
+
"serde_spanned",
|
|
2756
|
+
"toml_datetime",
|
|
2757
|
+
"toml_edit",
|
|
2758
|
+
]
|
|
2759
|
+
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "toml_datetime"
|
|
2762
|
+
version = "0.6.6"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
|
|
2765
|
+
dependencies = [
|
|
2766
|
+
"serde",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2769
|
+
[[package]]
|
|
2770
|
+
name = "toml_edit"
|
|
2771
|
+
version = "0.22.14"
|
|
2772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
+
checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38"
|
|
2774
|
+
dependencies = [
|
|
2775
|
+
"indexmap",
|
|
2776
|
+
"serde",
|
|
2777
|
+
"serde_spanned",
|
|
2778
|
+
"toml_datetime",
|
|
2779
|
+
"winnow",
|
|
2780
|
+
]
|
|
2781
|
+
|
|
2782
|
+
[[package]]
|
|
2783
|
+
name = "ttf-parser"
|
|
2784
|
+
version = "0.20.0"
|
|
2785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
|
+
checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
|
|
2787
|
+
|
|
2788
|
+
[[package]]
|
|
2789
|
+
name = "ttf-parser"
|
|
2790
|
+
version = "0.21.1"
|
|
2791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2792
|
+
checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
|
|
2793
|
+
|
|
2794
|
+
[[package]]
|
|
2795
|
+
name = "two-face"
|
|
2796
|
+
version = "0.3.0"
|
|
2797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2798
|
+
checksum = "37bed2135b2459c7eefba72c906d374697eb15949c205f2f124e3636a46b5eeb"
|
|
2799
|
+
dependencies = [
|
|
2800
|
+
"once_cell",
|
|
2801
|
+
"serde",
|
|
2802
|
+
"syntect",
|
|
2803
|
+
]
|
|
2804
|
+
|
|
2805
|
+
[[package]]
|
|
2806
|
+
name = "typed-arena"
|
|
2807
|
+
version = "2.0.2"
|
|
2808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
2810
|
+
|
|
2811
|
+
[[package]]
|
|
2812
|
+
name = "typenum"
|
|
2813
|
+
version = "1.17.0"
|
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
2816
|
+
|
|
2817
|
+
[[package]]
|
|
2818
|
+
name = "typst"
|
|
2819
|
+
version = "0.11.1"
|
|
2820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
+
checksum = "12492297d20937494f0143ae50ef339e5fd3d927b4096af1c52fe73fb9c5fa9a"
|
|
2822
|
+
dependencies = [
|
|
2823
|
+
"az",
|
|
2824
|
+
"bitflags 2.6.0",
|
|
2825
|
+
"chinese-number",
|
|
2826
|
+
"ciborium",
|
|
2827
|
+
"comemo",
|
|
2828
|
+
"csv",
|
|
2829
|
+
"ecow",
|
|
2830
|
+
"fontdb",
|
|
2831
|
+
"hayagriva",
|
|
2832
|
+
"hypher",
|
|
2833
|
+
"icu_properties",
|
|
2834
|
+
"icu_provider",
|
|
2835
|
+
"icu_provider_adapters",
|
|
2836
|
+
"icu_provider_blob",
|
|
2837
|
+
"icu_segmenter",
|
|
2838
|
+
"if_chain",
|
|
2839
|
+
"image 0.24.9",
|
|
2840
|
+
"indexmap",
|
|
2841
|
+
"kamadak-exif",
|
|
2842
|
+
"kurbo",
|
|
2843
|
+
"lipsum",
|
|
2844
|
+
"log",
|
|
2845
|
+
"once_cell",
|
|
2846
|
+
"palette",
|
|
2847
|
+
"phf",
|
|
2848
|
+
"png",
|
|
2849
|
+
"portable-atomic",
|
|
2850
|
+
"qcms",
|
|
2851
|
+
"rayon",
|
|
2852
|
+
"regex",
|
|
2853
|
+
"roxmltree",
|
|
2854
|
+
"rustybuzz",
|
|
2855
|
+
"serde",
|
|
2856
|
+
"serde_json",
|
|
2857
|
+
"serde_yaml",
|
|
2858
|
+
"siphasher 1.0.1",
|
|
2859
|
+
"smallvec",
|
|
2860
|
+
"stacker",
|
|
2861
|
+
"syntect",
|
|
2862
|
+
"time",
|
|
2863
|
+
"toml",
|
|
2864
|
+
"ttf-parser 0.20.0",
|
|
2865
|
+
"two-face",
|
|
2866
|
+
"typed-arena",
|
|
2867
|
+
"typst-assets",
|
|
2868
|
+
"typst-macros",
|
|
2869
|
+
"typst-syntax",
|
|
2870
|
+
"typst-timing",
|
|
2871
|
+
"unicode-bidi",
|
|
2872
|
+
"unicode-math-class",
|
|
2873
|
+
"unicode-script",
|
|
2874
|
+
"unicode-segmentation",
|
|
2875
|
+
"usvg",
|
|
2876
|
+
"wasmi",
|
|
2877
|
+
]
|
|
2878
|
+
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "typst-assets"
|
|
2881
|
+
version = "0.11.1"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "2b3061f8d268e8eec7481c9ab24540455cb4912983c49aae38fa6e8bf8ef4d9c"
|
|
2884
|
+
|
|
2885
|
+
[[package]]
|
|
2886
|
+
name = "typst-macros"
|
|
2887
|
+
version = "0.11.1"
|
|
2888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2889
|
+
checksum = "e5a0fdfd46b4920b0f8e4215e5b8438c737e8bc3498a681ea59b0130228363fc"
|
|
2890
|
+
dependencies = [
|
|
2891
|
+
"heck 0.4.1",
|
|
2892
|
+
"proc-macro2",
|
|
2893
|
+
"quote",
|
|
2894
|
+
"syn",
|
|
2895
|
+
]
|
|
2896
|
+
|
|
2897
|
+
[[package]]
|
|
2898
|
+
name = "typst-render"
|
|
2899
|
+
version = "0.11.1"
|
|
2900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
+
checksum = "6f122fa9fde65683fde5ac444ecfbdc1a5ad4822dbaa537fe278345bb6b6ad7e"
|
|
2902
|
+
dependencies = [
|
|
2903
|
+
"bytemuck",
|
|
2904
|
+
"comemo",
|
|
2905
|
+
"flate2",
|
|
2906
|
+
"image 0.24.9",
|
|
2907
|
+
"pixglyph",
|
|
2908
|
+
"resvg",
|
|
2909
|
+
"roxmltree",
|
|
2910
|
+
"tiny-skia",
|
|
2911
|
+
"ttf-parser 0.20.0",
|
|
2912
|
+
"typst",
|
|
2913
|
+
"typst-macros",
|
|
2914
|
+
"typst-timing",
|
|
2915
|
+
"usvg",
|
|
2916
|
+
]
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "typst-syntax"
|
|
2920
|
+
version = "0.11.1"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "e3db69f2f41613b1ff6edbec44fd7dc524137f099ee36c46f560cedeaadb40c4"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"comemo",
|
|
2925
|
+
"ecow",
|
|
2926
|
+
"once_cell",
|
|
2927
|
+
"serde",
|
|
2928
|
+
"unicode-ident",
|
|
2929
|
+
"unicode-math-class",
|
|
2930
|
+
"unicode-script",
|
|
2931
|
+
"unicode-segmentation",
|
|
2932
|
+
"unscanny",
|
|
2933
|
+
]
|
|
2934
|
+
|
|
2935
|
+
[[package]]
|
|
2936
|
+
name = "typst-timing"
|
|
2937
|
+
version = "0.11.1"
|
|
2938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
+
checksum = "5b58e17192bcacb2a39aace6d3eece70f008b2949ce384ac501a58357fafee67"
|
|
2940
|
+
dependencies = [
|
|
2941
|
+
"parking_lot",
|
|
2942
|
+
"serde",
|
|
2943
|
+
"serde_json",
|
|
2944
|
+
"typst-syntax",
|
|
2945
|
+
]
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "unic-langid"
|
|
2949
|
+
version = "0.9.5"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "23dd9d1e72a73b25e07123a80776aae3e7b0ec461ef94f9151eed6ec88005a44"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"unic-langid-impl",
|
|
2954
|
+
]
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "unic-langid-impl"
|
|
2958
|
+
version = "0.9.5"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "0a5422c1f65949306c99240b81de9f3f15929f5a8bfe05bb44b034cc8bf593e5"
|
|
2961
|
+
dependencies = [
|
|
2962
|
+
"serde",
|
|
2963
|
+
"tinystr",
|
|
2964
|
+
]
|
|
2965
|
+
|
|
2966
|
+
[[package]]
|
|
2967
|
+
name = "unicode-bidi"
|
|
2968
|
+
version = "0.3.15"
|
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "unicode-bidi-mirroring"
|
|
2974
|
+
version = "0.1.0"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694"
|
|
2977
|
+
|
|
2978
|
+
[[package]]
|
|
2979
|
+
name = "unicode-ccc"
|
|
2980
|
+
version = "0.1.2"
|
|
2981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
+
checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1"
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "unicode-ident"
|
|
2986
|
+
version = "1.0.12"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "unicode-math-class"
|
|
2992
|
+
version = "0.1.0"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "7d246cf599d5fae3c8d56e04b20eb519adb89a8af8d0b0fbcded369aa3647d65"
|
|
2995
|
+
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "unicode-normalization"
|
|
2998
|
+
version = "0.1.23"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"tinyvec",
|
|
3003
|
+
]
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "unicode-properties"
|
|
3007
|
+
version = "0.1.1"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291"
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "unicode-script"
|
|
3013
|
+
version = "0.5.6"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd"
|
|
3016
|
+
|
|
3017
|
+
[[package]]
|
|
3018
|
+
name = "unicode-segmentation"
|
|
3019
|
+
version = "1.11.0"
|
|
3020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3021
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3022
|
+
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "unicode-vo"
|
|
3025
|
+
version = "0.1.0"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
|
|
3028
|
+
|
|
3029
|
+
[[package]]
|
|
3030
|
+
name = "unindent"
|
|
3031
|
+
version = "0.2.3"
|
|
3032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3034
|
+
|
|
3035
|
+
[[package]]
|
|
3036
|
+
name = "unsafe-libyaml"
|
|
3037
|
+
version = "0.2.11"
|
|
3038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3039
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3040
|
+
|
|
3041
|
+
[[package]]
|
|
3042
|
+
name = "unscanny"
|
|
3043
|
+
version = "0.1.0"
|
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3045
|
+
checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "untrusted"
|
|
3049
|
+
version = "0.9.0"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3052
|
+
|
|
3053
|
+
[[package]]
|
|
3054
|
+
name = "ureq"
|
|
3055
|
+
version = "2.9.7"
|
|
3056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
+
checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd"
|
|
3058
|
+
dependencies = [
|
|
3059
|
+
"base64 0.22.1",
|
|
3060
|
+
"flate2",
|
|
3061
|
+
"log",
|
|
3062
|
+
"once_cell",
|
|
3063
|
+
"rustls",
|
|
3064
|
+
"rustls-pki-types",
|
|
3065
|
+
"rustls-webpki",
|
|
3066
|
+
"url",
|
|
3067
|
+
"webpki-roots",
|
|
3068
|
+
]
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "url"
|
|
3072
|
+
version = "2.5.2"
|
|
3073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
3075
|
+
dependencies = [
|
|
3076
|
+
"form_urlencoded",
|
|
3077
|
+
"idna",
|
|
3078
|
+
"percent-encoding",
|
|
3079
|
+
"serde",
|
|
3080
|
+
]
|
|
3081
|
+
|
|
3082
|
+
[[package]]
|
|
3083
|
+
name = "usvg"
|
|
3084
|
+
version = "0.38.0"
|
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
+
checksum = "377f62b4a3c173de8654c1aa80ab1dac1154e6f13a779a9943e53780120d1625"
|
|
3087
|
+
dependencies = [
|
|
3088
|
+
"base64 0.21.7",
|
|
3089
|
+
"log",
|
|
3090
|
+
"pico-args",
|
|
3091
|
+
"usvg-parser",
|
|
3092
|
+
"usvg-text-layout",
|
|
3093
|
+
"usvg-tree",
|
|
3094
|
+
"xmlwriter",
|
|
3095
|
+
]
|
|
3096
|
+
|
|
3097
|
+
[[package]]
|
|
3098
|
+
name = "usvg-parser"
|
|
3099
|
+
version = "0.38.0"
|
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
+
checksum = "351a05e6f2023d6b4e946f734240a3927aefdcf930d7d42587a2c8a8869814b0"
|
|
3102
|
+
dependencies = [
|
|
3103
|
+
"data-url",
|
|
3104
|
+
"flate2",
|
|
3105
|
+
"imagesize",
|
|
3106
|
+
"kurbo",
|
|
3107
|
+
"log",
|
|
3108
|
+
"roxmltree",
|
|
3109
|
+
"simplecss",
|
|
3110
|
+
"siphasher 0.3.11",
|
|
3111
|
+
"svgtypes",
|
|
3112
|
+
"usvg-tree",
|
|
3113
|
+
]
|
|
3114
|
+
|
|
3115
|
+
[[package]]
|
|
3116
|
+
name = "usvg-text-layout"
|
|
3117
|
+
version = "0.38.0"
|
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
+
checksum = "8c41888b9d5cf431fe852eaf9d047bbde83251b98f1749c2f08b1071e6db46e2"
|
|
3120
|
+
dependencies = [
|
|
3121
|
+
"fontdb",
|
|
3122
|
+
"kurbo",
|
|
3123
|
+
"log",
|
|
3124
|
+
"rustybuzz",
|
|
3125
|
+
"unicode-bidi",
|
|
3126
|
+
"unicode-script",
|
|
3127
|
+
"unicode-vo",
|
|
3128
|
+
"usvg-tree",
|
|
3129
|
+
]
|
|
3130
|
+
|
|
3131
|
+
[[package]]
|
|
3132
|
+
name = "usvg-tree"
|
|
3133
|
+
version = "0.38.0"
|
|
3134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
+
checksum = "18863e0404ed153d6e56362c5b1146db9f4f262a3244e3cf2dbe7d8a85909f05"
|
|
3136
|
+
dependencies = [
|
|
3137
|
+
"strict-num",
|
|
3138
|
+
"svgtypes",
|
|
3139
|
+
"tiny-skia-path",
|
|
3140
|
+
]
|
|
3141
|
+
|
|
3142
|
+
[[package]]
|
|
3143
|
+
name = "utf8_iter"
|
|
3144
|
+
version = "1.0.4"
|
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3147
|
+
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "v_frame"
|
|
3150
|
+
version = "0.3.8"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b"
|
|
3153
|
+
dependencies = [
|
|
3154
|
+
"aligned-vec",
|
|
3155
|
+
"num-traits",
|
|
3156
|
+
"wasm-bindgen",
|
|
3157
|
+
]
|
|
3158
|
+
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "version-compare"
|
|
3161
|
+
version = "0.2.0"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
|
|
3164
|
+
|
|
3165
|
+
[[package]]
|
|
3166
|
+
name = "version_check"
|
|
3167
|
+
version = "0.9.4"
|
|
3168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
3170
|
+
|
|
3171
|
+
[[package]]
|
|
3172
|
+
name = "walkdir"
|
|
3173
|
+
version = "2.5.0"
|
|
3174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3176
|
+
dependencies = [
|
|
3177
|
+
"same-file",
|
|
3178
|
+
"winapi-util",
|
|
3179
|
+
]
|
|
3180
|
+
|
|
3181
|
+
[[package]]
|
|
3182
|
+
name = "wasi"
|
|
3183
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3185
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3186
|
+
|
|
3187
|
+
[[package]]
|
|
3188
|
+
name = "wasm-bindgen"
|
|
3189
|
+
version = "0.2.92"
|
|
3190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3191
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
3192
|
+
dependencies = [
|
|
3193
|
+
"cfg-if",
|
|
3194
|
+
"wasm-bindgen-macro",
|
|
3195
|
+
]
|
|
3196
|
+
|
|
3197
|
+
[[package]]
|
|
3198
|
+
name = "wasm-bindgen-backend"
|
|
3199
|
+
version = "0.2.92"
|
|
3200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3201
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
3202
|
+
dependencies = [
|
|
3203
|
+
"bumpalo",
|
|
3204
|
+
"log",
|
|
3205
|
+
"once_cell",
|
|
3206
|
+
"proc-macro2",
|
|
3207
|
+
"quote",
|
|
3208
|
+
"syn",
|
|
3209
|
+
"wasm-bindgen-shared",
|
|
3210
|
+
]
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "wasm-bindgen-macro"
|
|
3214
|
+
version = "0.2.92"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
3217
|
+
dependencies = [
|
|
3218
|
+
"quote",
|
|
3219
|
+
"wasm-bindgen-macro-support",
|
|
3220
|
+
]
|
|
3221
|
+
|
|
3222
|
+
[[package]]
|
|
3223
|
+
name = "wasm-bindgen-macro-support"
|
|
3224
|
+
version = "0.2.92"
|
|
3225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
3227
|
+
dependencies = [
|
|
3228
|
+
"proc-macro2",
|
|
3229
|
+
"quote",
|
|
3230
|
+
"syn",
|
|
3231
|
+
"wasm-bindgen-backend",
|
|
3232
|
+
"wasm-bindgen-shared",
|
|
3233
|
+
]
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "wasm-bindgen-shared"
|
|
3237
|
+
version = "0.2.92"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "wasmi"
|
|
3243
|
+
version = "0.31.2"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7"
|
|
3246
|
+
dependencies = [
|
|
3247
|
+
"smallvec",
|
|
3248
|
+
"spin",
|
|
3249
|
+
"wasmi_arena",
|
|
3250
|
+
"wasmi_core",
|
|
3251
|
+
"wasmparser-nostd",
|
|
3252
|
+
]
|
|
3253
|
+
|
|
3254
|
+
[[package]]
|
|
3255
|
+
name = "wasmi_arena"
|
|
3256
|
+
version = "0.4.1"
|
|
3257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
|
+
checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073"
|
|
3259
|
+
|
|
3260
|
+
[[package]]
|
|
3261
|
+
name = "wasmi_core"
|
|
3262
|
+
version = "0.13.0"
|
|
3263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3264
|
+
checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a"
|
|
3265
|
+
dependencies = [
|
|
3266
|
+
"downcast-rs",
|
|
3267
|
+
"libm",
|
|
3268
|
+
"num-traits",
|
|
3269
|
+
"paste",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "wasmparser-nostd"
|
|
3274
|
+
version = "0.100.2"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa"
|
|
3277
|
+
dependencies = [
|
|
3278
|
+
"indexmap-nostd",
|
|
3279
|
+
]
|
|
3280
|
+
|
|
3281
|
+
[[package]]
|
|
3282
|
+
name = "webpki-roots"
|
|
3283
|
+
version = "0.26.3"
|
|
3284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
+
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
|
|
3286
|
+
dependencies = [
|
|
3287
|
+
"rustls-pki-types",
|
|
3288
|
+
]
|
|
3289
|
+
|
|
3290
|
+
[[package]]
|
|
3291
|
+
name = "weezl"
|
|
3292
|
+
version = "0.1.8"
|
|
3293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
+
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
|
|
3295
|
+
|
|
3296
|
+
[[package]]
|
|
3297
|
+
name = "wide"
|
|
3298
|
+
version = "0.7.25"
|
|
3299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
+
checksum = "2caba658a80831539b30698ae9862a72db6697dfdd7151e46920f5f2755c3ce2"
|
|
3301
|
+
dependencies = [
|
|
3302
|
+
"bytemuck",
|
|
3303
|
+
"safe_arch",
|
|
3304
|
+
]
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "winapi"
|
|
3308
|
+
version = "0.3.9"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3311
|
+
dependencies = [
|
|
3312
|
+
"winapi-i686-pc-windows-gnu",
|
|
3313
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3314
|
+
]
|
|
3315
|
+
|
|
3316
|
+
[[package]]
|
|
3317
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3318
|
+
version = "0.4.0"
|
|
3319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3321
|
+
|
|
3322
|
+
[[package]]
|
|
3323
|
+
name = "winapi-util"
|
|
3324
|
+
version = "0.1.8"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
3327
|
+
dependencies = [
|
|
3328
|
+
"windows-sys",
|
|
3329
|
+
]
|
|
3330
|
+
|
|
3331
|
+
[[package]]
|
|
3332
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3333
|
+
version = "0.4.0"
|
|
3334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3336
|
+
|
|
3337
|
+
[[package]]
|
|
3338
|
+
name = "windows-sys"
|
|
3339
|
+
version = "0.52.0"
|
|
3340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3341
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3342
|
+
dependencies = [
|
|
3343
|
+
"windows-targets",
|
|
3344
|
+
]
|
|
3345
|
+
|
|
3346
|
+
[[package]]
|
|
3347
|
+
name = "windows-targets"
|
|
3348
|
+
version = "0.52.6"
|
|
3349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3351
|
+
dependencies = [
|
|
3352
|
+
"windows_aarch64_gnullvm",
|
|
3353
|
+
"windows_aarch64_msvc",
|
|
3354
|
+
"windows_i686_gnu",
|
|
3355
|
+
"windows_i686_gnullvm",
|
|
3356
|
+
"windows_i686_msvc",
|
|
3357
|
+
"windows_x86_64_gnu",
|
|
3358
|
+
"windows_x86_64_gnullvm",
|
|
3359
|
+
"windows_x86_64_msvc",
|
|
3360
|
+
]
|
|
3361
|
+
|
|
3362
|
+
[[package]]
|
|
3363
|
+
name = "windows_aarch64_gnullvm"
|
|
3364
|
+
version = "0.52.6"
|
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3367
|
+
|
|
3368
|
+
[[package]]
|
|
3369
|
+
name = "windows_aarch64_msvc"
|
|
3370
|
+
version = "0.52.6"
|
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "windows_i686_gnu"
|
|
3376
|
+
version = "0.52.6"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "windows_i686_gnullvm"
|
|
3382
|
+
version = "0.52.6"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "windows_i686_msvc"
|
|
3388
|
+
version = "0.52.6"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3391
|
+
|
|
3392
|
+
[[package]]
|
|
3393
|
+
name = "windows_x86_64_gnu"
|
|
3394
|
+
version = "0.52.6"
|
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3397
|
+
|
|
3398
|
+
[[package]]
|
|
3399
|
+
name = "windows_x86_64_gnullvm"
|
|
3400
|
+
version = "0.52.6"
|
|
3401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3402
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3403
|
+
|
|
3404
|
+
[[package]]
|
|
3405
|
+
name = "windows_x86_64_msvc"
|
|
3406
|
+
version = "0.52.6"
|
|
3407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3408
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3409
|
+
|
|
3410
|
+
[[package]]
|
|
3411
|
+
name = "winnow"
|
|
3412
|
+
version = "0.6.13"
|
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3414
|
+
checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1"
|
|
3415
|
+
dependencies = [
|
|
3416
|
+
"memchr",
|
|
3417
|
+
]
|
|
3418
|
+
|
|
3419
|
+
[[package]]
|
|
3420
|
+
name = "writeable"
|
|
3421
|
+
version = "0.5.5"
|
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
3424
|
+
|
|
3425
|
+
[[package]]
|
|
3426
|
+
name = "xattr"
|
|
3427
|
+
version = "1.3.1"
|
|
3428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
3430
|
+
dependencies = [
|
|
3431
|
+
"libc",
|
|
3432
|
+
"linux-raw-sys",
|
|
3433
|
+
"rustix",
|
|
3434
|
+
]
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "xmlwriter"
|
|
3438
|
+
version = "0.1.0"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "yaml-rust"
|
|
3444
|
+
version = "0.4.5"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
3447
|
+
dependencies = [
|
|
3448
|
+
"linked-hash-map",
|
|
3449
|
+
]
|
|
3450
|
+
|
|
3451
|
+
[[package]]
|
|
3452
|
+
name = "yoke"
|
|
3453
|
+
version = "0.7.4"
|
|
3454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3455
|
+
checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
|
|
3456
|
+
dependencies = [
|
|
3457
|
+
"serde",
|
|
3458
|
+
"stable_deref_trait",
|
|
3459
|
+
"yoke-derive",
|
|
3460
|
+
"zerofrom",
|
|
3461
|
+
]
|
|
3462
|
+
|
|
3463
|
+
[[package]]
|
|
3464
|
+
name = "yoke-derive"
|
|
3465
|
+
version = "0.7.4"
|
|
3466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3467
|
+
checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
|
|
3468
|
+
dependencies = [
|
|
3469
|
+
"proc-macro2",
|
|
3470
|
+
"quote",
|
|
3471
|
+
"syn",
|
|
3472
|
+
"synstructure",
|
|
3473
|
+
]
|
|
3474
|
+
|
|
3475
|
+
[[package]]
|
|
3476
|
+
name = "zerofrom"
|
|
3477
|
+
version = "0.1.4"
|
|
3478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3479
|
+
checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
|
|
3480
|
+
dependencies = [
|
|
3481
|
+
"zerofrom-derive",
|
|
3482
|
+
]
|
|
3483
|
+
|
|
3484
|
+
[[package]]
|
|
3485
|
+
name = "zerofrom-derive"
|
|
3486
|
+
version = "0.1.4"
|
|
3487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
+
checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
|
|
3489
|
+
dependencies = [
|
|
3490
|
+
"proc-macro2",
|
|
3491
|
+
"quote",
|
|
3492
|
+
"syn",
|
|
3493
|
+
"synstructure",
|
|
3494
|
+
]
|
|
3495
|
+
|
|
3496
|
+
[[package]]
|
|
3497
|
+
name = "zeroize"
|
|
3498
|
+
version = "1.8.1"
|
|
3499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3501
|
+
|
|
3502
|
+
[[package]]
|
|
3503
|
+
name = "zerotrie"
|
|
3504
|
+
version = "0.1.3"
|
|
3505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3506
|
+
checksum = "fb594dd55d87335c5f60177cee24f19457a5ec10a065e0a3014722ad252d0a1f"
|
|
3507
|
+
dependencies = [
|
|
3508
|
+
"displaydoc",
|
|
3509
|
+
"litemap",
|
|
3510
|
+
"serde",
|
|
3511
|
+
"zerovec",
|
|
3512
|
+
]
|
|
3513
|
+
|
|
3514
|
+
[[package]]
|
|
3515
|
+
name = "zerovec"
|
|
3516
|
+
version = "0.10.4"
|
|
3517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3518
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
3519
|
+
dependencies = [
|
|
3520
|
+
"serde",
|
|
3521
|
+
"yoke",
|
|
3522
|
+
"zerofrom",
|
|
3523
|
+
"zerovec-derive",
|
|
3524
|
+
]
|
|
3525
|
+
|
|
3526
|
+
[[package]]
|
|
3527
|
+
name = "zerovec-derive"
|
|
3528
|
+
version = "0.10.3"
|
|
3529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3530
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
3531
|
+
dependencies = [
|
|
3532
|
+
"proc-macro2",
|
|
3533
|
+
"quote",
|
|
3534
|
+
"syn",
|
|
3535
|
+
]
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "zune-core"
|
|
3539
|
+
version = "0.4.12"
|
|
3540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
3542
|
+
|
|
3543
|
+
[[package]]
|
|
3544
|
+
name = "zune-inflate"
|
|
3545
|
+
version = "0.2.54"
|
|
3546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
3548
|
+
dependencies = [
|
|
3549
|
+
"simd-adler32",
|
|
3550
|
+
]
|
|
3551
|
+
|
|
3552
|
+
[[package]]
|
|
3553
|
+
name = "zune-jpeg"
|
|
3554
|
+
version = "0.4.11"
|
|
3555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
+
checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448"
|
|
3557
|
+
dependencies = [
|
|
3558
|
+
"zune-core",
|
|
3559
|
+
]
|