libertem-qd-mpx 0.2.12__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.
Potentially problematic release.
This version of libertem-qd-mpx might be problematic. Click here for more details.
- libertem_qd_mpx-0.2.12/Cargo.lock +5021 -0
- libertem_qd_mpx-0.2.12/Cargo.toml +6 -0
- libertem_qd_mpx-0.2.12/PKG-INFO +29 -0
- libertem_qd_mpx-0.2.12/README.md +16 -0
- libertem_qd_mpx-0.2.12/common/Cargo.toml +31 -0
- libertem_qd_mpx-0.2.12/common/README.md +42 -0
- libertem_qd_mpx-0.2.12/common/benches/casting.rs +150 -0
- libertem_qd_mpx-0.2.12/common/src/background_thread.rs +81 -0
- libertem_qd_mpx-0.2.12/common/src/decoder.rs +221 -0
- libertem_qd_mpx-0.2.12/common/src/frame_stack.rs +627 -0
- libertem_qd_mpx-0.2.12/common/src/generic_cam_client.rs +177 -0
- libertem_qd_mpx-0.2.12/common/src/generic_connection.rs +603 -0
- libertem_qd_mpx-0.2.12/common/src/lib.rs +9 -0
- libertem_qd_mpx-0.2.12/common/src/py_cam_client.rs +190 -0
- libertem_qd_mpx-0.2.12/common/src/py_connection.rs +335 -0
- libertem_qd_mpx-0.2.12/common/src/tcp.rs +136 -0
- libertem_qd_mpx-0.2.12/common/src/utils.rs +41 -0
- libertem_qd_mpx-0.2.12/ipc_test/Cargo.toml +32 -0
- libertem_qd_mpx-0.2.12/ipc_test/README.md +9 -0
- libertem_qd_mpx-0.2.12/ipc_test/examples/consumer/main.rs +97 -0
- libertem_qd_mpx-0.2.12/ipc_test/examples/producer/main.rs +130 -0
- libertem_qd_mpx-0.2.12/ipc_test/run-consumer.sh +2 -0
- libertem_qd_mpx-0.2.12/ipc_test/run-producer.sh +2 -0
- libertem_qd_mpx-0.2.12/ipc_test/rust-toolchain.toml +2 -0
- libertem_qd_mpx-0.2.12/ipc_test/src/backend_memfd.rs +229 -0
- libertem_qd_mpx-0.2.12/ipc_test/src/backend_shm.rs +111 -0
- libertem_qd_mpx-0.2.12/ipc_test/src/freestack.rs +141 -0
- libertem_qd_mpx-0.2.12/ipc_test/src/lib.rs +38 -0
- libertem_qd_mpx-0.2.12/ipc_test/src/slab.rs +600 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/.github/workflows/CI.yml +138 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/.gitignore +72 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/Cargo.toml +42 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/README.md +16 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/benches/decoders.rs +160 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/examples/simple.py +43 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/src/background_thread.rs +2023 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/src/base_types.rs +1049 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/src/decoder.rs +1104 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/src/lib.rs +4 -0
- libertem_qd_mpx-0.2.12/libertem_qd_mpx/src/main_py.rs +182 -0
- libertem_qd_mpx-0.2.12/pyproject.toml +16 -0
- libertem_qd_mpx-0.2.12/stats/Cargo.toml +12 -0
- libertem_qd_mpx-0.2.12/stats/src/lib.rs +90 -0
|
@@ -0,0 +1,5021 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ab_glyph"
|
|
7
|
+
version = "0.2.23"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "80179d7dd5d7e8c285d67c4a1e652972a92de7475beddfb92028c76463b13225"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"ab_glyph_rasterizer",
|
|
12
|
+
"owned_ttf_parser",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "ab_glyph_rasterizer"
|
|
17
|
+
version = "0.1.8"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046"
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "accesskit"
|
|
23
|
+
version = "0.9.0"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "4803cf8c252f374ae6bfbb341e49e5a37f7601f2ce74a105927a663eba952c67"
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "accesskit_consumer"
|
|
29
|
+
version = "0.13.0"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "cee8cf1202a4f94d31837f1902ab0a75c77b65bf59719e093703abe83efd74ec"
|
|
32
|
+
dependencies = [
|
|
33
|
+
"accesskit",
|
|
34
|
+
"parking_lot",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "accesskit_macos"
|
|
39
|
+
version = "0.5.0"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "10be25f2b27bc33aa1647072e86b948b41596f1af1ae43a2b4b9be5d2011cbda"
|
|
42
|
+
dependencies = [
|
|
43
|
+
"accesskit",
|
|
44
|
+
"accesskit_consumer",
|
|
45
|
+
"objc2",
|
|
46
|
+
"once_cell",
|
|
47
|
+
"parking_lot",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "accesskit_unix"
|
|
52
|
+
version = "0.2.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "630e7ee8f93c6246478bf0df6760db899b28d9ad54353a5f2d3157138ba817fc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"accesskit",
|
|
57
|
+
"accesskit_consumer",
|
|
58
|
+
"async-channel 1.9.0",
|
|
59
|
+
"atspi",
|
|
60
|
+
"futures-lite 1.13.0",
|
|
61
|
+
"parking_lot",
|
|
62
|
+
"serde",
|
|
63
|
+
"zbus",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "accesskit_windows"
|
|
68
|
+
version = "0.12.0"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "a13c462fabdd950ef14308a9390b07fa2e2e3aabccba1f3ea36ea2231bb942ab"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"accesskit",
|
|
73
|
+
"accesskit_consumer",
|
|
74
|
+
"arrayvec",
|
|
75
|
+
"once_cell",
|
|
76
|
+
"parking_lot",
|
|
77
|
+
"paste",
|
|
78
|
+
"windows 0.42.0",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "accesskit_winit"
|
|
83
|
+
version = "0.10.0"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "17727888757ec027ec221db33070e226ee07df44425b583bc67684204d35eff9"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"accesskit",
|
|
88
|
+
"accesskit_macos",
|
|
89
|
+
"accesskit_unix",
|
|
90
|
+
"accesskit_windows",
|
|
91
|
+
"parking_lot",
|
|
92
|
+
"winit",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "addr2line"
|
|
97
|
+
version = "0.21.0"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"gimli",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "adler"
|
|
106
|
+
version = "1.0.2"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "ahash"
|
|
112
|
+
version = "0.8.7"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"cfg-if 1.0.0",
|
|
117
|
+
"once_cell",
|
|
118
|
+
"version_check",
|
|
119
|
+
"zerocopy",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "aho-corasick"
|
|
124
|
+
version = "1.1.2"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
|
127
|
+
dependencies = [
|
|
128
|
+
"memchr",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "android-activity"
|
|
133
|
+
version = "0.4.3"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "64529721f27c2314ced0890ce45e469574a73e5e6fdd6e9da1860eb29285f5e0"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"android-properties",
|
|
138
|
+
"bitflags 1.3.2",
|
|
139
|
+
"cc",
|
|
140
|
+
"jni-sys",
|
|
141
|
+
"libc",
|
|
142
|
+
"log",
|
|
143
|
+
"ndk",
|
|
144
|
+
"ndk-context",
|
|
145
|
+
"ndk-sys",
|
|
146
|
+
"num_enum 0.6.1",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "android-properties"
|
|
151
|
+
version = "0.2.2"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "anes"
|
|
157
|
+
version = "0.1.6"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "anstream"
|
|
163
|
+
version = "0.6.11"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"anstyle",
|
|
168
|
+
"anstyle-parse",
|
|
169
|
+
"anstyle-query",
|
|
170
|
+
"anstyle-wincon",
|
|
171
|
+
"colorchoice",
|
|
172
|
+
"utf8parse",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "anstyle"
|
|
177
|
+
version = "1.0.5"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "2faccea4cc4ab4a667ce676a30e8ec13922a692c99bb8f5b11f1502c72e04220"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "anstyle-parse"
|
|
183
|
+
version = "0.2.3"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"utf8parse",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "anstyle-query"
|
|
192
|
+
version = "1.0.2"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"windows-sys 0.52.0",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "anstyle-wincon"
|
|
201
|
+
version = "3.0.2"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"anstyle",
|
|
206
|
+
"windows-sys 0.52.0",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "anyhow"
|
|
211
|
+
version = "1.0.79"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "arboard"
|
|
217
|
+
version = "3.3.0"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "aafb29b107435aa276664c1db8954ac27a6e105cdad3c88287a199eb0e313c08"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"clipboard-win",
|
|
222
|
+
"log",
|
|
223
|
+
"objc",
|
|
224
|
+
"objc-foundation",
|
|
225
|
+
"objc_id",
|
|
226
|
+
"parking_lot",
|
|
227
|
+
"thiserror",
|
|
228
|
+
"winapi",
|
|
229
|
+
"x11rb",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "arrayref"
|
|
234
|
+
version = "0.3.7"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "arrayvec"
|
|
240
|
+
version = "0.7.4"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "async-broadcast"
|
|
246
|
+
version = "0.5.1"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"event-listener 2.5.3",
|
|
251
|
+
"futures-core",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "async-channel"
|
|
256
|
+
version = "1.9.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"concurrent-queue",
|
|
261
|
+
"event-listener 2.5.3",
|
|
262
|
+
"futures-core",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "async-channel"
|
|
267
|
+
version = "2.1.1"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"concurrent-queue",
|
|
272
|
+
"event-listener 4.0.3",
|
|
273
|
+
"event-listener-strategy",
|
|
274
|
+
"futures-core",
|
|
275
|
+
"pin-project-lite",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "async-executor"
|
|
280
|
+
version = "1.8.0"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"async-lock 3.3.0",
|
|
285
|
+
"async-task",
|
|
286
|
+
"concurrent-queue",
|
|
287
|
+
"fastrand 2.0.1",
|
|
288
|
+
"futures-lite 2.2.0",
|
|
289
|
+
"slab",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "async-fs"
|
|
294
|
+
version = "1.6.0"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"async-lock 2.8.0",
|
|
299
|
+
"autocfg",
|
|
300
|
+
"blocking",
|
|
301
|
+
"futures-lite 1.13.0",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "async-io"
|
|
306
|
+
version = "1.13.0"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"async-lock 2.8.0",
|
|
311
|
+
"autocfg",
|
|
312
|
+
"cfg-if 1.0.0",
|
|
313
|
+
"concurrent-queue",
|
|
314
|
+
"futures-lite 1.13.0",
|
|
315
|
+
"log",
|
|
316
|
+
"parking",
|
|
317
|
+
"polling 2.8.0",
|
|
318
|
+
"rustix 0.37.27",
|
|
319
|
+
"slab",
|
|
320
|
+
"socket2 0.4.10",
|
|
321
|
+
"waker-fn",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "async-io"
|
|
326
|
+
version = "2.3.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"async-lock 3.3.0",
|
|
331
|
+
"cfg-if 1.0.0",
|
|
332
|
+
"concurrent-queue",
|
|
333
|
+
"futures-io",
|
|
334
|
+
"futures-lite 2.2.0",
|
|
335
|
+
"parking",
|
|
336
|
+
"polling 3.3.2",
|
|
337
|
+
"rustix 0.38.31",
|
|
338
|
+
"slab",
|
|
339
|
+
"tracing",
|
|
340
|
+
"windows-sys 0.52.0",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "async-lock"
|
|
345
|
+
version = "2.8.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"event-listener 2.5.3",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "async-lock"
|
|
354
|
+
version = "3.3.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"event-listener 4.0.3",
|
|
359
|
+
"event-listener-strategy",
|
|
360
|
+
"pin-project-lite",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "async-process"
|
|
365
|
+
version = "1.8.1"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"async-io 1.13.0",
|
|
370
|
+
"async-lock 2.8.0",
|
|
371
|
+
"async-signal",
|
|
372
|
+
"blocking",
|
|
373
|
+
"cfg-if 1.0.0",
|
|
374
|
+
"event-listener 3.1.0",
|
|
375
|
+
"futures-lite 1.13.0",
|
|
376
|
+
"rustix 0.38.31",
|
|
377
|
+
"windows-sys 0.48.0",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "async-recursion"
|
|
382
|
+
version = "1.0.5"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"proc-macro2",
|
|
387
|
+
"quote",
|
|
388
|
+
"syn 2.0.48",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "async-signal"
|
|
393
|
+
version = "0.2.5"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"async-io 2.3.1",
|
|
398
|
+
"async-lock 2.8.0",
|
|
399
|
+
"atomic-waker",
|
|
400
|
+
"cfg-if 1.0.0",
|
|
401
|
+
"futures-core",
|
|
402
|
+
"futures-io",
|
|
403
|
+
"rustix 0.38.31",
|
|
404
|
+
"signal-hook-registry",
|
|
405
|
+
"slab",
|
|
406
|
+
"windows-sys 0.48.0",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "async-task"
|
|
411
|
+
version = "4.7.0"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "async-trait"
|
|
417
|
+
version = "0.1.77"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"proc-macro2",
|
|
422
|
+
"quote",
|
|
423
|
+
"syn 2.0.48",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "atomic-waker"
|
|
428
|
+
version = "1.1.2"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "atomic_refcell"
|
|
434
|
+
version = "0.1.13"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c"
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "atspi"
|
|
440
|
+
version = "0.8.7"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "ab84c09a770065868da0d713f1f4b35af85d96530a868f1c1a6c249178379187"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"async-recursion",
|
|
445
|
+
"async-trait",
|
|
446
|
+
"atspi-macros",
|
|
447
|
+
"enumflags2",
|
|
448
|
+
"futures-lite 1.13.0",
|
|
449
|
+
"serde",
|
|
450
|
+
"tracing",
|
|
451
|
+
"zbus",
|
|
452
|
+
"zbus_names",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "atspi-macros"
|
|
457
|
+
version = "0.1.4"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "b3ebc5a6f61f6996eca56a4cece7b3fe7da3b86f0473c7b71ab44e229f3acce4"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"proc-macro2",
|
|
462
|
+
"quote",
|
|
463
|
+
"serde",
|
|
464
|
+
"syn 1.0.109",
|
|
465
|
+
"zbus",
|
|
466
|
+
"zbus_names",
|
|
467
|
+
"zvariant",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "atty"
|
|
472
|
+
version = "0.2.14"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"hermit-abi 0.1.19",
|
|
477
|
+
"libc",
|
|
478
|
+
"winapi",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "autocfg"
|
|
483
|
+
version = "1.1.0"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "backtrace"
|
|
489
|
+
version = "0.3.69"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"addr2line",
|
|
494
|
+
"cc",
|
|
495
|
+
"cfg-if 1.0.0",
|
|
496
|
+
"libc",
|
|
497
|
+
"miniz_oxide",
|
|
498
|
+
"object",
|
|
499
|
+
"rustc-demangle",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "base64"
|
|
504
|
+
version = "0.13.1"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "base64"
|
|
510
|
+
version = "0.21.7"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "bincode"
|
|
516
|
+
version = "1.3.3"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"serde",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "bindgen"
|
|
525
|
+
version = "0.64.0"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"bitflags 1.3.2",
|
|
530
|
+
"cexpr",
|
|
531
|
+
"clang-sys",
|
|
532
|
+
"lazy_static",
|
|
533
|
+
"lazycell",
|
|
534
|
+
"log",
|
|
535
|
+
"peeking_take_while",
|
|
536
|
+
"proc-macro2",
|
|
537
|
+
"quote",
|
|
538
|
+
"regex",
|
|
539
|
+
"rustc-hash",
|
|
540
|
+
"shlex",
|
|
541
|
+
"syn 1.0.109",
|
|
542
|
+
"which",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "bit_field"
|
|
547
|
+
version = "0.10.2"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "bitflags"
|
|
553
|
+
version = "1.3.2"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "bitflags"
|
|
559
|
+
version = "2.4.2"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "block"
|
|
565
|
+
version = "0.1.6"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "block-buffer"
|
|
571
|
+
version = "0.10.4"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"generic-array",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "block-sys"
|
|
580
|
+
version = "0.1.0-beta.1"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"objc-sys",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "block2"
|
|
589
|
+
version = "0.2.0-alpha.6"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"block-sys",
|
|
594
|
+
"objc2-encode",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "blocking"
|
|
599
|
+
version = "1.5.1"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"async-channel 2.1.1",
|
|
604
|
+
"async-lock 3.3.0",
|
|
605
|
+
"async-task",
|
|
606
|
+
"fastrand 2.0.1",
|
|
607
|
+
"futures-io",
|
|
608
|
+
"futures-lite 2.2.0",
|
|
609
|
+
"piper",
|
|
610
|
+
"tracing",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "bs_sys"
|
|
615
|
+
version = "0.1.0"
|
|
616
|
+
dependencies = [
|
|
617
|
+
"bindgen",
|
|
618
|
+
"cc",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "bumpalo"
|
|
623
|
+
version = "3.14.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "bytemuck"
|
|
629
|
+
version = "1.14.1"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"bytemuck_derive",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "bytemuck_derive"
|
|
638
|
+
version = "1.5.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"proc-macro2",
|
|
643
|
+
"quote",
|
|
644
|
+
"syn 2.0.48",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "byteorder"
|
|
649
|
+
version = "1.5.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "bytes"
|
|
655
|
+
version = "1.5.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "calloop"
|
|
661
|
+
version = "0.10.6"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "52e0d00eb1ea24371a97d2da6201c6747a633dc6dc1988ef503403b4c59504a8"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"bitflags 1.3.2",
|
|
666
|
+
"log",
|
|
667
|
+
"nix 0.25.1",
|
|
668
|
+
"slotmap",
|
|
669
|
+
"thiserror",
|
|
670
|
+
"vec_map",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "cast"
|
|
675
|
+
version = "0.3.0"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "cc"
|
|
681
|
+
version = "1.0.83"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"jobserver",
|
|
686
|
+
"libc",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "cesu8"
|
|
691
|
+
version = "1.1.0"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "cexpr"
|
|
697
|
+
version = "0.6.0"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"nom",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "cfg-expr"
|
|
706
|
+
version = "0.15.6"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "6100bc57b6209840798d95cb2775684849d332f7bd788db2a8c8caf7ef82a41a"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"smallvec",
|
|
711
|
+
"target-lexicon",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "cfg-if"
|
|
716
|
+
version = "0.1.10"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "cfg-if"
|
|
722
|
+
version = "1.0.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "cfg_aliases"
|
|
728
|
+
version = "0.1.1"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "cgl"
|
|
734
|
+
version = "0.3.2"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"libc",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "ciborium"
|
|
743
|
+
version = "0.2.2"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"ciborium-io",
|
|
748
|
+
"ciborium-ll",
|
|
749
|
+
"serde",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "ciborium-io"
|
|
754
|
+
version = "0.2.2"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "ciborium-ll"
|
|
760
|
+
version = "0.2.2"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"ciborium-io",
|
|
765
|
+
"half",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "clang-sys"
|
|
770
|
+
version = "1.7.0"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"glob",
|
|
775
|
+
"libc",
|
|
776
|
+
"libloading 0.8.1",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "clap"
|
|
781
|
+
version = "3.2.25"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"atty",
|
|
786
|
+
"bitflags 1.3.2",
|
|
787
|
+
"clap_derive 3.2.25",
|
|
788
|
+
"clap_lex 0.2.4",
|
|
789
|
+
"indexmap 1.9.3",
|
|
790
|
+
"once_cell",
|
|
791
|
+
"strsim",
|
|
792
|
+
"termcolor",
|
|
793
|
+
"textwrap",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "clap"
|
|
798
|
+
version = "4.4.18"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"clap_builder",
|
|
803
|
+
"clap_derive 4.4.7",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "clap_builder"
|
|
808
|
+
version = "4.4.18"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"anstream",
|
|
813
|
+
"anstyle",
|
|
814
|
+
"clap_lex 0.6.0",
|
|
815
|
+
"strsim",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "clap_derive"
|
|
820
|
+
version = "3.2.25"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"heck",
|
|
825
|
+
"proc-macro-error",
|
|
826
|
+
"proc-macro2",
|
|
827
|
+
"quote",
|
|
828
|
+
"syn 1.0.109",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "clap_derive"
|
|
833
|
+
version = "4.4.7"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"heck",
|
|
838
|
+
"proc-macro2",
|
|
839
|
+
"quote",
|
|
840
|
+
"syn 2.0.48",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "clap_lex"
|
|
845
|
+
version = "0.2.4"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"os_str_bytes",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "clap_lex"
|
|
854
|
+
version = "0.6.0"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "clipboard-win"
|
|
860
|
+
version = "4.5.0"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"error-code",
|
|
865
|
+
"str-buf",
|
|
866
|
+
"winapi",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "color_quant"
|
|
871
|
+
version = "1.1.0"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "colorchoice"
|
|
877
|
+
version = "1.0.0"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "combine"
|
|
883
|
+
version = "4.6.6"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"bytes",
|
|
888
|
+
"memchr",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "common"
|
|
893
|
+
version = "0.2.12"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"bincode",
|
|
896
|
+
"criterion",
|
|
897
|
+
"ipc-test",
|
|
898
|
+
"log",
|
|
899
|
+
"multiversion",
|
|
900
|
+
"ndarray",
|
|
901
|
+
"num",
|
|
902
|
+
"numpy",
|
|
903
|
+
"pyo3",
|
|
904
|
+
"serde",
|
|
905
|
+
"stats",
|
|
906
|
+
"tempfile",
|
|
907
|
+
"thiserror",
|
|
908
|
+
"zerocopy",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "concurrent-queue"
|
|
913
|
+
version = "2.4.0"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"crossbeam-utils",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "core-foundation"
|
|
922
|
+
version = "0.9.4"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"core-foundation-sys",
|
|
927
|
+
"libc",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "core-foundation-sys"
|
|
932
|
+
version = "0.8.6"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "core-graphics"
|
|
938
|
+
version = "0.22.3"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"bitflags 1.3.2",
|
|
943
|
+
"core-foundation",
|
|
944
|
+
"core-graphics-types",
|
|
945
|
+
"foreign-types",
|
|
946
|
+
"libc",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "core-graphics-types"
|
|
951
|
+
version = "0.1.3"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"bitflags 1.3.2",
|
|
956
|
+
"core-foundation",
|
|
957
|
+
"libc",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "cpufeatures"
|
|
962
|
+
version = "0.2.12"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"libc",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "crc32fast"
|
|
971
|
+
version = "1.3.2"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"cfg-if 1.0.0",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "criterion"
|
|
980
|
+
version = "0.5.1"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"anes",
|
|
985
|
+
"cast",
|
|
986
|
+
"ciborium",
|
|
987
|
+
"clap 4.4.18",
|
|
988
|
+
"criterion-plot",
|
|
989
|
+
"is-terminal",
|
|
990
|
+
"itertools 0.10.5",
|
|
991
|
+
"num-traits",
|
|
992
|
+
"once_cell",
|
|
993
|
+
"oorandom",
|
|
994
|
+
"plotters",
|
|
995
|
+
"rayon",
|
|
996
|
+
"regex",
|
|
997
|
+
"serde",
|
|
998
|
+
"serde_derive",
|
|
999
|
+
"serde_json",
|
|
1000
|
+
"tinytemplate",
|
|
1001
|
+
"walkdir",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "criterion-plot"
|
|
1006
|
+
version = "0.5.0"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"cast",
|
|
1011
|
+
"itertools 0.10.5",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "crossbeam"
|
|
1016
|
+
version = "0.8.4"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"crossbeam-channel",
|
|
1021
|
+
"crossbeam-deque",
|
|
1022
|
+
"crossbeam-epoch",
|
|
1023
|
+
"crossbeam-queue",
|
|
1024
|
+
"crossbeam-utils",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "crossbeam-channel"
|
|
1029
|
+
version = "0.5.11"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"crossbeam-utils",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "crossbeam-deque"
|
|
1038
|
+
version = "0.8.5"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"crossbeam-epoch",
|
|
1043
|
+
"crossbeam-utils",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "crossbeam-epoch"
|
|
1048
|
+
version = "0.9.18"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"crossbeam-utils",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "crossbeam-queue"
|
|
1057
|
+
version = "0.3.11"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"crossbeam-utils",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "crossbeam-utils"
|
|
1066
|
+
version = "0.8.19"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "crunchy"
|
|
1072
|
+
version = "0.2.2"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "crypto-common"
|
|
1078
|
+
version = "0.1.6"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"generic-array",
|
|
1083
|
+
"typenum",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "derivative"
|
|
1088
|
+
version = "2.2.0"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"proc-macro2",
|
|
1093
|
+
"quote",
|
|
1094
|
+
"syn 1.0.109",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "digest"
|
|
1099
|
+
version = "0.10.7"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"block-buffer",
|
|
1104
|
+
"crypto-common",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "dircpy"
|
|
1109
|
+
version = "0.3.15"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "8466f8d28ca6da4c9dfbbef6ad4bff6f2fdd5e412d821025b0d3f0a9d74a8c1e"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"jwalk",
|
|
1114
|
+
"log",
|
|
1115
|
+
"walkdir",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "dispatch"
|
|
1120
|
+
version = "0.2.0"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "dlib"
|
|
1126
|
+
version = "0.5.2"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"libloading 0.8.1",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "downcast-rs"
|
|
1135
|
+
version = "1.2.0"
|
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
+
checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "ecolor"
|
|
1141
|
+
version = "0.21.0"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "1f99fe3cac305af9d6d92971af60d0f7ea4d783201ef1673571567b6699964d9"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"bytemuck",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "eframe"
|
|
1150
|
+
version = "0.21.3"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "3df3ce60931e5f2d83bab4484d1a283908534d5308cc6b0c5c22c59cd15ee7cc"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"bytemuck",
|
|
1155
|
+
"egui",
|
|
1156
|
+
"egui-winit",
|
|
1157
|
+
"egui_glow",
|
|
1158
|
+
"glow",
|
|
1159
|
+
"glutin",
|
|
1160
|
+
"glutin-winit",
|
|
1161
|
+
"js-sys",
|
|
1162
|
+
"percent-encoding",
|
|
1163
|
+
"raw-window-handle",
|
|
1164
|
+
"thiserror",
|
|
1165
|
+
"tracing",
|
|
1166
|
+
"wasm-bindgen",
|
|
1167
|
+
"wasm-bindgen-futures",
|
|
1168
|
+
"web-sys",
|
|
1169
|
+
"winit",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "egui"
|
|
1174
|
+
version = "0.21.0"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "6412a21e0bde7c0918f7fb44bbbb86b5e1f88e63c026a4e747cc7af02f76dfbe"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"accesskit",
|
|
1179
|
+
"ahash",
|
|
1180
|
+
"epaint",
|
|
1181
|
+
"nohash-hasher",
|
|
1182
|
+
"tracing",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "egui-winit"
|
|
1187
|
+
version = "0.21.1"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "ab43597ba41f0ce39a364ad83185594578bfd8b3409b99dbcbb01df23afc3dbb"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"accesskit_winit",
|
|
1192
|
+
"android-activity",
|
|
1193
|
+
"arboard",
|
|
1194
|
+
"egui",
|
|
1195
|
+
"instant",
|
|
1196
|
+
"smithay-clipboard",
|
|
1197
|
+
"tracing",
|
|
1198
|
+
"webbrowser",
|
|
1199
|
+
"winit",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "egui_extras"
|
|
1204
|
+
version = "0.21.0"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "8f051342e97dfa2445107cb7d2e720617f5c840199b5cb4fe0ffcf481fcf5cce"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"egui",
|
|
1209
|
+
"image",
|
|
1210
|
+
"serde",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "egui_glow"
|
|
1215
|
+
version = "0.21.0"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "8257332fb168a965b3dca81d6a344e053153773c889cabdba0b3b76f1629ae81"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"bytemuck",
|
|
1220
|
+
"egui",
|
|
1221
|
+
"glow",
|
|
1222
|
+
"memoffset 0.6.5",
|
|
1223
|
+
"tracing",
|
|
1224
|
+
"wasm-bindgen",
|
|
1225
|
+
"web-sys",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "either"
|
|
1230
|
+
version = "1.9.0"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "emath"
|
|
1236
|
+
version = "0.21.0"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "b8ecd80612937e0267909d5351770fe150004e24dab93954f69ca62eecd3f77e"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"bytemuck",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "encoding_rs"
|
|
1245
|
+
version = "0.8.34"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
1248
|
+
dependencies = [
|
|
1249
|
+
"cfg-if 1.0.0",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "enumflags2"
|
|
1254
|
+
version = "0.7.8"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"enumflags2_derive",
|
|
1259
|
+
"serde",
|
|
1260
|
+
]
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "enumflags2_derive"
|
|
1264
|
+
version = "0.7.8"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"proc-macro2",
|
|
1269
|
+
"quote",
|
|
1270
|
+
"syn 2.0.48",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "env_logger"
|
|
1275
|
+
version = "0.9.3"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
|
|
1278
|
+
dependencies = [
|
|
1279
|
+
"atty",
|
|
1280
|
+
"humantime",
|
|
1281
|
+
"log",
|
|
1282
|
+
"regex",
|
|
1283
|
+
"termcolor",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "epaint"
|
|
1288
|
+
version = "0.21.0"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "12e78b5c58a1f7f621f9d546add2adce20636422c9b251e29f749e8a2f713c95"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"ab_glyph",
|
|
1293
|
+
"ahash",
|
|
1294
|
+
"atomic_refcell",
|
|
1295
|
+
"bytemuck",
|
|
1296
|
+
"ecolor",
|
|
1297
|
+
"emath",
|
|
1298
|
+
"nohash-hasher",
|
|
1299
|
+
"parking_lot",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "equivalent"
|
|
1304
|
+
version = "1.0.1"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "errno"
|
|
1310
|
+
version = "0.3.8"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"libc",
|
|
1315
|
+
"windows-sys 0.52.0",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "error-code"
|
|
1320
|
+
version = "2.3.1"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"libc",
|
|
1325
|
+
"str-buf",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "event-listener"
|
|
1330
|
+
version = "2.5.3"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "event-listener"
|
|
1336
|
+
version = "3.1.0"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"concurrent-queue",
|
|
1341
|
+
"parking",
|
|
1342
|
+
"pin-project-lite",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "event-listener"
|
|
1347
|
+
version = "4.0.3"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"concurrent-queue",
|
|
1352
|
+
"parking",
|
|
1353
|
+
"pin-project-lite",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "event-listener-strategy"
|
|
1358
|
+
version = "0.4.0"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"event-listener 4.0.3",
|
|
1363
|
+
"pin-project-lite",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "exr"
|
|
1368
|
+
version = "1.71.0"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"bit_field",
|
|
1373
|
+
"flume",
|
|
1374
|
+
"half",
|
|
1375
|
+
"lebe",
|
|
1376
|
+
"miniz_oxide",
|
|
1377
|
+
"rayon-core",
|
|
1378
|
+
"smallvec",
|
|
1379
|
+
"zune-inflate",
|
|
1380
|
+
]
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "fastrand"
|
|
1384
|
+
version = "1.9.0"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
1387
|
+
dependencies = [
|
|
1388
|
+
"instant",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "fastrand"
|
|
1393
|
+
version = "2.0.1"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "fdeflate"
|
|
1399
|
+
version = "0.3.4"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"simd-adler32",
|
|
1404
|
+
]
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "flate2"
|
|
1408
|
+
version = "1.0.28"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
|
1411
|
+
dependencies = [
|
|
1412
|
+
"crc32fast",
|
|
1413
|
+
"miniz_oxide",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "flume"
|
|
1418
|
+
version = "0.11.0"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"spin",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "fnv"
|
|
1427
|
+
version = "1.0.7"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "foreign-types"
|
|
1433
|
+
version = "0.3.2"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"foreign-types-shared",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "foreign-types-shared"
|
|
1442
|
+
version = "0.1.1"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "form_urlencoded"
|
|
1448
|
+
version = "1.2.1"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
1451
|
+
dependencies = [
|
|
1452
|
+
"percent-encoding",
|
|
1453
|
+
]
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "futures-channel"
|
|
1457
|
+
version = "0.3.30"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"futures-core",
|
|
1462
|
+
]
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "futures-core"
|
|
1466
|
+
version = "0.3.30"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "futures-io"
|
|
1472
|
+
version = "0.3.30"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "futures-lite"
|
|
1478
|
+
version = "1.13.0"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"fastrand 1.9.0",
|
|
1483
|
+
"futures-core",
|
|
1484
|
+
"futures-io",
|
|
1485
|
+
"memchr",
|
|
1486
|
+
"parking",
|
|
1487
|
+
"pin-project-lite",
|
|
1488
|
+
"waker-fn",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "futures-lite"
|
|
1493
|
+
version = "2.2.0"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"fastrand 2.0.1",
|
|
1498
|
+
"futures-core",
|
|
1499
|
+
"futures-io",
|
|
1500
|
+
"parking",
|
|
1501
|
+
"pin-project-lite",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "futures-macro"
|
|
1506
|
+
version = "0.3.30"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"proc-macro2",
|
|
1511
|
+
"quote",
|
|
1512
|
+
"syn 2.0.48",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "futures-sink"
|
|
1517
|
+
version = "0.3.30"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "futures-task"
|
|
1523
|
+
version = "0.3.30"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "futures-util"
|
|
1529
|
+
version = "0.3.30"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"futures-core",
|
|
1534
|
+
"futures-io",
|
|
1535
|
+
"futures-macro",
|
|
1536
|
+
"futures-sink",
|
|
1537
|
+
"futures-task",
|
|
1538
|
+
"memchr",
|
|
1539
|
+
"pin-project-lite",
|
|
1540
|
+
"pin-utils",
|
|
1541
|
+
"slab",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "generic-array"
|
|
1546
|
+
version = "0.14.7"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"typenum",
|
|
1551
|
+
"version_check",
|
|
1552
|
+
]
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "gethostname"
|
|
1556
|
+
version = "0.3.0"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177"
|
|
1559
|
+
dependencies = [
|
|
1560
|
+
"libc",
|
|
1561
|
+
"winapi",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "getrandom"
|
|
1566
|
+
version = "0.2.12"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"cfg-if 1.0.0",
|
|
1571
|
+
"libc",
|
|
1572
|
+
"wasi",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "gif"
|
|
1577
|
+
version = "0.12.0"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"color_quant",
|
|
1582
|
+
"weezl",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "gimli"
|
|
1587
|
+
version = "0.28.1"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "gl_generator"
|
|
1593
|
+
version = "0.14.0"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"khronos_api",
|
|
1598
|
+
"log",
|
|
1599
|
+
"xml-rs",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "glob"
|
|
1604
|
+
version = "0.3.1"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "glow"
|
|
1610
|
+
version = "0.12.3"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "ca0fe580e4b60a8ab24a868bc08e2f03cbcb20d3d676601fa909386713333728"
|
|
1613
|
+
dependencies = [
|
|
1614
|
+
"js-sys",
|
|
1615
|
+
"slotmap",
|
|
1616
|
+
"wasm-bindgen",
|
|
1617
|
+
"web-sys",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "glutin"
|
|
1622
|
+
version = "0.30.10"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "8fc93b03242719b8ad39fb26ed2b01737144ce7bd4bfc7adadcef806596760fe"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"bitflags 1.3.2",
|
|
1627
|
+
"cfg_aliases",
|
|
1628
|
+
"cgl",
|
|
1629
|
+
"core-foundation",
|
|
1630
|
+
"dispatch",
|
|
1631
|
+
"glutin_egl_sys",
|
|
1632
|
+
"glutin_glx_sys",
|
|
1633
|
+
"glutin_wgl_sys",
|
|
1634
|
+
"libloading 0.7.4",
|
|
1635
|
+
"objc2",
|
|
1636
|
+
"once_cell",
|
|
1637
|
+
"raw-window-handle",
|
|
1638
|
+
"wayland-sys 0.30.1",
|
|
1639
|
+
"windows-sys 0.45.0",
|
|
1640
|
+
"x11-dl",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "glutin-winit"
|
|
1645
|
+
version = "0.3.0"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "629a873fc04062830bfe8f97c03773bcd7b371e23bcc465d0a61448cd1588fa4"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"cfg_aliases",
|
|
1650
|
+
"glutin",
|
|
1651
|
+
"raw-window-handle",
|
|
1652
|
+
"winit",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "glutin_egl_sys"
|
|
1657
|
+
version = "0.5.1"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "af784eb26c5a68ec85391268e074f0aa618c096eadb5d6330b0911cf34fe57c5"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"gl_generator",
|
|
1662
|
+
"windows-sys 0.45.0",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "glutin_glx_sys"
|
|
1667
|
+
version = "0.4.0"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "1b53cb5fe568964aa066a3ba91eac5ecbac869fb0842cd0dc9e412434f1a1494"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"gl_generator",
|
|
1672
|
+
"x11-dl",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "glutin_wgl_sys"
|
|
1677
|
+
version = "0.4.0"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "ef89398e90033fc6bc65e9bd42fd29bbbfd483bda5b56dc5562f455550618165"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"gl_generator",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "h2"
|
|
1686
|
+
version = "0.3.26"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"bytes",
|
|
1691
|
+
"fnv",
|
|
1692
|
+
"futures-core",
|
|
1693
|
+
"futures-sink",
|
|
1694
|
+
"futures-util",
|
|
1695
|
+
"http",
|
|
1696
|
+
"indexmap 2.2.2",
|
|
1697
|
+
"slab",
|
|
1698
|
+
"tokio",
|
|
1699
|
+
"tokio-util",
|
|
1700
|
+
"tracing",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "half"
|
|
1705
|
+
version = "2.2.1"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"crunchy",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "hashbrown"
|
|
1714
|
+
version = "0.12.3"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "hashbrown"
|
|
1720
|
+
version = "0.14.3"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "heck"
|
|
1726
|
+
version = "0.4.1"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "hermit-abi"
|
|
1732
|
+
version = "0.1.19"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"libc",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "hermit-abi"
|
|
1741
|
+
version = "0.3.4"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "hex"
|
|
1747
|
+
version = "0.4.3"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "home"
|
|
1753
|
+
version = "0.5.9"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"windows-sys 0.52.0",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "http"
|
|
1762
|
+
version = "0.2.11"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"bytes",
|
|
1767
|
+
"fnv",
|
|
1768
|
+
"itoa",
|
|
1769
|
+
]
|
|
1770
|
+
|
|
1771
|
+
[[package]]
|
|
1772
|
+
name = "http-body"
|
|
1773
|
+
version = "0.4.6"
|
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1776
|
+
dependencies = [
|
|
1777
|
+
"bytes",
|
|
1778
|
+
"http",
|
|
1779
|
+
"pin-project-lite",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "httparse"
|
|
1784
|
+
version = "1.8.0"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "httpdate"
|
|
1790
|
+
version = "1.0.3"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "humantime"
|
|
1796
|
+
version = "2.1.0"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "hyper"
|
|
1802
|
+
version = "0.14.28"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"bytes",
|
|
1807
|
+
"futures-channel",
|
|
1808
|
+
"futures-core",
|
|
1809
|
+
"futures-util",
|
|
1810
|
+
"h2",
|
|
1811
|
+
"http",
|
|
1812
|
+
"http-body",
|
|
1813
|
+
"httparse",
|
|
1814
|
+
"httpdate",
|
|
1815
|
+
"itoa",
|
|
1816
|
+
"pin-project-lite",
|
|
1817
|
+
"socket2 0.5.5",
|
|
1818
|
+
"tokio",
|
|
1819
|
+
"tower-service",
|
|
1820
|
+
"tracing",
|
|
1821
|
+
"want",
|
|
1822
|
+
]
|
|
1823
|
+
|
|
1824
|
+
[[package]]
|
|
1825
|
+
name = "hyper-tls"
|
|
1826
|
+
version = "0.5.0"
|
|
1827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1828
|
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
1829
|
+
dependencies = [
|
|
1830
|
+
"bytes",
|
|
1831
|
+
"hyper",
|
|
1832
|
+
"native-tls",
|
|
1833
|
+
"tokio",
|
|
1834
|
+
"tokio-native-tls",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "idna"
|
|
1839
|
+
version = "0.5.0"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"unicode-bidi",
|
|
1844
|
+
"unicode-normalization",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "image"
|
|
1849
|
+
version = "0.24.8"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"bytemuck",
|
|
1854
|
+
"byteorder",
|
|
1855
|
+
"color_quant",
|
|
1856
|
+
"exr",
|
|
1857
|
+
"gif",
|
|
1858
|
+
"jpeg-decoder",
|
|
1859
|
+
"num-traits",
|
|
1860
|
+
"png",
|
|
1861
|
+
"qoi",
|
|
1862
|
+
"tiff",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "indexmap"
|
|
1867
|
+
version = "1.9.3"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"autocfg",
|
|
1872
|
+
"hashbrown 0.12.3",
|
|
1873
|
+
]
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "indexmap"
|
|
1877
|
+
version = "2.2.2"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"equivalent",
|
|
1882
|
+
"hashbrown 0.14.3",
|
|
1883
|
+
]
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "indoc"
|
|
1887
|
+
version = "2.0.4"
|
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
+
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "instant"
|
|
1893
|
+
version = "0.1.12"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"cfg-if 1.0.0",
|
|
1898
|
+
"js-sys",
|
|
1899
|
+
"wasm-bindgen",
|
|
1900
|
+
"web-sys",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "io-lifetimes"
|
|
1905
|
+
version = "1.0.11"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"hermit-abi 0.3.4",
|
|
1910
|
+
"libc",
|
|
1911
|
+
"windows-sys 0.48.0",
|
|
1912
|
+
]
|
|
1913
|
+
|
|
1914
|
+
[[package]]
|
|
1915
|
+
name = "ipc-test"
|
|
1916
|
+
version = "0.1.0"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"anyhow",
|
|
1919
|
+
"bincode",
|
|
1920
|
+
"bytemuck",
|
|
1921
|
+
"clap 4.4.18",
|
|
1922
|
+
"crossbeam",
|
|
1923
|
+
"log",
|
|
1924
|
+
"memfd",
|
|
1925
|
+
"memmap2",
|
|
1926
|
+
"nix 0.26.4",
|
|
1927
|
+
"page_size",
|
|
1928
|
+
"raw_sync",
|
|
1929
|
+
"sendfd",
|
|
1930
|
+
"serde",
|
|
1931
|
+
"shared_memory",
|
|
1932
|
+
"tempfile",
|
|
1933
|
+
"thiserror",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "ipnet"
|
|
1938
|
+
version = "2.9.0"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "is-terminal"
|
|
1944
|
+
version = "0.4.12"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
|
|
1947
|
+
dependencies = [
|
|
1948
|
+
"hermit-abi 0.3.4",
|
|
1949
|
+
"libc",
|
|
1950
|
+
"windows-sys 0.52.0",
|
|
1951
|
+
]
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "itertools"
|
|
1955
|
+
version = "0.10.5"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1958
|
+
dependencies = [
|
|
1959
|
+
"either",
|
|
1960
|
+
]
|
|
1961
|
+
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "itertools"
|
|
1964
|
+
version = "0.13.0"
|
|
1965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1966
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1967
|
+
dependencies = [
|
|
1968
|
+
"either",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "itoa"
|
|
1973
|
+
version = "1.0.10"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "jni"
|
|
1979
|
+
version = "0.21.1"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"cesu8",
|
|
1984
|
+
"cfg-if 1.0.0",
|
|
1985
|
+
"combine",
|
|
1986
|
+
"jni-sys",
|
|
1987
|
+
"log",
|
|
1988
|
+
"thiserror",
|
|
1989
|
+
"walkdir",
|
|
1990
|
+
"windows-sys 0.45.0",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "jni-sys"
|
|
1995
|
+
version = "0.3.0"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "jobserver"
|
|
2001
|
+
version = "0.1.27"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
|
2004
|
+
dependencies = [
|
|
2005
|
+
"libc",
|
|
2006
|
+
]
|
|
2007
|
+
|
|
2008
|
+
[[package]]
|
|
2009
|
+
name = "jpeg-decoder"
|
|
2010
|
+
version = "0.3.1"
|
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
+
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
|
|
2013
|
+
dependencies = [
|
|
2014
|
+
"rayon",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "js-sys"
|
|
2019
|
+
version = "0.3.61"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"wasm-bindgen",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "jwalk"
|
|
2028
|
+
version = "0.8.1"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
|
|
2031
|
+
dependencies = [
|
|
2032
|
+
"crossbeam",
|
|
2033
|
+
"rayon",
|
|
2034
|
+
]
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "khronos_api"
|
|
2038
|
+
version = "3.1.0"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "lazy_static"
|
|
2044
|
+
version = "1.4.0"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "lazycell"
|
|
2050
|
+
version = "1.3.0"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "lebe"
|
|
2056
|
+
version = "0.5.2"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
|
|
2059
|
+
|
|
2060
|
+
[[package]]
|
|
2061
|
+
name = "libc"
|
|
2062
|
+
version = "0.2.153"
|
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "libertem-asi-mpx3"
|
|
2068
|
+
version = "0.2.12"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"bincode",
|
|
2071
|
+
"common",
|
|
2072
|
+
"env_logger",
|
|
2073
|
+
"ipc-test",
|
|
2074
|
+
"log",
|
|
2075
|
+
"num",
|
|
2076
|
+
"numpy",
|
|
2077
|
+
"pyo3",
|
|
2078
|
+
"serde",
|
|
2079
|
+
"serval-client",
|
|
2080
|
+
"stats",
|
|
2081
|
+
"tempfile",
|
|
2082
|
+
"thiserror",
|
|
2083
|
+
"zerocopy",
|
|
2084
|
+
]
|
|
2085
|
+
|
|
2086
|
+
[[package]]
|
|
2087
|
+
name = "libertem-asi-tpx3"
|
|
2088
|
+
version = "0.2.12"
|
|
2089
|
+
dependencies = [
|
|
2090
|
+
"bincode",
|
|
2091
|
+
"common",
|
|
2092
|
+
"crossbeam",
|
|
2093
|
+
"crossbeam-channel",
|
|
2094
|
+
"env_logger",
|
|
2095
|
+
"ipc-test",
|
|
2096
|
+
"log",
|
|
2097
|
+
"numpy",
|
|
2098
|
+
"page_size",
|
|
2099
|
+
"pyo3",
|
|
2100
|
+
"serde",
|
|
2101
|
+
"stats",
|
|
2102
|
+
"tempfile",
|
|
2103
|
+
"uuid",
|
|
2104
|
+
"zerocopy",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "libertem-dectris"
|
|
2109
|
+
version = "0.2.12"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"bincode",
|
|
2112
|
+
"bs_sys",
|
|
2113
|
+
"clap 3.2.25",
|
|
2114
|
+
"common",
|
|
2115
|
+
"env_logger",
|
|
2116
|
+
"ipc-test",
|
|
2117
|
+
"log",
|
|
2118
|
+
"lz4",
|
|
2119
|
+
"md5",
|
|
2120
|
+
"memmap2",
|
|
2121
|
+
"nix 0.26.4",
|
|
2122
|
+
"num",
|
|
2123
|
+
"numpy",
|
|
2124
|
+
"pyo3",
|
|
2125
|
+
"serde",
|
|
2126
|
+
"serde_json",
|
|
2127
|
+
"spin_sleep",
|
|
2128
|
+
"stats",
|
|
2129
|
+
"tempfile",
|
|
2130
|
+
"thiserror",
|
|
2131
|
+
"uuid",
|
|
2132
|
+
"zerocopy",
|
|
2133
|
+
"zmq",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "libertem_qd_mpx"
|
|
2138
|
+
version = "0.2.12"
|
|
2139
|
+
dependencies = [
|
|
2140
|
+
"bincode",
|
|
2141
|
+
"common",
|
|
2142
|
+
"criterion",
|
|
2143
|
+
"encoding_rs",
|
|
2144
|
+
"env_logger",
|
|
2145
|
+
"ipc-test",
|
|
2146
|
+
"itertools 0.13.0",
|
|
2147
|
+
"log",
|
|
2148
|
+
"num",
|
|
2149
|
+
"numpy",
|
|
2150
|
+
"pyo3",
|
|
2151
|
+
"rand",
|
|
2152
|
+
"serde",
|
|
2153
|
+
"stats",
|
|
2154
|
+
"tempfile",
|
|
2155
|
+
"thiserror",
|
|
2156
|
+
"tokio",
|
|
2157
|
+
"zerocopy",
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "libloading"
|
|
2162
|
+
version = "0.7.4"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"cfg-if 1.0.0",
|
|
2167
|
+
"winapi",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "libloading"
|
|
2172
|
+
version = "0.8.1"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
|
|
2175
|
+
dependencies = [
|
|
2176
|
+
"cfg-if 1.0.0",
|
|
2177
|
+
"windows-sys 0.48.0",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "libredox"
|
|
2182
|
+
version = "0.0.2"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"bitflags 2.4.2",
|
|
2187
|
+
"libc",
|
|
2188
|
+
"redox_syscall 0.4.1",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "linux-raw-sys"
|
|
2193
|
+
version = "0.3.8"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "linux-raw-sys"
|
|
2199
|
+
version = "0.4.13"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "lock_api"
|
|
2205
|
+
version = "0.4.11"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"autocfg",
|
|
2210
|
+
"scopeguard",
|
|
2211
|
+
]
|
|
2212
|
+
|
|
2213
|
+
[[package]]
|
|
2214
|
+
name = "log"
|
|
2215
|
+
version = "0.4.21"
|
|
2216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
2218
|
+
|
|
2219
|
+
[[package]]
|
|
2220
|
+
name = "lz4"
|
|
2221
|
+
version = "1.24.0"
|
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
+
checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1"
|
|
2224
|
+
dependencies = [
|
|
2225
|
+
"libc",
|
|
2226
|
+
"lz4-sys",
|
|
2227
|
+
]
|
|
2228
|
+
|
|
2229
|
+
[[package]]
|
|
2230
|
+
name = "lz4-sys"
|
|
2231
|
+
version = "1.9.4"
|
|
2232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
+
checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900"
|
|
2234
|
+
dependencies = [
|
|
2235
|
+
"cc",
|
|
2236
|
+
"libc",
|
|
2237
|
+
]
|
|
2238
|
+
|
|
2239
|
+
[[package]]
|
|
2240
|
+
name = "malloc_buf"
|
|
2241
|
+
version = "0.0.6"
|
|
2242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
2244
|
+
dependencies = [
|
|
2245
|
+
"libc",
|
|
2246
|
+
]
|
|
2247
|
+
|
|
2248
|
+
[[package]]
|
|
2249
|
+
name = "matrixmultiply"
|
|
2250
|
+
version = "0.3.8"
|
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
2253
|
+
dependencies = [
|
|
2254
|
+
"autocfg",
|
|
2255
|
+
"rawpointer",
|
|
2256
|
+
]
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "md5"
|
|
2260
|
+
version = "0.7.0"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "memchr"
|
|
2266
|
+
version = "2.7.1"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "memfd"
|
|
2272
|
+
version = "0.6.4"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"rustix 0.38.31",
|
|
2277
|
+
]
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "memmap2"
|
|
2281
|
+
version = "0.5.10"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"libc",
|
|
2286
|
+
]
|
|
2287
|
+
|
|
2288
|
+
[[package]]
|
|
2289
|
+
name = "memoffset"
|
|
2290
|
+
version = "0.6.5"
|
|
2291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
|
2293
|
+
dependencies = [
|
|
2294
|
+
"autocfg",
|
|
2295
|
+
]
|
|
2296
|
+
|
|
2297
|
+
[[package]]
|
|
2298
|
+
name = "memoffset"
|
|
2299
|
+
version = "0.7.1"
|
|
2300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
|
2302
|
+
dependencies = [
|
|
2303
|
+
"autocfg",
|
|
2304
|
+
]
|
|
2305
|
+
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "memoffset"
|
|
2308
|
+
version = "0.9.0"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
2311
|
+
dependencies = [
|
|
2312
|
+
"autocfg",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "mime"
|
|
2317
|
+
version = "0.3.17"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2320
|
+
|
|
2321
|
+
[[package]]
|
|
2322
|
+
name = "minimal-lexical"
|
|
2323
|
+
version = "0.2.1"
|
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "miniz_oxide"
|
|
2329
|
+
version = "0.7.1"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"adler",
|
|
2334
|
+
"simd-adler32",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "mio"
|
|
2339
|
+
version = "0.8.10"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"libc",
|
|
2344
|
+
"log",
|
|
2345
|
+
"wasi",
|
|
2346
|
+
"windows-sys 0.48.0",
|
|
2347
|
+
]
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "multiversion"
|
|
2351
|
+
version = "0.7.4"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
|
2354
|
+
dependencies = [
|
|
2355
|
+
"multiversion-macros",
|
|
2356
|
+
"target-features",
|
|
2357
|
+
]
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "multiversion-macros"
|
|
2361
|
+
version = "0.7.4"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
|
2364
|
+
dependencies = [
|
|
2365
|
+
"proc-macro2",
|
|
2366
|
+
"quote",
|
|
2367
|
+
"syn 1.0.109",
|
|
2368
|
+
"target-features",
|
|
2369
|
+
]
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "native-tls"
|
|
2373
|
+
version = "0.2.11"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
|
2376
|
+
dependencies = [
|
|
2377
|
+
"lazy_static",
|
|
2378
|
+
"libc",
|
|
2379
|
+
"log",
|
|
2380
|
+
"openssl",
|
|
2381
|
+
"openssl-probe",
|
|
2382
|
+
"openssl-sys",
|
|
2383
|
+
"schannel",
|
|
2384
|
+
"security-framework",
|
|
2385
|
+
"security-framework-sys",
|
|
2386
|
+
"tempfile",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "ndarray"
|
|
2391
|
+
version = "0.15.6"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"matrixmultiply",
|
|
2396
|
+
"num-complex",
|
|
2397
|
+
"num-integer",
|
|
2398
|
+
"num-traits",
|
|
2399
|
+
"rawpointer",
|
|
2400
|
+
"rayon",
|
|
2401
|
+
]
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "ndarray-stats"
|
|
2405
|
+
version = "0.5.1"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "af5a8477ac96877b5bd1fd67e0c28736c12943aba24eda92b127e036b0c8f400"
|
|
2408
|
+
dependencies = [
|
|
2409
|
+
"indexmap 1.9.3",
|
|
2410
|
+
"itertools 0.10.5",
|
|
2411
|
+
"ndarray",
|
|
2412
|
+
"noisy_float",
|
|
2413
|
+
"num-integer",
|
|
2414
|
+
"num-traits",
|
|
2415
|
+
"rand",
|
|
2416
|
+
]
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "ndk"
|
|
2420
|
+
version = "0.7.0"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0"
|
|
2423
|
+
dependencies = [
|
|
2424
|
+
"bitflags 1.3.2",
|
|
2425
|
+
"jni-sys",
|
|
2426
|
+
"ndk-sys",
|
|
2427
|
+
"num_enum 0.5.11",
|
|
2428
|
+
"raw-window-handle",
|
|
2429
|
+
"thiserror",
|
|
2430
|
+
]
|
|
2431
|
+
|
|
2432
|
+
[[package]]
|
|
2433
|
+
name = "ndk-context"
|
|
2434
|
+
version = "0.1.1"
|
|
2435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "ndk-sys"
|
|
2440
|
+
version = "0.4.1+23.1.7779620"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"jni-sys",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "nix"
|
|
2449
|
+
version = "0.23.2"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"bitflags 1.3.2",
|
|
2454
|
+
"cc",
|
|
2455
|
+
"cfg-if 1.0.0",
|
|
2456
|
+
"libc",
|
|
2457
|
+
"memoffset 0.6.5",
|
|
2458
|
+
]
|
|
2459
|
+
|
|
2460
|
+
[[package]]
|
|
2461
|
+
name = "nix"
|
|
2462
|
+
version = "0.24.3"
|
|
2463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
+
checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
|
|
2465
|
+
dependencies = [
|
|
2466
|
+
"bitflags 1.3.2",
|
|
2467
|
+
"cfg-if 1.0.0",
|
|
2468
|
+
"libc",
|
|
2469
|
+
"memoffset 0.6.5",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "nix"
|
|
2474
|
+
version = "0.25.1"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"autocfg",
|
|
2479
|
+
"bitflags 1.3.2",
|
|
2480
|
+
"cfg-if 1.0.0",
|
|
2481
|
+
"libc",
|
|
2482
|
+
"memoffset 0.6.5",
|
|
2483
|
+
]
|
|
2484
|
+
|
|
2485
|
+
[[package]]
|
|
2486
|
+
name = "nix"
|
|
2487
|
+
version = "0.26.4"
|
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
+
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
|
|
2490
|
+
dependencies = [
|
|
2491
|
+
"bitflags 1.3.2",
|
|
2492
|
+
"cfg-if 1.0.0",
|
|
2493
|
+
"libc",
|
|
2494
|
+
"memoffset 0.7.1",
|
|
2495
|
+
"pin-utils",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "nix"
|
|
2500
|
+
version = "0.27.1"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"bitflags 2.4.2",
|
|
2505
|
+
"cfg-if 1.0.0",
|
|
2506
|
+
"libc",
|
|
2507
|
+
]
|
|
2508
|
+
|
|
2509
|
+
[[package]]
|
|
2510
|
+
name = "nohash-hasher"
|
|
2511
|
+
version = "0.2.0"
|
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "noisy_float"
|
|
2517
|
+
version = "0.2.0"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "978fe6e6ebc0bf53de533cd456ca2d9de13de13856eda1518a285d7705a213af"
|
|
2520
|
+
dependencies = [
|
|
2521
|
+
"num-traits",
|
|
2522
|
+
]
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "nom"
|
|
2526
|
+
version = "7.1.3"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"memchr",
|
|
2531
|
+
"minimal-lexical",
|
|
2532
|
+
]
|
|
2533
|
+
|
|
2534
|
+
[[package]]
|
|
2535
|
+
name = "nu-ansi-term"
|
|
2536
|
+
version = "0.46.0"
|
|
2537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2538
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
2539
|
+
dependencies = [
|
|
2540
|
+
"overload",
|
|
2541
|
+
"winapi",
|
|
2542
|
+
]
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "num"
|
|
2546
|
+
version = "0.4.3"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
2549
|
+
dependencies = [
|
|
2550
|
+
"num-bigint",
|
|
2551
|
+
"num-complex",
|
|
2552
|
+
"num-integer",
|
|
2553
|
+
"num-iter",
|
|
2554
|
+
"num-rational",
|
|
2555
|
+
"num-traits",
|
|
2556
|
+
]
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "num-bigint"
|
|
2560
|
+
version = "0.4.6"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"num-integer",
|
|
2565
|
+
"num-traits",
|
|
2566
|
+
]
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "num-complex"
|
|
2570
|
+
version = "0.4.6"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"num-traits",
|
|
2575
|
+
]
|
|
2576
|
+
|
|
2577
|
+
[[package]]
|
|
2578
|
+
name = "num-integer"
|
|
2579
|
+
version = "0.1.46"
|
|
2580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2581
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2582
|
+
dependencies = [
|
|
2583
|
+
"num-traits",
|
|
2584
|
+
]
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "num-iter"
|
|
2588
|
+
version = "0.1.45"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2591
|
+
dependencies = [
|
|
2592
|
+
"autocfg",
|
|
2593
|
+
"num-integer",
|
|
2594
|
+
"num-traits",
|
|
2595
|
+
]
|
|
2596
|
+
|
|
2597
|
+
[[package]]
|
|
2598
|
+
name = "num-rational"
|
|
2599
|
+
version = "0.4.2"
|
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
2602
|
+
dependencies = [
|
|
2603
|
+
"num-bigint",
|
|
2604
|
+
"num-integer",
|
|
2605
|
+
"num-traits",
|
|
2606
|
+
]
|
|
2607
|
+
|
|
2608
|
+
[[package]]
|
|
2609
|
+
name = "num-traits"
|
|
2610
|
+
version = "0.2.19"
|
|
2611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2612
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2613
|
+
dependencies = [
|
|
2614
|
+
"autocfg",
|
|
2615
|
+
]
|
|
2616
|
+
|
|
2617
|
+
[[package]]
|
|
2618
|
+
name = "num_cpus"
|
|
2619
|
+
version = "1.16.0"
|
|
2620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2621
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
2622
|
+
dependencies = [
|
|
2623
|
+
"hermit-abi 0.3.4",
|
|
2624
|
+
"libc",
|
|
2625
|
+
]
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "num_enum"
|
|
2629
|
+
version = "0.5.11"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
|
|
2632
|
+
dependencies = [
|
|
2633
|
+
"num_enum_derive 0.5.11",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "num_enum"
|
|
2638
|
+
version = "0.6.1"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"num_enum_derive 0.6.1",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "num_enum_derive"
|
|
2647
|
+
version = "0.5.11"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"proc-macro-crate",
|
|
2652
|
+
"proc-macro2",
|
|
2653
|
+
"quote",
|
|
2654
|
+
"syn 1.0.109",
|
|
2655
|
+
]
|
|
2656
|
+
|
|
2657
|
+
[[package]]
|
|
2658
|
+
name = "num_enum_derive"
|
|
2659
|
+
version = "0.6.1"
|
|
2660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2661
|
+
checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6"
|
|
2662
|
+
dependencies = [
|
|
2663
|
+
"proc-macro-crate",
|
|
2664
|
+
"proc-macro2",
|
|
2665
|
+
"quote",
|
|
2666
|
+
"syn 2.0.48",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "numpy"
|
|
2671
|
+
version = "0.21.0"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"libc",
|
|
2676
|
+
"ndarray",
|
|
2677
|
+
"num-complex",
|
|
2678
|
+
"num-integer",
|
|
2679
|
+
"num-traits",
|
|
2680
|
+
"pyo3",
|
|
2681
|
+
"rustc-hash",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "objc"
|
|
2686
|
+
version = "0.2.7"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"malloc_buf",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "objc-foundation"
|
|
2695
|
+
version = "0.1.1"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"block",
|
|
2700
|
+
"objc",
|
|
2701
|
+
"objc_id",
|
|
2702
|
+
]
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "objc-sys"
|
|
2706
|
+
version = "0.2.0-beta.2"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7"
|
|
2709
|
+
|
|
2710
|
+
[[package]]
|
|
2711
|
+
name = "objc2"
|
|
2712
|
+
version = "0.3.0-beta.3"
|
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
+
checksum = "fe31e5425d3d0b89a15982c024392815da40689aceb34bad364d58732bcfd649"
|
|
2715
|
+
dependencies = [
|
|
2716
|
+
"block2",
|
|
2717
|
+
"objc-sys",
|
|
2718
|
+
"objc2-encode",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "objc2-encode"
|
|
2723
|
+
version = "2.0.0-pre.2"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512"
|
|
2726
|
+
dependencies = [
|
|
2727
|
+
"objc-sys",
|
|
2728
|
+
]
|
|
2729
|
+
|
|
2730
|
+
[[package]]
|
|
2731
|
+
name = "objc_id"
|
|
2732
|
+
version = "0.1.1"
|
|
2733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2734
|
+
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
|
|
2735
|
+
dependencies = [
|
|
2736
|
+
"objc",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "object"
|
|
2741
|
+
version = "0.32.2"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
2744
|
+
dependencies = [
|
|
2745
|
+
"memchr",
|
|
2746
|
+
]
|
|
2747
|
+
|
|
2748
|
+
[[package]]
|
|
2749
|
+
name = "once_cell"
|
|
2750
|
+
version = "1.19.0"
|
|
2751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
2753
|
+
|
|
2754
|
+
[[package]]
|
|
2755
|
+
name = "oorandom"
|
|
2756
|
+
version = "11.1.3"
|
|
2757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
+
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
|
2759
|
+
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "openssl"
|
|
2762
|
+
version = "0.10.64"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
|
|
2765
|
+
dependencies = [
|
|
2766
|
+
"bitflags 2.4.2",
|
|
2767
|
+
"cfg-if 1.0.0",
|
|
2768
|
+
"foreign-types",
|
|
2769
|
+
"libc",
|
|
2770
|
+
"once_cell",
|
|
2771
|
+
"openssl-macros",
|
|
2772
|
+
"openssl-sys",
|
|
2773
|
+
]
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "openssl-macros"
|
|
2777
|
+
version = "0.1.1"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
2780
|
+
dependencies = [
|
|
2781
|
+
"proc-macro2",
|
|
2782
|
+
"quote",
|
|
2783
|
+
"syn 2.0.48",
|
|
2784
|
+
]
|
|
2785
|
+
|
|
2786
|
+
[[package]]
|
|
2787
|
+
name = "openssl-probe"
|
|
2788
|
+
version = "0.1.5"
|
|
2789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2790
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "openssl-sys"
|
|
2794
|
+
version = "0.9.102"
|
|
2795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
+
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
|
|
2797
|
+
dependencies = [
|
|
2798
|
+
"cc",
|
|
2799
|
+
"libc",
|
|
2800
|
+
"pkg-config",
|
|
2801
|
+
"vcpkg",
|
|
2802
|
+
]
|
|
2803
|
+
|
|
2804
|
+
[[package]]
|
|
2805
|
+
name = "orbclient"
|
|
2806
|
+
version = "0.3.47"
|
|
2807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
+
checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166"
|
|
2809
|
+
dependencies = [
|
|
2810
|
+
"libredox",
|
|
2811
|
+
]
|
|
2812
|
+
|
|
2813
|
+
[[package]]
|
|
2814
|
+
name = "ordered-stream"
|
|
2815
|
+
version = "0.2.0"
|
|
2816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
|
+
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
|
|
2818
|
+
dependencies = [
|
|
2819
|
+
"futures-core",
|
|
2820
|
+
"pin-project-lite",
|
|
2821
|
+
]
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "os_str_bytes"
|
|
2825
|
+
version = "6.6.1"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "overload"
|
|
2831
|
+
version = "0.1.1"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
2834
|
+
|
|
2835
|
+
[[package]]
|
|
2836
|
+
name = "owned_ttf_parser"
|
|
2837
|
+
version = "0.20.0"
|
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
+
checksum = "d4586edfe4c648c71797a74c84bacb32b52b212eff5dfe2bb9f2c599844023e7"
|
|
2840
|
+
dependencies = [
|
|
2841
|
+
"ttf-parser",
|
|
2842
|
+
]
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "page_size"
|
|
2846
|
+
version = "0.5.0"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "1b7663cbd190cfd818d08efa8497f6cd383076688c49a391ef7c0d03cd12b561"
|
|
2849
|
+
dependencies = [
|
|
2850
|
+
"libc",
|
|
2851
|
+
"winapi",
|
|
2852
|
+
]
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "parking"
|
|
2856
|
+
version = "2.2.0"
|
|
2857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
+
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "parking_lot"
|
|
2862
|
+
version = "0.12.1"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
2865
|
+
dependencies = [
|
|
2866
|
+
"lock_api",
|
|
2867
|
+
"parking_lot_core",
|
|
2868
|
+
]
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "parking_lot_core"
|
|
2872
|
+
version = "0.9.9"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
2875
|
+
dependencies = [
|
|
2876
|
+
"cfg-if 1.0.0",
|
|
2877
|
+
"libc",
|
|
2878
|
+
"redox_syscall 0.4.1",
|
|
2879
|
+
"smallvec",
|
|
2880
|
+
"windows-targets 0.48.5",
|
|
2881
|
+
]
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "paste"
|
|
2885
|
+
version = "1.0.14"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
|
|
2888
|
+
|
|
2889
|
+
[[package]]
|
|
2890
|
+
name = "peeking_take_while"
|
|
2891
|
+
version = "0.1.2"
|
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "percent-encoding"
|
|
2897
|
+
version = "2.3.1"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2900
|
+
|
|
2901
|
+
[[package]]
|
|
2902
|
+
name = "pin-project-lite"
|
|
2903
|
+
version = "0.2.13"
|
|
2904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2905
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
|
2906
|
+
|
|
2907
|
+
[[package]]
|
|
2908
|
+
name = "pin-utils"
|
|
2909
|
+
version = "0.1.0"
|
|
2910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2912
|
+
|
|
2913
|
+
[[package]]
|
|
2914
|
+
name = "piper"
|
|
2915
|
+
version = "0.2.1"
|
|
2916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2917
|
+
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
|
|
2918
|
+
dependencies = [
|
|
2919
|
+
"atomic-waker",
|
|
2920
|
+
"fastrand 2.0.1",
|
|
2921
|
+
"futures-io",
|
|
2922
|
+
]
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "pkg-config"
|
|
2926
|
+
version = "0.3.29"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb"
|
|
2929
|
+
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "playegui"
|
|
2932
|
+
version = "0.1.0"
|
|
2933
|
+
dependencies = [
|
|
2934
|
+
"bs_sys",
|
|
2935
|
+
"crossbeam",
|
|
2936
|
+
"eframe",
|
|
2937
|
+
"egui",
|
|
2938
|
+
"egui_extras",
|
|
2939
|
+
"futures-util",
|
|
2940
|
+
"image",
|
|
2941
|
+
"log",
|
|
2942
|
+
"ndarray",
|
|
2943
|
+
"ndarray-stats",
|
|
2944
|
+
"rayon",
|
|
2945
|
+
"serde",
|
|
2946
|
+
"serde_json",
|
|
2947
|
+
"tokio",
|
|
2948
|
+
"tokio-tungstenite",
|
|
2949
|
+
"tracing-subscriber",
|
|
2950
|
+
"tungstenite",
|
|
2951
|
+
"url",
|
|
2952
|
+
]
|
|
2953
|
+
|
|
2954
|
+
[[package]]
|
|
2955
|
+
name = "plotters"
|
|
2956
|
+
version = "0.3.6"
|
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
+
checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3"
|
|
2959
|
+
dependencies = [
|
|
2960
|
+
"num-traits",
|
|
2961
|
+
"plotters-backend",
|
|
2962
|
+
"plotters-svg",
|
|
2963
|
+
"wasm-bindgen",
|
|
2964
|
+
"web-sys",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "plotters-backend"
|
|
2969
|
+
version = "0.3.6"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7"
|
|
2972
|
+
|
|
2973
|
+
[[package]]
|
|
2974
|
+
name = "plotters-svg"
|
|
2975
|
+
version = "0.3.6"
|
|
2976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
+
checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705"
|
|
2978
|
+
dependencies = [
|
|
2979
|
+
"plotters-backend",
|
|
2980
|
+
]
|
|
2981
|
+
|
|
2982
|
+
[[package]]
|
|
2983
|
+
name = "png"
|
|
2984
|
+
version = "0.17.11"
|
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
+
checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a"
|
|
2987
|
+
dependencies = [
|
|
2988
|
+
"bitflags 1.3.2",
|
|
2989
|
+
"crc32fast",
|
|
2990
|
+
"fdeflate",
|
|
2991
|
+
"flate2",
|
|
2992
|
+
"miniz_oxide",
|
|
2993
|
+
]
|
|
2994
|
+
|
|
2995
|
+
[[package]]
|
|
2996
|
+
name = "polling"
|
|
2997
|
+
version = "2.8.0"
|
|
2998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
+
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
|
|
3000
|
+
dependencies = [
|
|
3001
|
+
"autocfg",
|
|
3002
|
+
"bitflags 1.3.2",
|
|
3003
|
+
"cfg-if 1.0.0",
|
|
3004
|
+
"concurrent-queue",
|
|
3005
|
+
"libc",
|
|
3006
|
+
"log",
|
|
3007
|
+
"pin-project-lite",
|
|
3008
|
+
"windows-sys 0.48.0",
|
|
3009
|
+
]
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "polling"
|
|
3013
|
+
version = "3.3.2"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41"
|
|
3016
|
+
dependencies = [
|
|
3017
|
+
"cfg-if 1.0.0",
|
|
3018
|
+
"concurrent-queue",
|
|
3019
|
+
"pin-project-lite",
|
|
3020
|
+
"rustix 0.38.31",
|
|
3021
|
+
"tracing",
|
|
3022
|
+
"windows-sys 0.52.0",
|
|
3023
|
+
]
|
|
3024
|
+
|
|
3025
|
+
[[package]]
|
|
3026
|
+
name = "portable-atomic"
|
|
3027
|
+
version = "1.6.0"
|
|
3028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
3030
|
+
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "ppv-lite86"
|
|
3033
|
+
version = "0.2.17"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
3036
|
+
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "proc-macro-crate"
|
|
3039
|
+
version = "1.3.1"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
3042
|
+
dependencies = [
|
|
3043
|
+
"once_cell",
|
|
3044
|
+
"toml_edit 0.19.15",
|
|
3045
|
+
]
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "proc-macro-error"
|
|
3049
|
+
version = "1.0.4"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
3052
|
+
dependencies = [
|
|
3053
|
+
"proc-macro-error-attr",
|
|
3054
|
+
"proc-macro2",
|
|
3055
|
+
"quote",
|
|
3056
|
+
"syn 1.0.109",
|
|
3057
|
+
"version_check",
|
|
3058
|
+
]
|
|
3059
|
+
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "proc-macro-error-attr"
|
|
3062
|
+
version = "1.0.4"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
3065
|
+
dependencies = [
|
|
3066
|
+
"proc-macro2",
|
|
3067
|
+
"quote",
|
|
3068
|
+
"version_check",
|
|
3069
|
+
]
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "proc-macro2"
|
|
3073
|
+
version = "1.0.78"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
|
|
3076
|
+
dependencies = [
|
|
3077
|
+
"unicode-ident",
|
|
3078
|
+
]
|
|
3079
|
+
|
|
3080
|
+
[[package]]
|
|
3081
|
+
name = "pyo3"
|
|
3082
|
+
version = "0.21.2"
|
|
3083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
3085
|
+
dependencies = [
|
|
3086
|
+
"cfg-if 1.0.0",
|
|
3087
|
+
"indoc",
|
|
3088
|
+
"libc",
|
|
3089
|
+
"memoffset 0.9.0",
|
|
3090
|
+
"parking_lot",
|
|
3091
|
+
"portable-atomic",
|
|
3092
|
+
"pyo3-build-config",
|
|
3093
|
+
"pyo3-ffi",
|
|
3094
|
+
"pyo3-macros",
|
|
3095
|
+
"unindent",
|
|
3096
|
+
]
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "pyo3-build-config"
|
|
3100
|
+
version = "0.21.2"
|
|
3101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
3103
|
+
dependencies = [
|
|
3104
|
+
"once_cell",
|
|
3105
|
+
"target-lexicon",
|
|
3106
|
+
]
|
|
3107
|
+
|
|
3108
|
+
[[package]]
|
|
3109
|
+
name = "pyo3-ffi"
|
|
3110
|
+
version = "0.21.2"
|
|
3111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
3113
|
+
dependencies = [
|
|
3114
|
+
"libc",
|
|
3115
|
+
"pyo3-build-config",
|
|
3116
|
+
]
|
|
3117
|
+
|
|
3118
|
+
[[package]]
|
|
3119
|
+
name = "pyo3-macros"
|
|
3120
|
+
version = "0.21.2"
|
|
3121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3122
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
3123
|
+
dependencies = [
|
|
3124
|
+
"proc-macro2",
|
|
3125
|
+
"pyo3-macros-backend",
|
|
3126
|
+
"quote",
|
|
3127
|
+
"syn 2.0.48",
|
|
3128
|
+
]
|
|
3129
|
+
|
|
3130
|
+
[[package]]
|
|
3131
|
+
name = "pyo3-macros-backend"
|
|
3132
|
+
version = "0.21.2"
|
|
3133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3134
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
3135
|
+
dependencies = [
|
|
3136
|
+
"heck",
|
|
3137
|
+
"proc-macro2",
|
|
3138
|
+
"pyo3-build-config",
|
|
3139
|
+
"quote",
|
|
3140
|
+
"syn 2.0.48",
|
|
3141
|
+
]
|
|
3142
|
+
|
|
3143
|
+
[[package]]
|
|
3144
|
+
name = "qoi"
|
|
3145
|
+
version = "0.4.1"
|
|
3146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3147
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
3148
|
+
dependencies = [
|
|
3149
|
+
"bytemuck",
|
|
3150
|
+
]
|
|
3151
|
+
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "quote"
|
|
3154
|
+
version = "1.0.35"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
|
3157
|
+
dependencies = [
|
|
3158
|
+
"proc-macro2",
|
|
3159
|
+
]
|
|
3160
|
+
|
|
3161
|
+
[[package]]
|
|
3162
|
+
name = "rand"
|
|
3163
|
+
version = "0.8.5"
|
|
3164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3165
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
3166
|
+
dependencies = [
|
|
3167
|
+
"libc",
|
|
3168
|
+
"rand_chacha",
|
|
3169
|
+
"rand_core",
|
|
3170
|
+
]
|
|
3171
|
+
|
|
3172
|
+
[[package]]
|
|
3173
|
+
name = "rand_chacha"
|
|
3174
|
+
version = "0.3.1"
|
|
3175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
3177
|
+
dependencies = [
|
|
3178
|
+
"ppv-lite86",
|
|
3179
|
+
"rand_core",
|
|
3180
|
+
]
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "rand_core"
|
|
3184
|
+
version = "0.6.4"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
3187
|
+
dependencies = [
|
|
3188
|
+
"getrandom",
|
|
3189
|
+
]
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "raw-window-handle"
|
|
3193
|
+
version = "0.5.2"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
|
|
3196
|
+
|
|
3197
|
+
[[package]]
|
|
3198
|
+
name = "raw_sync"
|
|
3199
|
+
version = "0.1.5"
|
|
3200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3201
|
+
checksum = "2a34bde3561f980a51c70495164200569a11662644fe5af017f0b5d7015688cc"
|
|
3202
|
+
dependencies = [
|
|
3203
|
+
"cfg-if 0.1.10",
|
|
3204
|
+
"libc",
|
|
3205
|
+
"nix 0.27.1",
|
|
3206
|
+
"rand",
|
|
3207
|
+
"winapi",
|
|
3208
|
+
]
|
|
3209
|
+
|
|
3210
|
+
[[package]]
|
|
3211
|
+
name = "rawpointer"
|
|
3212
|
+
version = "0.2.1"
|
|
3213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3214
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
3215
|
+
|
|
3216
|
+
[[package]]
|
|
3217
|
+
name = "rayon"
|
|
3218
|
+
version = "1.8.1"
|
|
3219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3220
|
+
checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
|
|
3221
|
+
dependencies = [
|
|
3222
|
+
"either",
|
|
3223
|
+
"rayon-core",
|
|
3224
|
+
]
|
|
3225
|
+
|
|
3226
|
+
[[package]]
|
|
3227
|
+
name = "rayon-core"
|
|
3228
|
+
version = "1.12.1"
|
|
3229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
3231
|
+
dependencies = [
|
|
3232
|
+
"crossbeam-deque",
|
|
3233
|
+
"crossbeam-utils",
|
|
3234
|
+
]
|
|
3235
|
+
|
|
3236
|
+
[[package]]
|
|
3237
|
+
name = "redox_syscall"
|
|
3238
|
+
version = "0.3.5"
|
|
3239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
3241
|
+
dependencies = [
|
|
3242
|
+
"bitflags 1.3.2",
|
|
3243
|
+
]
|
|
3244
|
+
|
|
3245
|
+
[[package]]
|
|
3246
|
+
name = "redox_syscall"
|
|
3247
|
+
version = "0.4.1"
|
|
3248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3249
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
3250
|
+
dependencies = [
|
|
3251
|
+
"bitflags 1.3.2",
|
|
3252
|
+
]
|
|
3253
|
+
|
|
3254
|
+
[[package]]
|
|
3255
|
+
name = "regex"
|
|
3256
|
+
version = "1.10.3"
|
|
3257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
|
+
checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
|
|
3259
|
+
dependencies = [
|
|
3260
|
+
"aho-corasick",
|
|
3261
|
+
"memchr",
|
|
3262
|
+
"regex-automata",
|
|
3263
|
+
"regex-syntax",
|
|
3264
|
+
]
|
|
3265
|
+
|
|
3266
|
+
[[package]]
|
|
3267
|
+
name = "regex-automata"
|
|
3268
|
+
version = "0.4.5"
|
|
3269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3270
|
+
checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
|
|
3271
|
+
dependencies = [
|
|
3272
|
+
"aho-corasick",
|
|
3273
|
+
"memchr",
|
|
3274
|
+
"regex-syntax",
|
|
3275
|
+
]
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "regex-syntax"
|
|
3279
|
+
version = "0.8.2"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
3282
|
+
|
|
3283
|
+
[[package]]
|
|
3284
|
+
name = "reqwest"
|
|
3285
|
+
version = "0.11.27"
|
|
3286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
3288
|
+
dependencies = [
|
|
3289
|
+
"base64 0.21.7",
|
|
3290
|
+
"bytes",
|
|
3291
|
+
"encoding_rs",
|
|
3292
|
+
"futures-core",
|
|
3293
|
+
"futures-util",
|
|
3294
|
+
"h2",
|
|
3295
|
+
"http",
|
|
3296
|
+
"http-body",
|
|
3297
|
+
"hyper",
|
|
3298
|
+
"hyper-tls",
|
|
3299
|
+
"ipnet",
|
|
3300
|
+
"js-sys",
|
|
3301
|
+
"log",
|
|
3302
|
+
"mime",
|
|
3303
|
+
"native-tls",
|
|
3304
|
+
"once_cell",
|
|
3305
|
+
"percent-encoding",
|
|
3306
|
+
"pin-project-lite",
|
|
3307
|
+
"rustls-pemfile",
|
|
3308
|
+
"serde",
|
|
3309
|
+
"serde_json",
|
|
3310
|
+
"serde_urlencoded",
|
|
3311
|
+
"sync_wrapper",
|
|
3312
|
+
"system-configuration",
|
|
3313
|
+
"tokio",
|
|
3314
|
+
"tokio-native-tls",
|
|
3315
|
+
"tower-service",
|
|
3316
|
+
"url",
|
|
3317
|
+
"wasm-bindgen",
|
|
3318
|
+
"wasm-bindgen-futures",
|
|
3319
|
+
"web-sys",
|
|
3320
|
+
"winreg",
|
|
3321
|
+
]
|
|
3322
|
+
|
|
3323
|
+
[[package]]
|
|
3324
|
+
name = "rustc-demangle"
|
|
3325
|
+
version = "0.1.23"
|
|
3326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
3328
|
+
|
|
3329
|
+
[[package]]
|
|
3330
|
+
name = "rustc-hash"
|
|
3331
|
+
version = "1.1.0"
|
|
3332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
3334
|
+
|
|
3335
|
+
[[package]]
|
|
3336
|
+
name = "rustix"
|
|
3337
|
+
version = "0.37.27"
|
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
+
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
|
|
3340
|
+
dependencies = [
|
|
3341
|
+
"bitflags 1.3.2",
|
|
3342
|
+
"errno",
|
|
3343
|
+
"io-lifetimes",
|
|
3344
|
+
"libc",
|
|
3345
|
+
"linux-raw-sys 0.3.8",
|
|
3346
|
+
"windows-sys 0.48.0",
|
|
3347
|
+
]
|
|
3348
|
+
|
|
3349
|
+
[[package]]
|
|
3350
|
+
name = "rustix"
|
|
3351
|
+
version = "0.38.31"
|
|
3352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3353
|
+
checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
|
|
3354
|
+
dependencies = [
|
|
3355
|
+
"bitflags 2.4.2",
|
|
3356
|
+
"errno",
|
|
3357
|
+
"libc",
|
|
3358
|
+
"linux-raw-sys 0.4.13",
|
|
3359
|
+
"windows-sys 0.52.0",
|
|
3360
|
+
]
|
|
3361
|
+
|
|
3362
|
+
[[package]]
|
|
3363
|
+
name = "rustls-pemfile"
|
|
3364
|
+
version = "1.0.4"
|
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
3367
|
+
dependencies = [
|
|
3368
|
+
"base64 0.21.7",
|
|
3369
|
+
]
|
|
3370
|
+
|
|
3371
|
+
[[package]]
|
|
3372
|
+
name = "ryu"
|
|
3373
|
+
version = "1.0.16"
|
|
3374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
|
3376
|
+
|
|
3377
|
+
[[package]]
|
|
3378
|
+
name = "same-file"
|
|
3379
|
+
version = "1.0.6"
|
|
3380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3382
|
+
dependencies = [
|
|
3383
|
+
"winapi-util",
|
|
3384
|
+
]
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "schannel"
|
|
3388
|
+
version = "0.1.23"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
3391
|
+
dependencies = [
|
|
3392
|
+
"windows-sys 0.52.0",
|
|
3393
|
+
]
|
|
3394
|
+
|
|
3395
|
+
[[package]]
|
|
3396
|
+
name = "scoped-tls"
|
|
3397
|
+
version = "1.0.1"
|
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "scopeguard"
|
|
3403
|
+
version = "1.2.0"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3406
|
+
|
|
3407
|
+
[[package]]
|
|
3408
|
+
name = "sctk-adwaita"
|
|
3409
|
+
version = "0.5.4"
|
|
3410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
+
checksum = "cda4e97be1fd174ccc2aae81c8b694e803fa99b34e8fd0f057a9d70698e3ed09"
|
|
3412
|
+
dependencies = [
|
|
3413
|
+
"ab_glyph",
|
|
3414
|
+
"log",
|
|
3415
|
+
"memmap2",
|
|
3416
|
+
"smithay-client-toolkit",
|
|
3417
|
+
"tiny-skia",
|
|
3418
|
+
]
|
|
3419
|
+
|
|
3420
|
+
[[package]]
|
|
3421
|
+
name = "security-framework"
|
|
3422
|
+
version = "2.10.0"
|
|
3423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3424
|
+
checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6"
|
|
3425
|
+
dependencies = [
|
|
3426
|
+
"bitflags 1.3.2",
|
|
3427
|
+
"core-foundation",
|
|
3428
|
+
"core-foundation-sys",
|
|
3429
|
+
"libc",
|
|
3430
|
+
"security-framework-sys",
|
|
3431
|
+
]
|
|
3432
|
+
|
|
3433
|
+
[[package]]
|
|
3434
|
+
name = "security-framework-sys"
|
|
3435
|
+
version = "2.10.0"
|
|
3436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
|
+
checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef"
|
|
3438
|
+
dependencies = [
|
|
3439
|
+
"core-foundation-sys",
|
|
3440
|
+
"libc",
|
|
3441
|
+
]
|
|
3442
|
+
|
|
3443
|
+
[[package]]
|
|
3444
|
+
name = "sendfd"
|
|
3445
|
+
version = "0.4.3"
|
|
3446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3447
|
+
checksum = "604b71b8fc267e13bb3023a2c901126c8f349393666a6d98ac1ae5729b701798"
|
|
3448
|
+
dependencies = [
|
|
3449
|
+
"libc",
|
|
3450
|
+
]
|
|
3451
|
+
|
|
3452
|
+
[[package]]
|
|
3453
|
+
name = "serde"
|
|
3454
|
+
version = "1.0.199"
|
|
3455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3456
|
+
checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a"
|
|
3457
|
+
dependencies = [
|
|
3458
|
+
"serde_derive",
|
|
3459
|
+
]
|
|
3460
|
+
|
|
3461
|
+
[[package]]
|
|
3462
|
+
name = "serde-xml-rs"
|
|
3463
|
+
version = "0.4.1"
|
|
3464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3465
|
+
checksum = "f0bf1ba0696ccf0872866277143ff1fd14d22eec235d2b23702f95e6660f7dfa"
|
|
3466
|
+
dependencies = [
|
|
3467
|
+
"log",
|
|
3468
|
+
"serde",
|
|
3469
|
+
"thiserror",
|
|
3470
|
+
"xml-rs",
|
|
3471
|
+
]
|
|
3472
|
+
|
|
3473
|
+
[[package]]
|
|
3474
|
+
name = "serde_derive"
|
|
3475
|
+
version = "1.0.199"
|
|
3476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
|
+
checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc"
|
|
3478
|
+
dependencies = [
|
|
3479
|
+
"proc-macro2",
|
|
3480
|
+
"quote",
|
|
3481
|
+
"syn 2.0.48",
|
|
3482
|
+
]
|
|
3483
|
+
|
|
3484
|
+
[[package]]
|
|
3485
|
+
name = "serde_json"
|
|
3486
|
+
version = "1.0.113"
|
|
3487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
+
checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
|
|
3489
|
+
dependencies = [
|
|
3490
|
+
"itoa",
|
|
3491
|
+
"ryu",
|
|
3492
|
+
"serde",
|
|
3493
|
+
]
|
|
3494
|
+
|
|
3495
|
+
[[package]]
|
|
3496
|
+
name = "serde_repr"
|
|
3497
|
+
version = "0.1.18"
|
|
3498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
+
checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb"
|
|
3500
|
+
dependencies = [
|
|
3501
|
+
"proc-macro2",
|
|
3502
|
+
"quote",
|
|
3503
|
+
"syn 2.0.48",
|
|
3504
|
+
]
|
|
3505
|
+
|
|
3506
|
+
[[package]]
|
|
3507
|
+
name = "serde_spanned"
|
|
3508
|
+
version = "0.6.5"
|
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
+
checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
|
|
3511
|
+
dependencies = [
|
|
3512
|
+
"serde",
|
|
3513
|
+
]
|
|
3514
|
+
|
|
3515
|
+
[[package]]
|
|
3516
|
+
name = "serde_urlencoded"
|
|
3517
|
+
version = "0.7.1"
|
|
3518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3519
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3520
|
+
dependencies = [
|
|
3521
|
+
"form_urlencoded",
|
|
3522
|
+
"itoa",
|
|
3523
|
+
"ryu",
|
|
3524
|
+
"serde",
|
|
3525
|
+
]
|
|
3526
|
+
|
|
3527
|
+
[[package]]
|
|
3528
|
+
name = "serval-client"
|
|
3529
|
+
version = "0.1.0"
|
|
3530
|
+
dependencies = [
|
|
3531
|
+
"reqwest",
|
|
3532
|
+
"serde",
|
|
3533
|
+
"serde_json",
|
|
3534
|
+
"url",
|
|
3535
|
+
]
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "sha1"
|
|
3539
|
+
version = "0.10.6"
|
|
3540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3542
|
+
dependencies = [
|
|
3543
|
+
"cfg-if 1.0.0",
|
|
3544
|
+
"cpufeatures",
|
|
3545
|
+
"digest",
|
|
3546
|
+
]
|
|
3547
|
+
|
|
3548
|
+
[[package]]
|
|
3549
|
+
name = "sharded-slab"
|
|
3550
|
+
version = "0.1.7"
|
|
3551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3553
|
+
dependencies = [
|
|
3554
|
+
"lazy_static",
|
|
3555
|
+
]
|
|
3556
|
+
|
|
3557
|
+
[[package]]
|
|
3558
|
+
name = "shared_memory"
|
|
3559
|
+
version = "0.12.4"
|
|
3560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3561
|
+
checksum = "ba8593196da75d9dc4f69349682bd4c2099f8cde114257d1ef7ef1b33d1aba54"
|
|
3562
|
+
dependencies = [
|
|
3563
|
+
"cfg-if 1.0.0",
|
|
3564
|
+
"libc",
|
|
3565
|
+
"nix 0.23.2",
|
|
3566
|
+
"rand",
|
|
3567
|
+
"win-sys",
|
|
3568
|
+
]
|
|
3569
|
+
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "shlex"
|
|
3572
|
+
version = "1.3.0"
|
|
3573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3575
|
+
|
|
3576
|
+
[[package]]
|
|
3577
|
+
name = "signal-hook-registry"
|
|
3578
|
+
version = "1.4.1"
|
|
3579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3580
|
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
|
3581
|
+
dependencies = [
|
|
3582
|
+
"libc",
|
|
3583
|
+
]
|
|
3584
|
+
|
|
3585
|
+
[[package]]
|
|
3586
|
+
name = "simd-adler32"
|
|
3587
|
+
version = "0.3.7"
|
|
3588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3589
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
3590
|
+
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "slab"
|
|
3593
|
+
version = "0.4.9"
|
|
3594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3596
|
+
dependencies = [
|
|
3597
|
+
"autocfg",
|
|
3598
|
+
]
|
|
3599
|
+
|
|
3600
|
+
[[package]]
|
|
3601
|
+
name = "slotmap"
|
|
3602
|
+
version = "1.0.7"
|
|
3603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
3605
|
+
dependencies = [
|
|
3606
|
+
"version_check",
|
|
3607
|
+
]
|
|
3608
|
+
|
|
3609
|
+
[[package]]
|
|
3610
|
+
name = "smallvec"
|
|
3611
|
+
version = "1.13.1"
|
|
3612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
+
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "smithay-client-toolkit"
|
|
3617
|
+
version = "0.16.1"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9"
|
|
3620
|
+
dependencies = [
|
|
3621
|
+
"bitflags 1.3.2",
|
|
3622
|
+
"calloop",
|
|
3623
|
+
"dlib",
|
|
3624
|
+
"lazy_static",
|
|
3625
|
+
"log",
|
|
3626
|
+
"memmap2",
|
|
3627
|
+
"nix 0.24.3",
|
|
3628
|
+
"pkg-config",
|
|
3629
|
+
"wayland-client",
|
|
3630
|
+
"wayland-cursor",
|
|
3631
|
+
"wayland-protocols",
|
|
3632
|
+
]
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "smithay-clipboard"
|
|
3636
|
+
version = "0.6.6"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8"
|
|
3639
|
+
dependencies = [
|
|
3640
|
+
"smithay-client-toolkit",
|
|
3641
|
+
"wayland-client",
|
|
3642
|
+
]
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "socket2"
|
|
3646
|
+
version = "0.4.10"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
|
|
3649
|
+
dependencies = [
|
|
3650
|
+
"libc",
|
|
3651
|
+
"winapi",
|
|
3652
|
+
]
|
|
3653
|
+
|
|
3654
|
+
[[package]]
|
|
3655
|
+
name = "socket2"
|
|
3656
|
+
version = "0.5.5"
|
|
3657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3658
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
|
3659
|
+
dependencies = [
|
|
3660
|
+
"libc",
|
|
3661
|
+
"windows-sys 0.48.0",
|
|
3662
|
+
]
|
|
3663
|
+
|
|
3664
|
+
[[package]]
|
|
3665
|
+
name = "spin"
|
|
3666
|
+
version = "0.9.8"
|
|
3667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3668
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3669
|
+
dependencies = [
|
|
3670
|
+
"lock_api",
|
|
3671
|
+
]
|
|
3672
|
+
|
|
3673
|
+
[[package]]
|
|
3674
|
+
name = "spin_sleep"
|
|
3675
|
+
version = "1.2.0"
|
|
3676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3677
|
+
checksum = "368a978649eaf70006b082e79c832bd72556ac1393eaf564d686e919dca2347f"
|
|
3678
|
+
dependencies = [
|
|
3679
|
+
"windows-sys 0.52.0",
|
|
3680
|
+
]
|
|
3681
|
+
|
|
3682
|
+
[[package]]
|
|
3683
|
+
name = "static_assertions"
|
|
3684
|
+
version = "1.1.0"
|
|
3685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3686
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "stats"
|
|
3690
|
+
version = "0.1.0"
|
|
3691
|
+
dependencies = [
|
|
3692
|
+
"log",
|
|
3693
|
+
]
|
|
3694
|
+
|
|
3695
|
+
[[package]]
|
|
3696
|
+
name = "str-buf"
|
|
3697
|
+
version = "1.0.6"
|
|
3698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
+
checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0"
|
|
3700
|
+
|
|
3701
|
+
[[package]]
|
|
3702
|
+
name = "strict-num"
|
|
3703
|
+
version = "0.1.1"
|
|
3704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3706
|
+
|
|
3707
|
+
[[package]]
|
|
3708
|
+
name = "strsim"
|
|
3709
|
+
version = "0.10.0"
|
|
3710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3711
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
3712
|
+
|
|
3713
|
+
[[package]]
|
|
3714
|
+
name = "syn"
|
|
3715
|
+
version = "1.0.109"
|
|
3716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3717
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3718
|
+
dependencies = [
|
|
3719
|
+
"proc-macro2",
|
|
3720
|
+
"quote",
|
|
3721
|
+
"unicode-ident",
|
|
3722
|
+
]
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "syn"
|
|
3726
|
+
version = "2.0.48"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"proc-macro2",
|
|
3731
|
+
"quote",
|
|
3732
|
+
"unicode-ident",
|
|
3733
|
+
]
|
|
3734
|
+
|
|
3735
|
+
[[package]]
|
|
3736
|
+
name = "sync_wrapper"
|
|
3737
|
+
version = "0.1.2"
|
|
3738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
3740
|
+
|
|
3741
|
+
[[package]]
|
|
3742
|
+
name = "system-configuration"
|
|
3743
|
+
version = "0.5.1"
|
|
3744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3745
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
3746
|
+
dependencies = [
|
|
3747
|
+
"bitflags 1.3.2",
|
|
3748
|
+
"core-foundation",
|
|
3749
|
+
"system-configuration-sys",
|
|
3750
|
+
]
|
|
3751
|
+
|
|
3752
|
+
[[package]]
|
|
3753
|
+
name = "system-configuration-sys"
|
|
3754
|
+
version = "0.5.0"
|
|
3755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
3757
|
+
dependencies = [
|
|
3758
|
+
"core-foundation-sys",
|
|
3759
|
+
"libc",
|
|
3760
|
+
]
|
|
3761
|
+
|
|
3762
|
+
[[package]]
|
|
3763
|
+
name = "system-deps"
|
|
3764
|
+
version = "6.2.0"
|
|
3765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
|
+
checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331"
|
|
3767
|
+
dependencies = [
|
|
3768
|
+
"cfg-expr",
|
|
3769
|
+
"heck",
|
|
3770
|
+
"pkg-config",
|
|
3771
|
+
"toml",
|
|
3772
|
+
"version-compare",
|
|
3773
|
+
]
|
|
3774
|
+
|
|
3775
|
+
[[package]]
|
|
3776
|
+
name = "target-features"
|
|
3777
|
+
version = "0.1.6"
|
|
3778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
+
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "target-lexicon"
|
|
3783
|
+
version = "0.12.13"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
|
|
3786
|
+
|
|
3787
|
+
[[package]]
|
|
3788
|
+
name = "tempfile"
|
|
3789
|
+
version = "3.10.1"
|
|
3790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
3792
|
+
dependencies = [
|
|
3793
|
+
"cfg-if 1.0.0",
|
|
3794
|
+
"fastrand 2.0.1",
|
|
3795
|
+
"rustix 0.38.31",
|
|
3796
|
+
"windows-sys 0.52.0",
|
|
3797
|
+
]
|
|
3798
|
+
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "termcolor"
|
|
3801
|
+
version = "1.4.1"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
3804
|
+
dependencies = [
|
|
3805
|
+
"winapi-util",
|
|
3806
|
+
]
|
|
3807
|
+
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "textwrap"
|
|
3810
|
+
version = "0.16.0"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "thiserror"
|
|
3816
|
+
version = "1.0.61"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
|
3819
|
+
dependencies = [
|
|
3820
|
+
"thiserror-impl",
|
|
3821
|
+
]
|
|
3822
|
+
|
|
3823
|
+
[[package]]
|
|
3824
|
+
name = "thiserror-impl"
|
|
3825
|
+
version = "1.0.61"
|
|
3826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
|
3828
|
+
dependencies = [
|
|
3829
|
+
"proc-macro2",
|
|
3830
|
+
"quote",
|
|
3831
|
+
"syn 2.0.48",
|
|
3832
|
+
]
|
|
3833
|
+
|
|
3834
|
+
[[package]]
|
|
3835
|
+
name = "thread_local"
|
|
3836
|
+
version = "1.1.7"
|
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
3839
|
+
dependencies = [
|
|
3840
|
+
"cfg-if 1.0.0",
|
|
3841
|
+
"once_cell",
|
|
3842
|
+
]
|
|
3843
|
+
|
|
3844
|
+
[[package]]
|
|
3845
|
+
name = "tiff"
|
|
3846
|
+
version = "0.9.1"
|
|
3847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
+
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
|
3849
|
+
dependencies = [
|
|
3850
|
+
"flate2",
|
|
3851
|
+
"jpeg-decoder",
|
|
3852
|
+
"weezl",
|
|
3853
|
+
]
|
|
3854
|
+
|
|
3855
|
+
[[package]]
|
|
3856
|
+
name = "tiny-skia"
|
|
3857
|
+
version = "0.8.4"
|
|
3858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
+
checksum = "df8493a203431061e901613751931f047d1971337153f96d0e5e363d6dbf6a67"
|
|
3860
|
+
dependencies = [
|
|
3861
|
+
"arrayref",
|
|
3862
|
+
"arrayvec",
|
|
3863
|
+
"bytemuck",
|
|
3864
|
+
"cfg-if 1.0.0",
|
|
3865
|
+
"png",
|
|
3866
|
+
"tiny-skia-path",
|
|
3867
|
+
]
|
|
3868
|
+
|
|
3869
|
+
[[package]]
|
|
3870
|
+
name = "tiny-skia-path"
|
|
3871
|
+
version = "0.8.4"
|
|
3872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3873
|
+
checksum = "adbfb5d3f3dd57a0e11d12f4f13d4ebbbc1b5c15b7ab0a156d030b21da5f677c"
|
|
3874
|
+
dependencies = [
|
|
3875
|
+
"arrayref",
|
|
3876
|
+
"bytemuck",
|
|
3877
|
+
"strict-num",
|
|
3878
|
+
]
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "tinytemplate"
|
|
3882
|
+
version = "1.2.1"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3885
|
+
dependencies = [
|
|
3886
|
+
"serde",
|
|
3887
|
+
"serde_json",
|
|
3888
|
+
]
|
|
3889
|
+
|
|
3890
|
+
[[package]]
|
|
3891
|
+
name = "tinyvec"
|
|
3892
|
+
version = "1.6.0"
|
|
3893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
3895
|
+
dependencies = [
|
|
3896
|
+
"tinyvec_macros",
|
|
3897
|
+
]
|
|
3898
|
+
|
|
3899
|
+
[[package]]
|
|
3900
|
+
name = "tinyvec_macros"
|
|
3901
|
+
version = "0.1.1"
|
|
3902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3903
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3904
|
+
|
|
3905
|
+
[[package]]
|
|
3906
|
+
name = "tokio"
|
|
3907
|
+
version = "1.38.1"
|
|
3908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3909
|
+
checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df"
|
|
3910
|
+
dependencies = [
|
|
3911
|
+
"backtrace",
|
|
3912
|
+
"bytes",
|
|
3913
|
+
"libc",
|
|
3914
|
+
"mio",
|
|
3915
|
+
"num_cpus",
|
|
3916
|
+
"pin-project-lite",
|
|
3917
|
+
"socket2 0.5.5",
|
|
3918
|
+
"windows-sys 0.48.0",
|
|
3919
|
+
]
|
|
3920
|
+
|
|
3921
|
+
[[package]]
|
|
3922
|
+
name = "tokio-native-tls"
|
|
3923
|
+
version = "0.3.1"
|
|
3924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3925
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
3926
|
+
dependencies = [
|
|
3927
|
+
"native-tls",
|
|
3928
|
+
"tokio",
|
|
3929
|
+
]
|
|
3930
|
+
|
|
3931
|
+
[[package]]
|
|
3932
|
+
name = "tokio-tungstenite"
|
|
3933
|
+
version = "0.18.0"
|
|
3934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
+
checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
|
|
3936
|
+
dependencies = [
|
|
3937
|
+
"futures-util",
|
|
3938
|
+
"log",
|
|
3939
|
+
"tokio",
|
|
3940
|
+
"tungstenite",
|
|
3941
|
+
]
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "tokio-util"
|
|
3945
|
+
version = "0.7.10"
|
|
3946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
|
3948
|
+
dependencies = [
|
|
3949
|
+
"bytes",
|
|
3950
|
+
"futures-core",
|
|
3951
|
+
"futures-sink",
|
|
3952
|
+
"pin-project-lite",
|
|
3953
|
+
"tokio",
|
|
3954
|
+
"tracing",
|
|
3955
|
+
]
|
|
3956
|
+
|
|
3957
|
+
[[package]]
|
|
3958
|
+
name = "toml"
|
|
3959
|
+
version = "0.8.9"
|
|
3960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3961
|
+
checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325"
|
|
3962
|
+
dependencies = [
|
|
3963
|
+
"serde",
|
|
3964
|
+
"serde_spanned",
|
|
3965
|
+
"toml_datetime",
|
|
3966
|
+
"toml_edit 0.21.1",
|
|
3967
|
+
]
|
|
3968
|
+
|
|
3969
|
+
[[package]]
|
|
3970
|
+
name = "toml_datetime"
|
|
3971
|
+
version = "0.6.5"
|
|
3972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3973
|
+
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
|
|
3974
|
+
dependencies = [
|
|
3975
|
+
"serde",
|
|
3976
|
+
]
|
|
3977
|
+
|
|
3978
|
+
[[package]]
|
|
3979
|
+
name = "toml_edit"
|
|
3980
|
+
version = "0.19.15"
|
|
3981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
+
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
3983
|
+
dependencies = [
|
|
3984
|
+
"indexmap 2.2.2",
|
|
3985
|
+
"toml_datetime",
|
|
3986
|
+
"winnow",
|
|
3987
|
+
]
|
|
3988
|
+
|
|
3989
|
+
[[package]]
|
|
3990
|
+
name = "toml_edit"
|
|
3991
|
+
version = "0.21.1"
|
|
3992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3993
|
+
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
|
|
3994
|
+
dependencies = [
|
|
3995
|
+
"indexmap 2.2.2",
|
|
3996
|
+
"serde",
|
|
3997
|
+
"serde_spanned",
|
|
3998
|
+
"toml_datetime",
|
|
3999
|
+
"winnow",
|
|
4000
|
+
]
|
|
4001
|
+
|
|
4002
|
+
[[package]]
|
|
4003
|
+
name = "tower-service"
|
|
4004
|
+
version = "0.3.2"
|
|
4005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4006
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
4007
|
+
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "tracing"
|
|
4010
|
+
version = "0.1.40"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"pin-project-lite",
|
|
4015
|
+
"tracing-attributes",
|
|
4016
|
+
"tracing-core",
|
|
4017
|
+
]
|
|
4018
|
+
|
|
4019
|
+
[[package]]
|
|
4020
|
+
name = "tracing-attributes"
|
|
4021
|
+
version = "0.1.27"
|
|
4022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4023
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
4024
|
+
dependencies = [
|
|
4025
|
+
"proc-macro2",
|
|
4026
|
+
"quote",
|
|
4027
|
+
"syn 2.0.48",
|
|
4028
|
+
]
|
|
4029
|
+
|
|
4030
|
+
[[package]]
|
|
4031
|
+
name = "tracing-core"
|
|
4032
|
+
version = "0.1.32"
|
|
4033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4034
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
4035
|
+
dependencies = [
|
|
4036
|
+
"once_cell",
|
|
4037
|
+
"valuable",
|
|
4038
|
+
]
|
|
4039
|
+
|
|
4040
|
+
[[package]]
|
|
4041
|
+
name = "tracing-log"
|
|
4042
|
+
version = "0.2.0"
|
|
4043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4044
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
4045
|
+
dependencies = [
|
|
4046
|
+
"log",
|
|
4047
|
+
"once_cell",
|
|
4048
|
+
"tracing-core",
|
|
4049
|
+
]
|
|
4050
|
+
|
|
4051
|
+
[[package]]
|
|
4052
|
+
name = "tracing-subscriber"
|
|
4053
|
+
version = "0.3.18"
|
|
4054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4055
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
4056
|
+
dependencies = [
|
|
4057
|
+
"nu-ansi-term",
|
|
4058
|
+
"sharded-slab",
|
|
4059
|
+
"smallvec",
|
|
4060
|
+
"thread_local",
|
|
4061
|
+
"tracing-core",
|
|
4062
|
+
"tracing-log",
|
|
4063
|
+
]
|
|
4064
|
+
|
|
4065
|
+
[[package]]
|
|
4066
|
+
name = "try-lock"
|
|
4067
|
+
version = "0.2.5"
|
|
4068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4070
|
+
|
|
4071
|
+
[[package]]
|
|
4072
|
+
name = "ttf-parser"
|
|
4073
|
+
version = "0.20.0"
|
|
4074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
+
checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
|
|
4076
|
+
|
|
4077
|
+
[[package]]
|
|
4078
|
+
name = "tungstenite"
|
|
4079
|
+
version = "0.18.0"
|
|
4080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4081
|
+
checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
|
|
4082
|
+
dependencies = [
|
|
4083
|
+
"base64 0.13.1",
|
|
4084
|
+
"byteorder",
|
|
4085
|
+
"bytes",
|
|
4086
|
+
"http",
|
|
4087
|
+
"httparse",
|
|
4088
|
+
"log",
|
|
4089
|
+
"rand",
|
|
4090
|
+
"sha1",
|
|
4091
|
+
"thiserror",
|
|
4092
|
+
"url",
|
|
4093
|
+
"utf-8",
|
|
4094
|
+
]
|
|
4095
|
+
|
|
4096
|
+
[[package]]
|
|
4097
|
+
name = "typenum"
|
|
4098
|
+
version = "1.17.0"
|
|
4099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4100
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
4101
|
+
|
|
4102
|
+
[[package]]
|
|
4103
|
+
name = "uds_windows"
|
|
4104
|
+
version = "1.1.0"
|
|
4105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4106
|
+
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
|
|
4107
|
+
dependencies = [
|
|
4108
|
+
"memoffset 0.9.0",
|
|
4109
|
+
"tempfile",
|
|
4110
|
+
"winapi",
|
|
4111
|
+
]
|
|
4112
|
+
|
|
4113
|
+
[[package]]
|
|
4114
|
+
name = "unicode-bidi"
|
|
4115
|
+
version = "0.3.15"
|
|
4116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4117
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
4118
|
+
|
|
4119
|
+
[[package]]
|
|
4120
|
+
name = "unicode-ident"
|
|
4121
|
+
version = "1.0.12"
|
|
4122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4123
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
4124
|
+
|
|
4125
|
+
[[package]]
|
|
4126
|
+
name = "unicode-normalization"
|
|
4127
|
+
version = "0.1.22"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
|
4130
|
+
dependencies = [
|
|
4131
|
+
"tinyvec",
|
|
4132
|
+
]
|
|
4133
|
+
|
|
4134
|
+
[[package]]
|
|
4135
|
+
name = "unindent"
|
|
4136
|
+
version = "0.2.3"
|
|
4137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4138
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
4139
|
+
|
|
4140
|
+
[[package]]
|
|
4141
|
+
name = "url"
|
|
4142
|
+
version = "2.5.0"
|
|
4143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4144
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
4145
|
+
dependencies = [
|
|
4146
|
+
"form_urlencoded",
|
|
4147
|
+
"idna",
|
|
4148
|
+
"percent-encoding",
|
|
4149
|
+
]
|
|
4150
|
+
|
|
4151
|
+
[[package]]
|
|
4152
|
+
name = "utf-8"
|
|
4153
|
+
version = "0.7.6"
|
|
4154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4155
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
4156
|
+
|
|
4157
|
+
[[package]]
|
|
4158
|
+
name = "utf8parse"
|
|
4159
|
+
version = "0.2.1"
|
|
4160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
4162
|
+
|
|
4163
|
+
[[package]]
|
|
4164
|
+
name = "uuid"
|
|
4165
|
+
version = "1.7.0"
|
|
4166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4167
|
+
checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
|
|
4168
|
+
dependencies = [
|
|
4169
|
+
"getrandom",
|
|
4170
|
+
"rand",
|
|
4171
|
+
]
|
|
4172
|
+
|
|
4173
|
+
[[package]]
|
|
4174
|
+
name = "valuable"
|
|
4175
|
+
version = "0.1.0"
|
|
4176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4177
|
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
4178
|
+
|
|
4179
|
+
[[package]]
|
|
4180
|
+
name = "vcpkg"
|
|
4181
|
+
version = "0.2.15"
|
|
4182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
4184
|
+
|
|
4185
|
+
[[package]]
|
|
4186
|
+
name = "vec_map"
|
|
4187
|
+
version = "0.8.2"
|
|
4188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4189
|
+
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
|
4190
|
+
|
|
4191
|
+
[[package]]
|
|
4192
|
+
name = "version-compare"
|
|
4193
|
+
version = "0.1.1"
|
|
4194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4195
|
+
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
|
|
4196
|
+
|
|
4197
|
+
[[package]]
|
|
4198
|
+
name = "version_check"
|
|
4199
|
+
version = "0.9.4"
|
|
4200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
4202
|
+
|
|
4203
|
+
[[package]]
|
|
4204
|
+
name = "waker-fn"
|
|
4205
|
+
version = "1.1.1"
|
|
4206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4207
|
+
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
|
|
4208
|
+
|
|
4209
|
+
[[package]]
|
|
4210
|
+
name = "walkdir"
|
|
4211
|
+
version = "2.4.0"
|
|
4212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4213
|
+
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
|
|
4214
|
+
dependencies = [
|
|
4215
|
+
"same-file",
|
|
4216
|
+
"winapi-util",
|
|
4217
|
+
]
|
|
4218
|
+
|
|
4219
|
+
[[package]]
|
|
4220
|
+
name = "want"
|
|
4221
|
+
version = "0.3.1"
|
|
4222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4223
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4224
|
+
dependencies = [
|
|
4225
|
+
"try-lock",
|
|
4226
|
+
]
|
|
4227
|
+
|
|
4228
|
+
[[package]]
|
|
4229
|
+
name = "wasi"
|
|
4230
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
4231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
4233
|
+
|
|
4234
|
+
[[package]]
|
|
4235
|
+
name = "wasm-bindgen"
|
|
4236
|
+
version = "0.2.84"
|
|
4237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4238
|
+
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
|
|
4239
|
+
dependencies = [
|
|
4240
|
+
"cfg-if 1.0.0",
|
|
4241
|
+
"wasm-bindgen-macro",
|
|
4242
|
+
]
|
|
4243
|
+
|
|
4244
|
+
[[package]]
|
|
4245
|
+
name = "wasm-bindgen-backend"
|
|
4246
|
+
version = "0.2.84"
|
|
4247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4248
|
+
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
|
|
4249
|
+
dependencies = [
|
|
4250
|
+
"bumpalo",
|
|
4251
|
+
"log",
|
|
4252
|
+
"once_cell",
|
|
4253
|
+
"proc-macro2",
|
|
4254
|
+
"quote",
|
|
4255
|
+
"syn 1.0.109",
|
|
4256
|
+
"wasm-bindgen-shared",
|
|
4257
|
+
]
|
|
4258
|
+
|
|
4259
|
+
[[package]]
|
|
4260
|
+
name = "wasm-bindgen-futures"
|
|
4261
|
+
version = "0.4.34"
|
|
4262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4263
|
+
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
|
|
4264
|
+
dependencies = [
|
|
4265
|
+
"cfg-if 1.0.0",
|
|
4266
|
+
"js-sys",
|
|
4267
|
+
"wasm-bindgen",
|
|
4268
|
+
"web-sys",
|
|
4269
|
+
]
|
|
4270
|
+
|
|
4271
|
+
[[package]]
|
|
4272
|
+
name = "wasm-bindgen-macro"
|
|
4273
|
+
version = "0.2.84"
|
|
4274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4275
|
+
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
|
|
4276
|
+
dependencies = [
|
|
4277
|
+
"quote",
|
|
4278
|
+
"wasm-bindgen-macro-support",
|
|
4279
|
+
]
|
|
4280
|
+
|
|
4281
|
+
[[package]]
|
|
4282
|
+
name = "wasm-bindgen-macro-support"
|
|
4283
|
+
version = "0.2.84"
|
|
4284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4285
|
+
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
4286
|
+
dependencies = [
|
|
4287
|
+
"proc-macro2",
|
|
4288
|
+
"quote",
|
|
4289
|
+
"syn 1.0.109",
|
|
4290
|
+
"wasm-bindgen-backend",
|
|
4291
|
+
"wasm-bindgen-shared",
|
|
4292
|
+
]
|
|
4293
|
+
|
|
4294
|
+
[[package]]
|
|
4295
|
+
name = "wasm-bindgen-shared"
|
|
4296
|
+
version = "0.2.84"
|
|
4297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4298
|
+
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
|
|
4299
|
+
|
|
4300
|
+
[[package]]
|
|
4301
|
+
name = "wayland-client"
|
|
4302
|
+
version = "0.29.5"
|
|
4303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4304
|
+
checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715"
|
|
4305
|
+
dependencies = [
|
|
4306
|
+
"bitflags 1.3.2",
|
|
4307
|
+
"downcast-rs",
|
|
4308
|
+
"libc",
|
|
4309
|
+
"nix 0.24.3",
|
|
4310
|
+
"scoped-tls",
|
|
4311
|
+
"wayland-commons",
|
|
4312
|
+
"wayland-scanner",
|
|
4313
|
+
"wayland-sys 0.29.5",
|
|
4314
|
+
]
|
|
4315
|
+
|
|
4316
|
+
[[package]]
|
|
4317
|
+
name = "wayland-commons"
|
|
4318
|
+
version = "0.29.5"
|
|
4319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4320
|
+
checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902"
|
|
4321
|
+
dependencies = [
|
|
4322
|
+
"nix 0.24.3",
|
|
4323
|
+
"once_cell",
|
|
4324
|
+
"smallvec",
|
|
4325
|
+
"wayland-sys 0.29.5",
|
|
4326
|
+
]
|
|
4327
|
+
|
|
4328
|
+
[[package]]
|
|
4329
|
+
name = "wayland-cursor"
|
|
4330
|
+
version = "0.29.5"
|
|
4331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4332
|
+
checksum = "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661"
|
|
4333
|
+
dependencies = [
|
|
4334
|
+
"nix 0.24.3",
|
|
4335
|
+
"wayland-client",
|
|
4336
|
+
"xcursor",
|
|
4337
|
+
]
|
|
4338
|
+
|
|
4339
|
+
[[package]]
|
|
4340
|
+
name = "wayland-protocols"
|
|
4341
|
+
version = "0.29.5"
|
|
4342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4343
|
+
checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6"
|
|
4344
|
+
dependencies = [
|
|
4345
|
+
"bitflags 1.3.2",
|
|
4346
|
+
"wayland-client",
|
|
4347
|
+
"wayland-commons",
|
|
4348
|
+
"wayland-scanner",
|
|
4349
|
+
]
|
|
4350
|
+
|
|
4351
|
+
[[package]]
|
|
4352
|
+
name = "wayland-scanner"
|
|
4353
|
+
version = "0.29.5"
|
|
4354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4355
|
+
checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53"
|
|
4356
|
+
dependencies = [
|
|
4357
|
+
"proc-macro2",
|
|
4358
|
+
"quote",
|
|
4359
|
+
"xml-rs",
|
|
4360
|
+
]
|
|
4361
|
+
|
|
4362
|
+
[[package]]
|
|
4363
|
+
name = "wayland-sys"
|
|
4364
|
+
version = "0.29.5"
|
|
4365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4366
|
+
checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4"
|
|
4367
|
+
dependencies = [
|
|
4368
|
+
"dlib",
|
|
4369
|
+
"lazy_static",
|
|
4370
|
+
"pkg-config",
|
|
4371
|
+
]
|
|
4372
|
+
|
|
4373
|
+
[[package]]
|
|
4374
|
+
name = "wayland-sys"
|
|
4375
|
+
version = "0.30.1"
|
|
4376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4377
|
+
checksum = "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06"
|
|
4378
|
+
dependencies = [
|
|
4379
|
+
"dlib",
|
|
4380
|
+
"lazy_static",
|
|
4381
|
+
"log",
|
|
4382
|
+
"pkg-config",
|
|
4383
|
+
]
|
|
4384
|
+
|
|
4385
|
+
[[package]]
|
|
4386
|
+
name = "web-sys"
|
|
4387
|
+
version = "0.3.61"
|
|
4388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4389
|
+
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
|
|
4390
|
+
dependencies = [
|
|
4391
|
+
"js-sys",
|
|
4392
|
+
"wasm-bindgen",
|
|
4393
|
+
]
|
|
4394
|
+
|
|
4395
|
+
[[package]]
|
|
4396
|
+
name = "webbrowser"
|
|
4397
|
+
version = "0.8.12"
|
|
4398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4399
|
+
checksum = "82b2391658b02c27719fc5a0a73d6e696285138e8b12fba9d4baa70451023c71"
|
|
4400
|
+
dependencies = [
|
|
4401
|
+
"core-foundation",
|
|
4402
|
+
"home",
|
|
4403
|
+
"jni",
|
|
4404
|
+
"log",
|
|
4405
|
+
"ndk-context",
|
|
4406
|
+
"objc",
|
|
4407
|
+
"raw-window-handle",
|
|
4408
|
+
"url",
|
|
4409
|
+
"web-sys",
|
|
4410
|
+
]
|
|
4411
|
+
|
|
4412
|
+
[[package]]
|
|
4413
|
+
name = "weezl"
|
|
4414
|
+
version = "0.1.8"
|
|
4415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4416
|
+
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
|
|
4417
|
+
|
|
4418
|
+
[[package]]
|
|
4419
|
+
name = "which"
|
|
4420
|
+
version = "4.4.2"
|
|
4421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4422
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
4423
|
+
dependencies = [
|
|
4424
|
+
"either",
|
|
4425
|
+
"home",
|
|
4426
|
+
"once_cell",
|
|
4427
|
+
"rustix 0.38.31",
|
|
4428
|
+
]
|
|
4429
|
+
|
|
4430
|
+
[[package]]
|
|
4431
|
+
name = "win-sys"
|
|
4432
|
+
version = "0.3.1"
|
|
4433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4434
|
+
checksum = "5b7b128a98c1cfa201b09eb49ba285887deb3cbe7466a98850eb1adabb452be5"
|
|
4435
|
+
dependencies = [
|
|
4436
|
+
"windows 0.34.0",
|
|
4437
|
+
]
|
|
4438
|
+
|
|
4439
|
+
[[package]]
|
|
4440
|
+
name = "winapi"
|
|
4441
|
+
version = "0.3.9"
|
|
4442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4443
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4444
|
+
dependencies = [
|
|
4445
|
+
"winapi-i686-pc-windows-gnu",
|
|
4446
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4447
|
+
]
|
|
4448
|
+
|
|
4449
|
+
[[package]]
|
|
4450
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4451
|
+
version = "0.4.0"
|
|
4452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4453
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4454
|
+
|
|
4455
|
+
[[package]]
|
|
4456
|
+
name = "winapi-util"
|
|
4457
|
+
version = "0.1.6"
|
|
4458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4459
|
+
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
|
|
4460
|
+
dependencies = [
|
|
4461
|
+
"winapi",
|
|
4462
|
+
]
|
|
4463
|
+
|
|
4464
|
+
[[package]]
|
|
4465
|
+
name = "winapi-wsapoll"
|
|
4466
|
+
version = "0.1.1"
|
|
4467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4468
|
+
checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e"
|
|
4469
|
+
dependencies = [
|
|
4470
|
+
"winapi",
|
|
4471
|
+
]
|
|
4472
|
+
|
|
4473
|
+
[[package]]
|
|
4474
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4475
|
+
version = "0.4.0"
|
|
4476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4477
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4478
|
+
|
|
4479
|
+
[[package]]
|
|
4480
|
+
name = "windows"
|
|
4481
|
+
version = "0.34.0"
|
|
4482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4483
|
+
checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f"
|
|
4484
|
+
dependencies = [
|
|
4485
|
+
"windows_aarch64_msvc 0.34.0",
|
|
4486
|
+
"windows_i686_gnu 0.34.0",
|
|
4487
|
+
"windows_i686_msvc 0.34.0",
|
|
4488
|
+
"windows_x86_64_gnu 0.34.0",
|
|
4489
|
+
"windows_x86_64_msvc 0.34.0",
|
|
4490
|
+
]
|
|
4491
|
+
|
|
4492
|
+
[[package]]
|
|
4493
|
+
name = "windows"
|
|
4494
|
+
version = "0.42.0"
|
|
4495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4496
|
+
checksum = "0286ba339aa753e70765d521bb0242cc48e1194562bfa2a2ad7ac8a6de28f5d5"
|
|
4497
|
+
dependencies = [
|
|
4498
|
+
"windows-implement",
|
|
4499
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4500
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4501
|
+
"windows_i686_gnu 0.42.2",
|
|
4502
|
+
"windows_i686_msvc 0.42.2",
|
|
4503
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4504
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4505
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4506
|
+
]
|
|
4507
|
+
|
|
4508
|
+
[[package]]
|
|
4509
|
+
name = "windows-implement"
|
|
4510
|
+
version = "0.42.0"
|
|
4511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4512
|
+
checksum = "9539b6bd3eadbd9de66c9666b22d802b833da7e996bc06896142e09854a61767"
|
|
4513
|
+
dependencies = [
|
|
4514
|
+
"proc-macro2",
|
|
4515
|
+
"quote",
|
|
4516
|
+
"syn 1.0.109",
|
|
4517
|
+
]
|
|
4518
|
+
|
|
4519
|
+
[[package]]
|
|
4520
|
+
name = "windows-sys"
|
|
4521
|
+
version = "0.45.0"
|
|
4522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4523
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4524
|
+
dependencies = [
|
|
4525
|
+
"windows-targets 0.42.2",
|
|
4526
|
+
]
|
|
4527
|
+
|
|
4528
|
+
[[package]]
|
|
4529
|
+
name = "windows-sys"
|
|
4530
|
+
version = "0.48.0"
|
|
4531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4532
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
4533
|
+
dependencies = [
|
|
4534
|
+
"windows-targets 0.48.5",
|
|
4535
|
+
]
|
|
4536
|
+
|
|
4537
|
+
[[package]]
|
|
4538
|
+
name = "windows-sys"
|
|
4539
|
+
version = "0.52.0"
|
|
4540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4541
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4542
|
+
dependencies = [
|
|
4543
|
+
"windows-targets 0.52.0",
|
|
4544
|
+
]
|
|
4545
|
+
|
|
4546
|
+
[[package]]
|
|
4547
|
+
name = "windows-targets"
|
|
4548
|
+
version = "0.42.2"
|
|
4549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4550
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4551
|
+
dependencies = [
|
|
4552
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4553
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4554
|
+
"windows_i686_gnu 0.42.2",
|
|
4555
|
+
"windows_i686_msvc 0.42.2",
|
|
4556
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4557
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4558
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4559
|
+
]
|
|
4560
|
+
|
|
4561
|
+
[[package]]
|
|
4562
|
+
name = "windows-targets"
|
|
4563
|
+
version = "0.48.5"
|
|
4564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4565
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4566
|
+
dependencies = [
|
|
4567
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4568
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4569
|
+
"windows_i686_gnu 0.48.5",
|
|
4570
|
+
"windows_i686_msvc 0.48.5",
|
|
4571
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4572
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4573
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4574
|
+
]
|
|
4575
|
+
|
|
4576
|
+
[[package]]
|
|
4577
|
+
name = "windows-targets"
|
|
4578
|
+
version = "0.52.0"
|
|
4579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4580
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
|
4581
|
+
dependencies = [
|
|
4582
|
+
"windows_aarch64_gnullvm 0.52.0",
|
|
4583
|
+
"windows_aarch64_msvc 0.52.0",
|
|
4584
|
+
"windows_i686_gnu 0.52.0",
|
|
4585
|
+
"windows_i686_msvc 0.52.0",
|
|
4586
|
+
"windows_x86_64_gnu 0.52.0",
|
|
4587
|
+
"windows_x86_64_gnullvm 0.52.0",
|
|
4588
|
+
"windows_x86_64_msvc 0.52.0",
|
|
4589
|
+
]
|
|
4590
|
+
|
|
4591
|
+
[[package]]
|
|
4592
|
+
name = "windows_aarch64_gnullvm"
|
|
4593
|
+
version = "0.42.2"
|
|
4594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4595
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4596
|
+
|
|
4597
|
+
[[package]]
|
|
4598
|
+
name = "windows_aarch64_gnullvm"
|
|
4599
|
+
version = "0.48.5"
|
|
4600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4601
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
4602
|
+
|
|
4603
|
+
[[package]]
|
|
4604
|
+
name = "windows_aarch64_gnullvm"
|
|
4605
|
+
version = "0.52.0"
|
|
4606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4607
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
|
4608
|
+
|
|
4609
|
+
[[package]]
|
|
4610
|
+
name = "windows_aarch64_msvc"
|
|
4611
|
+
version = "0.34.0"
|
|
4612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4613
|
+
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
|
|
4614
|
+
|
|
4615
|
+
[[package]]
|
|
4616
|
+
name = "windows_aarch64_msvc"
|
|
4617
|
+
version = "0.42.2"
|
|
4618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4620
|
+
|
|
4621
|
+
[[package]]
|
|
4622
|
+
name = "windows_aarch64_msvc"
|
|
4623
|
+
version = "0.48.5"
|
|
4624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4625
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
4626
|
+
|
|
4627
|
+
[[package]]
|
|
4628
|
+
name = "windows_aarch64_msvc"
|
|
4629
|
+
version = "0.52.0"
|
|
4630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4631
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
|
4632
|
+
|
|
4633
|
+
[[package]]
|
|
4634
|
+
name = "windows_i686_gnu"
|
|
4635
|
+
version = "0.34.0"
|
|
4636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4637
|
+
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
|
|
4638
|
+
|
|
4639
|
+
[[package]]
|
|
4640
|
+
name = "windows_i686_gnu"
|
|
4641
|
+
version = "0.42.2"
|
|
4642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4643
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4644
|
+
|
|
4645
|
+
[[package]]
|
|
4646
|
+
name = "windows_i686_gnu"
|
|
4647
|
+
version = "0.48.5"
|
|
4648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4649
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
4650
|
+
|
|
4651
|
+
[[package]]
|
|
4652
|
+
name = "windows_i686_gnu"
|
|
4653
|
+
version = "0.52.0"
|
|
4654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4655
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
|
4656
|
+
|
|
4657
|
+
[[package]]
|
|
4658
|
+
name = "windows_i686_msvc"
|
|
4659
|
+
version = "0.34.0"
|
|
4660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4661
|
+
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
|
|
4662
|
+
|
|
4663
|
+
[[package]]
|
|
4664
|
+
name = "windows_i686_msvc"
|
|
4665
|
+
version = "0.42.2"
|
|
4666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4667
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4668
|
+
|
|
4669
|
+
[[package]]
|
|
4670
|
+
name = "windows_i686_msvc"
|
|
4671
|
+
version = "0.48.5"
|
|
4672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4673
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
4674
|
+
|
|
4675
|
+
[[package]]
|
|
4676
|
+
name = "windows_i686_msvc"
|
|
4677
|
+
version = "0.52.0"
|
|
4678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4679
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
|
4680
|
+
|
|
4681
|
+
[[package]]
|
|
4682
|
+
name = "windows_x86_64_gnu"
|
|
4683
|
+
version = "0.34.0"
|
|
4684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
+
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
|
|
4686
|
+
|
|
4687
|
+
[[package]]
|
|
4688
|
+
name = "windows_x86_64_gnu"
|
|
4689
|
+
version = "0.42.2"
|
|
4690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4691
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4692
|
+
|
|
4693
|
+
[[package]]
|
|
4694
|
+
name = "windows_x86_64_gnu"
|
|
4695
|
+
version = "0.48.5"
|
|
4696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4697
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
4698
|
+
|
|
4699
|
+
[[package]]
|
|
4700
|
+
name = "windows_x86_64_gnu"
|
|
4701
|
+
version = "0.52.0"
|
|
4702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4703
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
|
4704
|
+
|
|
4705
|
+
[[package]]
|
|
4706
|
+
name = "windows_x86_64_gnullvm"
|
|
4707
|
+
version = "0.42.2"
|
|
4708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4709
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4710
|
+
|
|
4711
|
+
[[package]]
|
|
4712
|
+
name = "windows_x86_64_gnullvm"
|
|
4713
|
+
version = "0.48.5"
|
|
4714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4715
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
4716
|
+
|
|
4717
|
+
[[package]]
|
|
4718
|
+
name = "windows_x86_64_gnullvm"
|
|
4719
|
+
version = "0.52.0"
|
|
4720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4721
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
|
4722
|
+
|
|
4723
|
+
[[package]]
|
|
4724
|
+
name = "windows_x86_64_msvc"
|
|
4725
|
+
version = "0.34.0"
|
|
4726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4727
|
+
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
|
|
4728
|
+
|
|
4729
|
+
[[package]]
|
|
4730
|
+
name = "windows_x86_64_msvc"
|
|
4731
|
+
version = "0.42.2"
|
|
4732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4733
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4734
|
+
|
|
4735
|
+
[[package]]
|
|
4736
|
+
name = "windows_x86_64_msvc"
|
|
4737
|
+
version = "0.48.5"
|
|
4738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4739
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
4740
|
+
|
|
4741
|
+
[[package]]
|
|
4742
|
+
name = "windows_x86_64_msvc"
|
|
4743
|
+
version = "0.52.0"
|
|
4744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4745
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
|
4746
|
+
|
|
4747
|
+
[[package]]
|
|
4748
|
+
name = "winit"
|
|
4749
|
+
version = "0.28.7"
|
|
4750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4751
|
+
checksum = "9596d90b45384f5281384ab204224876e8e8bf7d58366d9b795ad99aa9894b94"
|
|
4752
|
+
dependencies = [
|
|
4753
|
+
"android-activity",
|
|
4754
|
+
"bitflags 1.3.2",
|
|
4755
|
+
"cfg_aliases",
|
|
4756
|
+
"core-foundation",
|
|
4757
|
+
"core-graphics",
|
|
4758
|
+
"dispatch",
|
|
4759
|
+
"instant",
|
|
4760
|
+
"libc",
|
|
4761
|
+
"log",
|
|
4762
|
+
"mio",
|
|
4763
|
+
"ndk",
|
|
4764
|
+
"objc2",
|
|
4765
|
+
"once_cell",
|
|
4766
|
+
"orbclient",
|
|
4767
|
+
"percent-encoding",
|
|
4768
|
+
"raw-window-handle",
|
|
4769
|
+
"redox_syscall 0.3.5",
|
|
4770
|
+
"sctk-adwaita",
|
|
4771
|
+
"smithay-client-toolkit",
|
|
4772
|
+
"wasm-bindgen",
|
|
4773
|
+
"wayland-client",
|
|
4774
|
+
"wayland-commons",
|
|
4775
|
+
"wayland-protocols",
|
|
4776
|
+
"wayland-scanner",
|
|
4777
|
+
"web-sys",
|
|
4778
|
+
"windows-sys 0.45.0",
|
|
4779
|
+
"x11-dl",
|
|
4780
|
+
]
|
|
4781
|
+
|
|
4782
|
+
[[package]]
|
|
4783
|
+
name = "winnow"
|
|
4784
|
+
version = "0.5.36"
|
|
4785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4786
|
+
checksum = "818ce546a11a9986bc24f93d0cdf38a8a1a400f1473ea8c82e59f6e0ffab9249"
|
|
4787
|
+
dependencies = [
|
|
4788
|
+
"memchr",
|
|
4789
|
+
]
|
|
4790
|
+
|
|
4791
|
+
[[package]]
|
|
4792
|
+
name = "winreg"
|
|
4793
|
+
version = "0.50.0"
|
|
4794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4795
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
4796
|
+
dependencies = [
|
|
4797
|
+
"cfg-if 1.0.0",
|
|
4798
|
+
"windows-sys 0.48.0",
|
|
4799
|
+
]
|
|
4800
|
+
|
|
4801
|
+
[[package]]
|
|
4802
|
+
name = "x11-dl"
|
|
4803
|
+
version = "2.21.0"
|
|
4804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4805
|
+
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
|
|
4806
|
+
dependencies = [
|
|
4807
|
+
"libc",
|
|
4808
|
+
"once_cell",
|
|
4809
|
+
"pkg-config",
|
|
4810
|
+
]
|
|
4811
|
+
|
|
4812
|
+
[[package]]
|
|
4813
|
+
name = "x11rb"
|
|
4814
|
+
version = "0.12.0"
|
|
4815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4816
|
+
checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a"
|
|
4817
|
+
dependencies = [
|
|
4818
|
+
"gethostname",
|
|
4819
|
+
"nix 0.26.4",
|
|
4820
|
+
"winapi",
|
|
4821
|
+
"winapi-wsapoll",
|
|
4822
|
+
"x11rb-protocol",
|
|
4823
|
+
]
|
|
4824
|
+
|
|
4825
|
+
[[package]]
|
|
4826
|
+
name = "x11rb-protocol"
|
|
4827
|
+
version = "0.12.0"
|
|
4828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4829
|
+
checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc"
|
|
4830
|
+
dependencies = [
|
|
4831
|
+
"nix 0.26.4",
|
|
4832
|
+
]
|
|
4833
|
+
|
|
4834
|
+
[[package]]
|
|
4835
|
+
name = "xcursor"
|
|
4836
|
+
version = "0.3.5"
|
|
4837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4838
|
+
checksum = "6a0ccd7b4a5345edfcd0c3535718a4e9ff7798ffc536bb5b5a0e26ff84732911"
|
|
4839
|
+
|
|
4840
|
+
[[package]]
|
|
4841
|
+
name = "xdg-home"
|
|
4842
|
+
version = "1.0.0"
|
|
4843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4844
|
+
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
|
|
4845
|
+
dependencies = [
|
|
4846
|
+
"nix 0.26.4",
|
|
4847
|
+
"winapi",
|
|
4848
|
+
]
|
|
4849
|
+
|
|
4850
|
+
[[package]]
|
|
4851
|
+
name = "xml-rs"
|
|
4852
|
+
version = "0.8.19"
|
|
4853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4854
|
+
checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a"
|
|
4855
|
+
|
|
4856
|
+
[[package]]
|
|
4857
|
+
name = "zbus"
|
|
4858
|
+
version = "3.14.1"
|
|
4859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4860
|
+
checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948"
|
|
4861
|
+
dependencies = [
|
|
4862
|
+
"async-broadcast",
|
|
4863
|
+
"async-executor",
|
|
4864
|
+
"async-fs",
|
|
4865
|
+
"async-io 1.13.0",
|
|
4866
|
+
"async-lock 2.8.0",
|
|
4867
|
+
"async-process",
|
|
4868
|
+
"async-recursion",
|
|
4869
|
+
"async-task",
|
|
4870
|
+
"async-trait",
|
|
4871
|
+
"blocking",
|
|
4872
|
+
"byteorder",
|
|
4873
|
+
"derivative",
|
|
4874
|
+
"enumflags2",
|
|
4875
|
+
"event-listener 2.5.3",
|
|
4876
|
+
"futures-core",
|
|
4877
|
+
"futures-sink",
|
|
4878
|
+
"futures-util",
|
|
4879
|
+
"hex",
|
|
4880
|
+
"nix 0.26.4",
|
|
4881
|
+
"once_cell",
|
|
4882
|
+
"ordered-stream",
|
|
4883
|
+
"rand",
|
|
4884
|
+
"serde",
|
|
4885
|
+
"serde-xml-rs",
|
|
4886
|
+
"serde_repr",
|
|
4887
|
+
"sha1",
|
|
4888
|
+
"static_assertions",
|
|
4889
|
+
"tracing",
|
|
4890
|
+
"uds_windows",
|
|
4891
|
+
"winapi",
|
|
4892
|
+
"xdg-home",
|
|
4893
|
+
"zbus_macros",
|
|
4894
|
+
"zbus_names",
|
|
4895
|
+
"zvariant",
|
|
4896
|
+
]
|
|
4897
|
+
|
|
4898
|
+
[[package]]
|
|
4899
|
+
name = "zbus_macros"
|
|
4900
|
+
version = "3.14.1"
|
|
4901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4902
|
+
checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d"
|
|
4903
|
+
dependencies = [
|
|
4904
|
+
"proc-macro-crate",
|
|
4905
|
+
"proc-macro2",
|
|
4906
|
+
"quote",
|
|
4907
|
+
"regex",
|
|
4908
|
+
"syn 1.0.109",
|
|
4909
|
+
"zvariant_utils",
|
|
4910
|
+
]
|
|
4911
|
+
|
|
4912
|
+
[[package]]
|
|
4913
|
+
name = "zbus_names"
|
|
4914
|
+
version = "2.6.0"
|
|
4915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4916
|
+
checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9"
|
|
4917
|
+
dependencies = [
|
|
4918
|
+
"serde",
|
|
4919
|
+
"static_assertions",
|
|
4920
|
+
"zvariant",
|
|
4921
|
+
]
|
|
4922
|
+
|
|
4923
|
+
[[package]]
|
|
4924
|
+
name = "zerocopy"
|
|
4925
|
+
version = "0.7.35"
|
|
4926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4927
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4928
|
+
dependencies = [
|
|
4929
|
+
"byteorder",
|
|
4930
|
+
"zerocopy-derive",
|
|
4931
|
+
]
|
|
4932
|
+
|
|
4933
|
+
[[package]]
|
|
4934
|
+
name = "zerocopy-derive"
|
|
4935
|
+
version = "0.7.35"
|
|
4936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4937
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
4938
|
+
dependencies = [
|
|
4939
|
+
"proc-macro2",
|
|
4940
|
+
"quote",
|
|
4941
|
+
"syn 2.0.48",
|
|
4942
|
+
]
|
|
4943
|
+
|
|
4944
|
+
[[package]]
|
|
4945
|
+
name = "zeromq-src"
|
|
4946
|
+
version = "0.2.6+4.3.4"
|
|
4947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4948
|
+
checksum = "fc120b771270365d5ed0dfb4baf1005f2243ae1ae83703265cb3504070f4160b"
|
|
4949
|
+
dependencies = [
|
|
4950
|
+
"cc",
|
|
4951
|
+
"dircpy",
|
|
4952
|
+
]
|
|
4953
|
+
|
|
4954
|
+
[[package]]
|
|
4955
|
+
name = "zmq"
|
|
4956
|
+
version = "0.10.0"
|
|
4957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4958
|
+
checksum = "dd3091dd571fb84a9b3e5e5c6a807d186c411c812c8618786c3c30e5349234e7"
|
|
4959
|
+
dependencies = [
|
|
4960
|
+
"bitflags 1.3.2",
|
|
4961
|
+
"libc",
|
|
4962
|
+
"zmq-sys",
|
|
4963
|
+
]
|
|
4964
|
+
|
|
4965
|
+
[[package]]
|
|
4966
|
+
name = "zmq-sys"
|
|
4967
|
+
version = "0.12.0"
|
|
4968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4969
|
+
checksum = "8e8351dc72494b4d7f5652a681c33634063bbad58046c1689e75270908fdc864"
|
|
4970
|
+
dependencies = [
|
|
4971
|
+
"libc",
|
|
4972
|
+
"system-deps",
|
|
4973
|
+
"zeromq-src",
|
|
4974
|
+
]
|
|
4975
|
+
|
|
4976
|
+
[[package]]
|
|
4977
|
+
name = "zune-inflate"
|
|
4978
|
+
version = "0.2.54"
|
|
4979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4980
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
4981
|
+
dependencies = [
|
|
4982
|
+
"simd-adler32",
|
|
4983
|
+
]
|
|
4984
|
+
|
|
4985
|
+
[[package]]
|
|
4986
|
+
name = "zvariant"
|
|
4987
|
+
version = "3.15.0"
|
|
4988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4989
|
+
checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c"
|
|
4990
|
+
dependencies = [
|
|
4991
|
+
"byteorder",
|
|
4992
|
+
"enumflags2",
|
|
4993
|
+
"libc",
|
|
4994
|
+
"serde",
|
|
4995
|
+
"static_assertions",
|
|
4996
|
+
"zvariant_derive",
|
|
4997
|
+
]
|
|
4998
|
+
|
|
4999
|
+
[[package]]
|
|
5000
|
+
name = "zvariant_derive"
|
|
5001
|
+
version = "3.15.0"
|
|
5002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
+
checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd"
|
|
5004
|
+
dependencies = [
|
|
5005
|
+
"proc-macro-crate",
|
|
5006
|
+
"proc-macro2",
|
|
5007
|
+
"quote",
|
|
5008
|
+
"syn 1.0.109",
|
|
5009
|
+
"zvariant_utils",
|
|
5010
|
+
]
|
|
5011
|
+
|
|
5012
|
+
[[package]]
|
|
5013
|
+
name = "zvariant_utils"
|
|
5014
|
+
version = "1.0.1"
|
|
5015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5016
|
+
checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"
|
|
5017
|
+
dependencies = [
|
|
5018
|
+
"proc-macro2",
|
|
5019
|
+
"quote",
|
|
5020
|
+
"syn 1.0.109",
|
|
5021
|
+
]
|