botrail 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.
- botrail-0.1.0/Cargo.lock +1963 -0
- botrail-0.1.0/Cargo.toml +31 -0
- botrail-0.1.0/LICENSE +21 -0
- botrail-0.1.0/PKG-INFO +183 -0
- botrail-0.1.0/README.md +164 -0
- botrail-0.1.0/crates/botrail-collide/Cargo.toml +24 -0
- botrail-0.1.0/crates/botrail-collide/src/acm.rs +171 -0
- botrail-0.1.0/crates/botrail-collide/src/convert.rs +47 -0
- botrail-0.1.0/crates/botrail-collide/src/lib.rs +782 -0
- botrail-0.1.0/crates/botrail-collide/src/mesh.rs +235 -0
- botrail-0.1.0/crates/botrail-export/Cargo.toml +11 -0
- botrail-0.1.0/crates/botrail-export/src/lib.rs +458 -0
- botrail-0.1.0/crates/botrail-export/src/urscript.rs +187 -0
- botrail-0.1.0/crates/botrail-kin/Cargo.toml +13 -0
- botrail-0.1.0/crates/botrail-kin/src/ik.rs +400 -0
- botrail-0.1.0/crates/botrail-kin/src/lib.rs +141 -0
- botrail-0.1.0/crates/botrail-mesh/Cargo.toml +11 -0
- botrail-0.1.0/crates/botrail-mesh/src/lib.rs +333 -0
- botrail-0.1.0/crates/botrail-model/Cargo.toml +13 -0
- botrail-0.1.0/crates/botrail-model/src/lib.rs +657 -0
- botrail-0.1.0/crates/botrail-model/src/mesh_path.rs +110 -0
- botrail-0.1.0/crates/botrail-plan/Cargo.toml +11 -0
- botrail-0.1.0/crates/botrail-plan/src/lib.rs +456 -0
- botrail-0.1.0/crates/botrail-py/Cargo.toml +34 -0
- botrail-0.1.0/crates/botrail-py/src/hub.rs +784 -0
- botrail-0.1.0/crates/botrail-py/src/lib.rs +2239 -0
- botrail-0.1.0/crates/botrail-py/src/server.rs +169 -0
- botrail-0.1.0/crates/botrail-scene/Cargo.toml +29 -0
- botrail-0.1.0/crates/botrail-scene/src/lib.rs +1460 -0
- botrail-0.1.0/crates/botrail-scene/src/motion.rs +757 -0
- botrail-0.1.0/crates/botrail-scene/src/project.rs +1136 -0
- botrail-0.1.0/crates/botrail-scene/src/rollout.rs +3032 -0
- botrail-0.1.0/crates/botrail-scene/src/seq.rs +710 -0
- botrail-0.1.0/crates/botrail-scene/src/verify.rs +426 -0
- botrail-0.1.0/crates/botrail-scene/src/wire.rs +1786 -0
- botrail-0.1.0/crates/botrail-session/Cargo.toml +17 -0
- botrail-0.1.0/crates/botrail-session/src/lib.rs +1481 -0
- botrail-0.1.0/crates/botrail-traj/Cargo.toml +11 -0
- botrail-0.1.0/crates/botrail-traj/src/lib.rs +386 -0
- botrail-0.1.0/crates/botrail-usd/Cargo.toml +21 -0
- botrail-0.1.0/crates/botrail-usd/src/articulation.rs +1031 -0
- botrail-0.1.0/crates/botrail-usd/src/export.rs +1970 -0
- botrail-0.1.0/crates/botrail-usd/src/lib.rs +1019 -0
- botrail-0.1.0/crates/botrail-usd/src/recording.rs +908 -0
- botrail-0.1.0/pyproject.toml +36 -0
- botrail-0.1.0/python/botrail/__init__.py +25 -0
- botrail-0.1.0/python/botrail/_core.pyi +406 -0
- botrail-0.1.0/python/botrail/_launcher.py +60 -0
- botrail-0.1.0/python/botrail/py.typed +0 -0
- botrail-0.1.0/python/botrail/seq.py +209 -0
botrail-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1963 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anyhow"
|
|
28
|
+
version = "1.0.103"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
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 = "arrayvec"
|
|
43
|
+
version = "0.7.8"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "atomic-waker"
|
|
49
|
+
version = "1.1.2"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "autocfg"
|
|
55
|
+
version = "1.5.1"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "axum"
|
|
61
|
+
version = "0.8.9"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"axum-core",
|
|
66
|
+
"base64",
|
|
67
|
+
"bytes",
|
|
68
|
+
"form_urlencoded",
|
|
69
|
+
"futures-util",
|
|
70
|
+
"http",
|
|
71
|
+
"http-body",
|
|
72
|
+
"http-body-util",
|
|
73
|
+
"hyper",
|
|
74
|
+
"hyper-util",
|
|
75
|
+
"itoa",
|
|
76
|
+
"matchit",
|
|
77
|
+
"memchr",
|
|
78
|
+
"mime",
|
|
79
|
+
"percent-encoding",
|
|
80
|
+
"pin-project-lite",
|
|
81
|
+
"serde_core",
|
|
82
|
+
"serde_json",
|
|
83
|
+
"serde_path_to_error",
|
|
84
|
+
"serde_urlencoded",
|
|
85
|
+
"sha1",
|
|
86
|
+
"sync_wrapper",
|
|
87
|
+
"tokio",
|
|
88
|
+
"tokio-tungstenite",
|
|
89
|
+
"tower",
|
|
90
|
+
"tower-layer",
|
|
91
|
+
"tower-service",
|
|
92
|
+
"tracing",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "axum-core"
|
|
97
|
+
version = "0.5.6"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"bytes",
|
|
102
|
+
"futures-core",
|
|
103
|
+
"http",
|
|
104
|
+
"http-body",
|
|
105
|
+
"http-body-util",
|
|
106
|
+
"mime",
|
|
107
|
+
"pin-project-lite",
|
|
108
|
+
"sync_wrapper",
|
|
109
|
+
"tower-layer",
|
|
110
|
+
"tower-service",
|
|
111
|
+
"tracing",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "base64"
|
|
116
|
+
version = "0.22.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "bitflags"
|
|
122
|
+
version = "2.13.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "block-buffer"
|
|
128
|
+
version = "0.10.4"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"generic-array",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "botrail-bench"
|
|
137
|
+
version = "0.1.0"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"parry3d-f64",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "botrail-collide"
|
|
144
|
+
version = "0.1.0"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"botrail-kin",
|
|
147
|
+
"botrail-mesh",
|
|
148
|
+
"botrail-model",
|
|
149
|
+
"nalgebra",
|
|
150
|
+
"parry3d-f64",
|
|
151
|
+
"rayon",
|
|
152
|
+
"serde",
|
|
153
|
+
"serde_json",
|
|
154
|
+
"thiserror",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "botrail-export"
|
|
159
|
+
version = "0.1.0"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"thiserror",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "botrail-kin"
|
|
166
|
+
version = "0.1.0"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"botrail-model",
|
|
169
|
+
"nalgebra",
|
|
170
|
+
"thiserror",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "botrail-mesh"
|
|
175
|
+
version = "0.1.0"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"thiserror",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "botrail-model"
|
|
182
|
+
version = "0.1.0"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"nalgebra",
|
|
185
|
+
"thiserror",
|
|
186
|
+
"xurdf",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "botrail-plan"
|
|
191
|
+
version = "0.1.0"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"thiserror",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "botrail-py"
|
|
198
|
+
version = "0.1.0"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"axum",
|
|
201
|
+
"botrail-collide",
|
|
202
|
+
"botrail-export",
|
|
203
|
+
"botrail-kin",
|
|
204
|
+
"botrail-model",
|
|
205
|
+
"botrail-plan",
|
|
206
|
+
"botrail-scene",
|
|
207
|
+
"botrail-session",
|
|
208
|
+
"botrail-traj",
|
|
209
|
+
"botrail-usd",
|
|
210
|
+
"nalgebra",
|
|
211
|
+
"pyo3",
|
|
212
|
+
"serde_json",
|
|
213
|
+
"tokio",
|
|
214
|
+
"tower-http",
|
|
215
|
+
"zip",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "botrail-scene"
|
|
220
|
+
version = "0.1.0"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"botrail-collide",
|
|
223
|
+
"botrail-kin",
|
|
224
|
+
"botrail-mesh",
|
|
225
|
+
"botrail-model",
|
|
226
|
+
"botrail-plan",
|
|
227
|
+
"botrail-traj",
|
|
228
|
+
"nalgebra",
|
|
229
|
+
"serde",
|
|
230
|
+
"serde_json",
|
|
231
|
+
"thiserror",
|
|
232
|
+
"ts-rs",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "botrail-session"
|
|
237
|
+
version = "0.1.0"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"botrail-kin",
|
|
240
|
+
"botrail-model",
|
|
241
|
+
"botrail-plan",
|
|
242
|
+
"botrail-scene",
|
|
243
|
+
"botrail-traj",
|
|
244
|
+
"nalgebra",
|
|
245
|
+
"serde_json",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "botrail-traj"
|
|
250
|
+
version = "0.1.0"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"thiserror",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "botrail-usd"
|
|
257
|
+
version = "0.1.0"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"anyhow",
|
|
260
|
+
"botrail-kin",
|
|
261
|
+
"botrail-mesh",
|
|
262
|
+
"botrail-model",
|
|
263
|
+
"nalgebra",
|
|
264
|
+
"openusd",
|
|
265
|
+
"thiserror",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "botrail-wasm"
|
|
270
|
+
version = "0.1.0"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"botrail-collide",
|
|
273
|
+
"botrail-model",
|
|
274
|
+
"botrail-scene",
|
|
275
|
+
"botrail-session",
|
|
276
|
+
"botrail-usd",
|
|
277
|
+
"js-sys",
|
|
278
|
+
"nalgebra",
|
|
279
|
+
"serde",
|
|
280
|
+
"serde_json",
|
|
281
|
+
"wasm-bindgen",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "bumpalo"
|
|
286
|
+
version = "3.20.3"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "bytemuck"
|
|
292
|
+
version = "1.25.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"bytemuck_derive",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "bytemuck_derive"
|
|
301
|
+
version = "1.11.0"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"proc-macro2",
|
|
306
|
+
"quote",
|
|
307
|
+
"syn",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "byteorder"
|
|
312
|
+
version = "1.5.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "bytes"
|
|
318
|
+
version = "1.12.0"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "cfg-if"
|
|
324
|
+
version = "1.0.4"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "cpufeatures"
|
|
330
|
+
version = "0.2.17"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"libc",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "crc32fast"
|
|
339
|
+
version = "1.5.0"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"cfg-if",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "crossbeam-deque"
|
|
348
|
+
version = "0.8.7"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"crossbeam-epoch",
|
|
353
|
+
"crossbeam-utils",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "crossbeam-epoch"
|
|
358
|
+
version = "0.9.20"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"crossbeam-utils",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "crossbeam-utils"
|
|
367
|
+
version = "0.8.22"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "crunchy"
|
|
373
|
+
version = "0.2.4"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "crypto-common"
|
|
379
|
+
version = "0.1.7"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"generic-array",
|
|
384
|
+
"typenum",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "data-encoding"
|
|
389
|
+
version = "2.11.0"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "derive_more"
|
|
395
|
+
version = "2.1.1"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"derive_more-impl",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "derive_more-impl"
|
|
404
|
+
version = "2.1.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"proc-macro2",
|
|
409
|
+
"quote",
|
|
410
|
+
"rustc_version",
|
|
411
|
+
"syn",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "digest"
|
|
416
|
+
version = "0.10.7"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"block-buffer",
|
|
421
|
+
"crypto-common",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "downcast-rs"
|
|
426
|
+
version = "2.0.2"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "either"
|
|
432
|
+
version = "1.16.0"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "ena"
|
|
438
|
+
version = "0.14.4"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"log",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "equivalent"
|
|
447
|
+
version = "1.0.2"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "flate2"
|
|
453
|
+
version = "1.1.9"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"miniz_oxide",
|
|
458
|
+
"zlib-rs",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "fnv"
|
|
463
|
+
version = "1.0.7"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "foldhash"
|
|
469
|
+
version = "0.2.0"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "form_urlencoded"
|
|
475
|
+
version = "1.2.2"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"percent-encoding",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "futures-channel"
|
|
484
|
+
version = "0.3.32"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"futures-core",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "futures-core"
|
|
493
|
+
version = "0.3.32"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "futures-sink"
|
|
499
|
+
version = "0.3.32"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "futures-task"
|
|
505
|
+
version = "0.3.32"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "futures-util"
|
|
511
|
+
version = "0.3.32"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"futures-core",
|
|
516
|
+
"futures-sink",
|
|
517
|
+
"futures-task",
|
|
518
|
+
"pin-project-lite",
|
|
519
|
+
"slab",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "generic-array"
|
|
524
|
+
version = "0.14.7"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"typenum",
|
|
529
|
+
"version_check",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "getrandom"
|
|
534
|
+
version = "0.3.4"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"cfg-if",
|
|
539
|
+
"libc",
|
|
540
|
+
"r-efi",
|
|
541
|
+
"wasip2",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "glam"
|
|
546
|
+
version = "0.33.2"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "7f22fb22f065b308be0d8724e3706c7fa3fc2a6c7d6899df4cad7860e7a75436"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"approx",
|
|
551
|
+
"libm",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "glamx"
|
|
556
|
+
version = "0.3.0"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "9847f980afb0628849bcd6a406cdffd29eb9d53fca83e1646005901a9acd4c5c"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"approx",
|
|
561
|
+
"glam",
|
|
562
|
+
"num-traits",
|
|
563
|
+
"simba 0.10.0",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "half"
|
|
568
|
+
version = "2.7.1"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"bytemuck",
|
|
573
|
+
"cfg-if",
|
|
574
|
+
"crunchy",
|
|
575
|
+
"num-traits",
|
|
576
|
+
"zerocopy",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "hash32"
|
|
581
|
+
version = "0.3.1"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"byteorder",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "hashbrown"
|
|
590
|
+
version = "0.16.1"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"allocator-api2",
|
|
595
|
+
"equivalent",
|
|
596
|
+
"foldhash",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "hashbrown"
|
|
601
|
+
version = "0.17.1"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"foldhash",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "heapless"
|
|
610
|
+
version = "0.8.0"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"hash32",
|
|
615
|
+
"stable_deref_trait",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "heck"
|
|
620
|
+
version = "0.5.0"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "http"
|
|
626
|
+
version = "1.4.2"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"bytes",
|
|
631
|
+
"itoa",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "http-body"
|
|
636
|
+
version = "1.0.1"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"bytes",
|
|
641
|
+
"http",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "http-body-util"
|
|
646
|
+
version = "0.1.3"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"bytes",
|
|
651
|
+
"futures-core",
|
|
652
|
+
"http",
|
|
653
|
+
"http-body",
|
|
654
|
+
"pin-project-lite",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "http-range-header"
|
|
659
|
+
version = "0.4.2"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "httparse"
|
|
665
|
+
version = "1.10.1"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "httpdate"
|
|
671
|
+
version = "1.0.3"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "hyper"
|
|
677
|
+
version = "1.10.1"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"atomic-waker",
|
|
682
|
+
"bytes",
|
|
683
|
+
"futures-channel",
|
|
684
|
+
"futures-core",
|
|
685
|
+
"http",
|
|
686
|
+
"http-body",
|
|
687
|
+
"httparse",
|
|
688
|
+
"httpdate",
|
|
689
|
+
"itoa",
|
|
690
|
+
"pin-project-lite",
|
|
691
|
+
"smallvec",
|
|
692
|
+
"tokio",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "hyper-util"
|
|
697
|
+
version = "0.1.20"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"bytes",
|
|
702
|
+
"http",
|
|
703
|
+
"http-body",
|
|
704
|
+
"hyper",
|
|
705
|
+
"pin-project-lite",
|
|
706
|
+
"tokio",
|
|
707
|
+
"tower-service",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "indexmap"
|
|
712
|
+
version = "2.14.0"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"equivalent",
|
|
717
|
+
"hashbrown 0.17.1",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "indoc"
|
|
722
|
+
version = "2.0.7"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"rustversion",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "itoa"
|
|
731
|
+
version = "1.0.18"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "js-sys"
|
|
737
|
+
version = "0.3.103"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"cfg-if",
|
|
742
|
+
"futures-util",
|
|
743
|
+
"wasm-bindgen",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "lazy_static"
|
|
748
|
+
version = "1.5.0"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "libc"
|
|
754
|
+
version = "0.2.186"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "libm"
|
|
760
|
+
version = "0.2.16"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "log"
|
|
766
|
+
version = "0.4.33"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "logos"
|
|
772
|
+
version = "0.16.1"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "eb2c55a318a87600ea870ff8c2012148b44bf18b74fad48d0f835c38c7d07c5f"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"logos-derive",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "logos-codegen"
|
|
781
|
+
version = "0.16.1"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "58b3ffaa284e1350d017a57d04ada118c4583cf260c8fb01e0fe28a2e9cf8970"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"fnv",
|
|
786
|
+
"proc-macro2",
|
|
787
|
+
"quote",
|
|
788
|
+
"regex-automata",
|
|
789
|
+
"regex-syntax",
|
|
790
|
+
"syn",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "logos-derive"
|
|
795
|
+
version = "0.16.1"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "52d3a9855747c17eaf4383823f135220716ab49bea5fbea7dd42cc9a92f8aa31"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"logos-codegen",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "lz4_flex"
|
|
804
|
+
version = "0.14.0"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "ecbdfe44b1bd960b68170b417450a628c43f7cf56bb3c5317e61cb230ee7f226"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"twox-hash",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "matchit"
|
|
813
|
+
version = "0.8.4"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "matrixmultiply"
|
|
819
|
+
version = "0.3.10"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"autocfg",
|
|
824
|
+
"rawpointer",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "memchr"
|
|
829
|
+
version = "2.8.2"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "memoffset"
|
|
835
|
+
version = "0.9.1"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"autocfg",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "mime"
|
|
844
|
+
version = "0.3.17"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "mime_guess"
|
|
850
|
+
version = "2.0.5"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"mime",
|
|
855
|
+
"unicase",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "minimal-lexical"
|
|
860
|
+
version = "0.2.1"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "miniz_oxide"
|
|
866
|
+
version = "0.8.9"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"adler2",
|
|
871
|
+
"simd-adler32",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "mio"
|
|
876
|
+
version = "1.2.1"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"libc",
|
|
881
|
+
"wasi",
|
|
882
|
+
"windows-sys",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "nalgebra"
|
|
887
|
+
version = "0.33.3"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"approx",
|
|
892
|
+
"matrixmultiply",
|
|
893
|
+
"nalgebra-macros",
|
|
894
|
+
"num-complex",
|
|
895
|
+
"num-rational",
|
|
896
|
+
"num-traits",
|
|
897
|
+
"simba 0.9.1",
|
|
898
|
+
"typenum",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "nalgebra-macros"
|
|
903
|
+
version = "0.2.2"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"proc-macro2",
|
|
908
|
+
"quote",
|
|
909
|
+
"syn",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "nom"
|
|
914
|
+
version = "7.1.3"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"memchr",
|
|
919
|
+
"minimal-lexical",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "num-bigint"
|
|
924
|
+
version = "0.4.7"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "c863e9ab5e7bf9c99ba75e1050f1e4d624ae87ed3532d6238ffbdc7b585dbbe6"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"num-integer",
|
|
929
|
+
"num-traits",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "num-complex"
|
|
934
|
+
version = "0.4.6"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"num-traits",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "num-derive"
|
|
943
|
+
version = "0.4.2"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"proc-macro2",
|
|
948
|
+
"quote",
|
|
949
|
+
"syn",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "num-integer"
|
|
954
|
+
version = "0.1.46"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"num-traits",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "num-rational"
|
|
963
|
+
version = "0.4.2"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"num-bigint",
|
|
968
|
+
"num-integer",
|
|
969
|
+
"num-traits",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "num-traits"
|
|
974
|
+
version = "0.2.19"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"autocfg",
|
|
979
|
+
"libm",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "once_cell"
|
|
984
|
+
version = "1.21.4"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "openusd"
|
|
990
|
+
version = "0.5.0"
|
|
991
|
+
source = "git+https://github.com/mxpv/openusd?rev=659917514b462834293094b93d62b5decb7133db#659917514b462834293094b93d62b5decb7133db"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"anyhow",
|
|
994
|
+
"bitflags",
|
|
995
|
+
"bytemuck",
|
|
996
|
+
"derive_more",
|
|
997
|
+
"half",
|
|
998
|
+
"logos",
|
|
999
|
+
"lz4_flex",
|
|
1000
|
+
"num-traits",
|
|
1001
|
+
"regex-lite",
|
|
1002
|
+
"strum",
|
|
1003
|
+
"thiserror",
|
|
1004
|
+
"zip",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "ordered-float"
|
|
1009
|
+
version = "5.3.0"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"num-traits",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "parry3d-f64"
|
|
1018
|
+
version = "0.29.0"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "e701f6a7de3627099b5f96d6ec33d7837e854bc1d987deab41d8a1da59de20f7"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"approx",
|
|
1023
|
+
"arrayvec",
|
|
1024
|
+
"bitflags",
|
|
1025
|
+
"downcast-rs",
|
|
1026
|
+
"either",
|
|
1027
|
+
"ena",
|
|
1028
|
+
"foldhash",
|
|
1029
|
+
"glamx",
|
|
1030
|
+
"hashbrown 0.17.1",
|
|
1031
|
+
"log",
|
|
1032
|
+
"num-derive",
|
|
1033
|
+
"num-traits",
|
|
1034
|
+
"ordered-float",
|
|
1035
|
+
"rstar",
|
|
1036
|
+
"simba 0.10.0",
|
|
1037
|
+
"slab",
|
|
1038
|
+
"smallvec",
|
|
1039
|
+
"spade",
|
|
1040
|
+
"thiserror",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "paste"
|
|
1045
|
+
version = "1.0.15"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "percent-encoding"
|
|
1051
|
+
version = "2.3.2"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "pin-project-lite"
|
|
1057
|
+
version = "0.2.17"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "portable-atomic"
|
|
1063
|
+
version = "1.13.1"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "ppv-lite86"
|
|
1069
|
+
version = "0.2.21"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"zerocopy",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "proc-macro2"
|
|
1078
|
+
version = "1.0.106"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"unicode-ident",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "pyisheval"
|
|
1087
|
+
version = "0.11.0"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "62a8932a409073d6de26458c06f394060ffc32c9340b7a525feb051d9a7d15b5"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"indexmap",
|
|
1092
|
+
"lazy_static",
|
|
1093
|
+
"nom",
|
|
1094
|
+
"thiserror",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "pyo3"
|
|
1099
|
+
version = "0.25.1"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"indoc",
|
|
1104
|
+
"libc",
|
|
1105
|
+
"memoffset",
|
|
1106
|
+
"once_cell",
|
|
1107
|
+
"portable-atomic",
|
|
1108
|
+
"pyo3-build-config",
|
|
1109
|
+
"pyo3-ffi",
|
|
1110
|
+
"pyo3-macros",
|
|
1111
|
+
"unindent",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "pyo3-build-config"
|
|
1116
|
+
version = "0.25.1"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"once_cell",
|
|
1121
|
+
"target-lexicon",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "pyo3-ffi"
|
|
1126
|
+
version = "0.25.1"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"libc",
|
|
1131
|
+
"pyo3-build-config",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "pyo3-macros"
|
|
1136
|
+
version = "0.25.1"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"proc-macro2",
|
|
1141
|
+
"pyo3-macros-backend",
|
|
1142
|
+
"quote",
|
|
1143
|
+
"syn",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "pyo3-macros-backend"
|
|
1148
|
+
version = "0.25.1"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"heck",
|
|
1153
|
+
"proc-macro2",
|
|
1154
|
+
"pyo3-build-config",
|
|
1155
|
+
"quote",
|
|
1156
|
+
"syn",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "quote"
|
|
1161
|
+
version = "1.0.46"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1164
|
+
dependencies = [
|
|
1165
|
+
"proc-macro2",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "r-efi"
|
|
1170
|
+
version = "5.3.0"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "rand"
|
|
1176
|
+
version = "0.9.4"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"rand_chacha",
|
|
1181
|
+
"rand_core",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "rand_chacha"
|
|
1186
|
+
version = "0.9.0"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"ppv-lite86",
|
|
1191
|
+
"rand_core",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "rand_core"
|
|
1196
|
+
version = "0.9.5"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"getrandom",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "rawpointer"
|
|
1205
|
+
version = "0.2.1"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "rayon"
|
|
1211
|
+
version = "1.12.0"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"either",
|
|
1216
|
+
"rayon-core",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "rayon-core"
|
|
1221
|
+
version = "1.13.0"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"crossbeam-deque",
|
|
1226
|
+
"crossbeam-utils",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "regex"
|
|
1231
|
+
version = "1.12.4"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"aho-corasick",
|
|
1236
|
+
"memchr",
|
|
1237
|
+
"regex-automata",
|
|
1238
|
+
"regex-syntax",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "regex-automata"
|
|
1243
|
+
version = "0.4.14"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"aho-corasick",
|
|
1248
|
+
"memchr",
|
|
1249
|
+
"regex-syntax",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "regex-lite"
|
|
1254
|
+
version = "0.1.9"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "regex-syntax"
|
|
1260
|
+
version = "0.8.11"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "robust"
|
|
1266
|
+
version = "1.2.0"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "roxmltree"
|
|
1272
|
+
version = "0.14.1"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"xmlparser",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "rstar"
|
|
1281
|
+
version = "0.13.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "5912b862fa5ffb462607bfd1e35036c458c537921f508c8235a83d5f3987edfe"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"heapless",
|
|
1286
|
+
"num-traits",
|
|
1287
|
+
"smallvec",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "rustc_version"
|
|
1292
|
+
version = "0.4.1"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"semver",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "rustversion"
|
|
1301
|
+
version = "1.0.22"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "ryu"
|
|
1307
|
+
version = "1.0.23"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "safe_arch"
|
|
1313
|
+
version = "0.7.4"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"bytemuck",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "safe_arch"
|
|
1322
|
+
version = "1.0.0"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"bytemuck",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "semver"
|
|
1331
|
+
version = "1.0.28"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "serde"
|
|
1337
|
+
version = "1.0.228"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"serde_core",
|
|
1342
|
+
"serde_derive",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "serde_core"
|
|
1347
|
+
version = "1.0.228"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"serde_derive",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "serde_derive"
|
|
1356
|
+
version = "1.0.228"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"proc-macro2",
|
|
1361
|
+
"quote",
|
|
1362
|
+
"syn",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "serde_json"
|
|
1367
|
+
version = "1.0.150"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"itoa",
|
|
1372
|
+
"memchr",
|
|
1373
|
+
"serde",
|
|
1374
|
+
"serde_core",
|
|
1375
|
+
"zmij",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "serde_path_to_error"
|
|
1380
|
+
version = "0.1.20"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"itoa",
|
|
1385
|
+
"serde",
|
|
1386
|
+
"serde_core",
|
|
1387
|
+
]
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "serde_urlencoded"
|
|
1391
|
+
version = "0.7.1"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"form_urlencoded",
|
|
1396
|
+
"itoa",
|
|
1397
|
+
"ryu",
|
|
1398
|
+
"serde",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "sha1"
|
|
1403
|
+
version = "0.10.6"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"cfg-if",
|
|
1408
|
+
"cpufeatures",
|
|
1409
|
+
"digest",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "simba"
|
|
1414
|
+
version = "0.9.1"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
|
|
1417
|
+
dependencies = [
|
|
1418
|
+
"approx",
|
|
1419
|
+
"num-complex",
|
|
1420
|
+
"num-traits",
|
|
1421
|
+
"paste",
|
|
1422
|
+
"wide 0.7.33",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "simba"
|
|
1427
|
+
version = "0.10.0"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "8f45c644a9f3a386f9288625d9f0c1e999e1acf07a37df35d0516c7f199d9cb2"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"approx",
|
|
1432
|
+
"num-complex",
|
|
1433
|
+
"num-traits",
|
|
1434
|
+
"wide 1.5.0",
|
|
1435
|
+
]
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "simd-adler32"
|
|
1439
|
+
version = "0.3.10"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "slab"
|
|
1445
|
+
version = "0.4.12"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "smallvec"
|
|
1451
|
+
version = "1.15.2"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "socket2"
|
|
1457
|
+
version = "0.6.4"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"libc",
|
|
1462
|
+
"windows-sys",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "spade"
|
|
1467
|
+
version = "2.15.1"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "9699399fd9349b00b184f5635b074f9ec93afffef30c853f8c875b32c0f8c7fa"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"hashbrown 0.16.1",
|
|
1472
|
+
"num-traits",
|
|
1473
|
+
"robust",
|
|
1474
|
+
"smallvec",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "stable_deref_trait"
|
|
1479
|
+
version = "1.2.1"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "strum"
|
|
1485
|
+
version = "0.28.0"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"strum_macros",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "strum_macros"
|
|
1494
|
+
version = "0.28.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"heck",
|
|
1499
|
+
"proc-macro2",
|
|
1500
|
+
"quote",
|
|
1501
|
+
"syn",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "syn"
|
|
1506
|
+
version = "2.0.118"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"proc-macro2",
|
|
1511
|
+
"quote",
|
|
1512
|
+
"unicode-ident",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "sync_wrapper"
|
|
1517
|
+
version = "1.0.2"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "target-lexicon"
|
|
1523
|
+
version = "0.13.5"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "termcolor"
|
|
1529
|
+
version = "1.4.1"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"winapi-util",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "thiserror"
|
|
1538
|
+
version = "2.0.18"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"thiserror-impl",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "thiserror-impl"
|
|
1547
|
+
version = "2.0.18"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"proc-macro2",
|
|
1552
|
+
"quote",
|
|
1553
|
+
"syn",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "tokio"
|
|
1558
|
+
version = "1.52.3"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"bytes",
|
|
1563
|
+
"libc",
|
|
1564
|
+
"mio",
|
|
1565
|
+
"pin-project-lite",
|
|
1566
|
+
"socket2",
|
|
1567
|
+
"tokio-macros",
|
|
1568
|
+
"windows-sys",
|
|
1569
|
+
]
|
|
1570
|
+
|
|
1571
|
+
[[package]]
|
|
1572
|
+
name = "tokio-macros"
|
|
1573
|
+
version = "2.7.0"
|
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1576
|
+
dependencies = [
|
|
1577
|
+
"proc-macro2",
|
|
1578
|
+
"quote",
|
|
1579
|
+
"syn",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "tokio-tungstenite"
|
|
1584
|
+
version = "0.29.0"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"futures-util",
|
|
1589
|
+
"log",
|
|
1590
|
+
"tokio",
|
|
1591
|
+
"tungstenite",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "tokio-util"
|
|
1596
|
+
version = "0.7.18"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"bytes",
|
|
1601
|
+
"futures-core",
|
|
1602
|
+
"futures-sink",
|
|
1603
|
+
"pin-project-lite",
|
|
1604
|
+
"tokio",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "tower"
|
|
1609
|
+
version = "0.5.3"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"futures-core",
|
|
1614
|
+
"futures-util",
|
|
1615
|
+
"pin-project-lite",
|
|
1616
|
+
"sync_wrapper",
|
|
1617
|
+
"tokio",
|
|
1618
|
+
"tower-layer",
|
|
1619
|
+
"tower-service",
|
|
1620
|
+
"tracing",
|
|
1621
|
+
]
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "tower-http"
|
|
1625
|
+
version = "0.6.11"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"bitflags",
|
|
1630
|
+
"bytes",
|
|
1631
|
+
"futures-core",
|
|
1632
|
+
"futures-util",
|
|
1633
|
+
"http",
|
|
1634
|
+
"http-body",
|
|
1635
|
+
"http-body-util",
|
|
1636
|
+
"http-range-header",
|
|
1637
|
+
"httpdate",
|
|
1638
|
+
"mime",
|
|
1639
|
+
"mime_guess",
|
|
1640
|
+
"percent-encoding",
|
|
1641
|
+
"pin-project-lite",
|
|
1642
|
+
"tokio",
|
|
1643
|
+
"tokio-util",
|
|
1644
|
+
"tower-layer",
|
|
1645
|
+
"tower-service",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "tower-layer"
|
|
1650
|
+
version = "0.3.3"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "tower-service"
|
|
1656
|
+
version = "0.3.3"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "tracing"
|
|
1662
|
+
version = "0.1.44"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"log",
|
|
1667
|
+
"pin-project-lite",
|
|
1668
|
+
"tracing-core",
|
|
1669
|
+
]
|
|
1670
|
+
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "tracing-core"
|
|
1673
|
+
version = "0.1.36"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1676
|
+
dependencies = [
|
|
1677
|
+
"once_cell",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "ts-rs"
|
|
1682
|
+
version = "12.0.1"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "756050066659291d47a554a9f558125db17428b073c5ffce1daf5dcb0f7231d8"
|
|
1685
|
+
dependencies = [
|
|
1686
|
+
"thiserror",
|
|
1687
|
+
"ts-rs-macros",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "ts-rs-macros"
|
|
1692
|
+
version = "12.0.1"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "38d90eea51bc7988ef9e674bf80a85ba6804739e535e9cab48e4bb34a8b652aa"
|
|
1695
|
+
dependencies = [
|
|
1696
|
+
"proc-macro2",
|
|
1697
|
+
"quote",
|
|
1698
|
+
"syn",
|
|
1699
|
+
"termcolor",
|
|
1700
|
+
]
|
|
1701
|
+
|
|
1702
|
+
[[package]]
|
|
1703
|
+
name = "tungstenite"
|
|
1704
|
+
version = "0.29.0"
|
|
1705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
1707
|
+
dependencies = [
|
|
1708
|
+
"bytes",
|
|
1709
|
+
"data-encoding",
|
|
1710
|
+
"http",
|
|
1711
|
+
"httparse",
|
|
1712
|
+
"log",
|
|
1713
|
+
"rand",
|
|
1714
|
+
"sha1",
|
|
1715
|
+
"thiserror",
|
|
1716
|
+
]
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "twox-hash"
|
|
1720
|
+
version = "2.1.3"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "typed-path"
|
|
1726
|
+
version = "0.12.3"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "typenum"
|
|
1732
|
+
version = "1.20.1"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "unicase"
|
|
1738
|
+
version = "2.9.0"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "unicode-ident"
|
|
1744
|
+
version = "1.0.24"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "unindent"
|
|
1750
|
+
version = "0.2.4"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "version_check"
|
|
1756
|
+
version = "0.9.5"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "wasi"
|
|
1762
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "wasip2"
|
|
1768
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1771
|
+
dependencies = [
|
|
1772
|
+
"wit-bindgen",
|
|
1773
|
+
]
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "wasm-bindgen"
|
|
1777
|
+
version = "0.2.126"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"cfg-if",
|
|
1782
|
+
"once_cell",
|
|
1783
|
+
"rustversion",
|
|
1784
|
+
"wasm-bindgen-macro",
|
|
1785
|
+
"wasm-bindgen-shared",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "wasm-bindgen-macro"
|
|
1790
|
+
version = "0.2.126"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
1793
|
+
dependencies = [
|
|
1794
|
+
"quote",
|
|
1795
|
+
"wasm-bindgen-macro-support",
|
|
1796
|
+
]
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "wasm-bindgen-macro-support"
|
|
1800
|
+
version = "0.2.126"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
1803
|
+
dependencies = [
|
|
1804
|
+
"bumpalo",
|
|
1805
|
+
"proc-macro2",
|
|
1806
|
+
"quote",
|
|
1807
|
+
"syn",
|
|
1808
|
+
"wasm-bindgen-shared",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "wasm-bindgen-shared"
|
|
1813
|
+
version = "0.2.126"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"unicode-ident",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "wide"
|
|
1822
|
+
version = "0.7.33"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"bytemuck",
|
|
1827
|
+
"safe_arch 0.7.4",
|
|
1828
|
+
]
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "wide"
|
|
1832
|
+
version = "1.5.0"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89"
|
|
1835
|
+
dependencies = [
|
|
1836
|
+
"bytemuck",
|
|
1837
|
+
"safe_arch 1.0.0",
|
|
1838
|
+
]
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "winapi-util"
|
|
1842
|
+
version = "0.1.11"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"windows-sys",
|
|
1847
|
+
]
|
|
1848
|
+
|
|
1849
|
+
[[package]]
|
|
1850
|
+
name = "windows-link"
|
|
1851
|
+
version = "0.2.1"
|
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "windows-sys"
|
|
1857
|
+
version = "0.61.2"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"windows-link",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "wit-bindgen"
|
|
1866
|
+
version = "0.57.1"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1869
|
+
|
|
1870
|
+
[[package]]
|
|
1871
|
+
name = "xml-rs"
|
|
1872
|
+
version = "0.8.28"
|
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "xmlparser"
|
|
1878
|
+
version = "0.13.6"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "xmltree"
|
|
1884
|
+
version = "0.10.3"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"xml-rs",
|
|
1889
|
+
]
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "xurdf"
|
|
1893
|
+
version = "0.3.0"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "2b641ab865d440e605c5e5e7f750a57d26721f124ce8302a05ecf6179412b79b"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"anyhow",
|
|
1898
|
+
"indexmap",
|
|
1899
|
+
"nalgebra",
|
|
1900
|
+
"once_cell",
|
|
1901
|
+
"pyisheval",
|
|
1902
|
+
"regex",
|
|
1903
|
+
"roxmltree",
|
|
1904
|
+
"xmltree",
|
|
1905
|
+
]
|
|
1906
|
+
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "zerocopy"
|
|
1909
|
+
version = "0.8.52"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1912
|
+
dependencies = [
|
|
1913
|
+
"zerocopy-derive",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "zerocopy-derive"
|
|
1918
|
+
version = "0.8.52"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1921
|
+
dependencies = [
|
|
1922
|
+
"proc-macro2",
|
|
1923
|
+
"quote",
|
|
1924
|
+
"syn",
|
|
1925
|
+
]
|
|
1926
|
+
|
|
1927
|
+
[[package]]
|
|
1928
|
+
name = "zip"
|
|
1929
|
+
version = "8.6.0"
|
|
1930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
1932
|
+
dependencies = [
|
|
1933
|
+
"crc32fast",
|
|
1934
|
+
"flate2",
|
|
1935
|
+
"indexmap",
|
|
1936
|
+
"memchr",
|
|
1937
|
+
"typed-path",
|
|
1938
|
+
"zopfli",
|
|
1939
|
+
]
|
|
1940
|
+
|
|
1941
|
+
[[package]]
|
|
1942
|
+
name = "zlib-rs"
|
|
1943
|
+
version = "0.6.6"
|
|
1944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
+
checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
|
|
1946
|
+
|
|
1947
|
+
[[package]]
|
|
1948
|
+
name = "zmij"
|
|
1949
|
+
version = "1.0.21"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "zopfli"
|
|
1955
|
+
version = "0.8.3"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
1958
|
+
dependencies = [
|
|
1959
|
+
"bumpalo",
|
|
1960
|
+
"crc32fast",
|
|
1961
|
+
"log",
|
|
1962
|
+
"simd-adler32",
|
|
1963
|
+
]
|