4runr-os-mk3 0.1.1 → 0.1.2
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.
- package/Cargo.lock +1105 -0
- package/Cargo.toml +16 -0
- package/install.js +37 -11
- package/package.json +4 -1
- package/src/app/render_scheduler.rs +103 -0
- package/src/app.rs +435 -0
- package/src/io/mod.rs +66 -0
- package/src/io/protocol.rs +15 -0
- package/src/io/stdio.rs +32 -0
- package/src/io/ws.rs +32 -0
- package/src/main.rs +119 -0
- package/src/ui/boot.rs +150 -0
- package/src/ui/layout.rs +705 -0
- package/src/ui/mod.rs +4 -0
- package/src/ui/safe_viewport.rs +235 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,1105 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "allocator-api2"
|
|
7
|
+
version = "0.2.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "anyhow"
|
|
13
|
+
version = "1.0.100"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bitflags"
|
|
19
|
+
version = "2.10.0"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "block-buffer"
|
|
25
|
+
version = "0.10.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"generic-array",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "byteorder"
|
|
34
|
+
version = "1.5.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bytes"
|
|
40
|
+
version = "1.11.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cassowary"
|
|
46
|
+
version = "0.3.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "castaway"
|
|
52
|
+
version = "0.2.4"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"rustversion",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "cfg-if"
|
|
61
|
+
version = "1.0.4"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "compact_str"
|
|
67
|
+
version = "0.7.1"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"castaway",
|
|
72
|
+
"cfg-if",
|
|
73
|
+
"itoa",
|
|
74
|
+
"ryu",
|
|
75
|
+
"static_assertions",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "cpufeatures"
|
|
80
|
+
version = "0.2.17"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"libc",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "crossterm"
|
|
89
|
+
version = "0.27.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"bitflags",
|
|
94
|
+
"crossterm_winapi",
|
|
95
|
+
"libc",
|
|
96
|
+
"mio 0.8.11",
|
|
97
|
+
"parking_lot",
|
|
98
|
+
"signal-hook",
|
|
99
|
+
"signal-hook-mio",
|
|
100
|
+
"winapi",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "crossterm"
|
|
105
|
+
version = "0.28.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"bitflags",
|
|
110
|
+
"crossterm_winapi",
|
|
111
|
+
"mio 1.1.1",
|
|
112
|
+
"parking_lot",
|
|
113
|
+
"rustix",
|
|
114
|
+
"signal-hook",
|
|
115
|
+
"signal-hook-mio",
|
|
116
|
+
"winapi",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "crossterm_winapi"
|
|
121
|
+
version = "0.9.1"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"winapi",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "crypto-common"
|
|
130
|
+
version = "0.1.7"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"generic-array",
|
|
135
|
+
"typenum",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "data-encoding"
|
|
140
|
+
version = "2.10.0"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "digest"
|
|
146
|
+
version = "0.10.7"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"block-buffer",
|
|
151
|
+
"crypto-common",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "either"
|
|
156
|
+
version = "1.15.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "equivalent"
|
|
162
|
+
version = "1.0.2"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "errno"
|
|
168
|
+
version = "0.3.14"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"libc",
|
|
173
|
+
"windows-sys 0.61.2",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "foldhash"
|
|
178
|
+
version = "0.1.5"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "futures-core"
|
|
184
|
+
version = "0.3.31"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "futures-sink"
|
|
190
|
+
version = "0.3.31"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "futures-task"
|
|
196
|
+
version = "0.3.31"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "futures-util"
|
|
202
|
+
version = "0.3.31"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"futures-core",
|
|
207
|
+
"futures-sink",
|
|
208
|
+
"futures-task",
|
|
209
|
+
"pin-project-lite",
|
|
210
|
+
"pin-utils",
|
|
211
|
+
"slab",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "generic-array"
|
|
216
|
+
version = "0.14.7"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"typenum",
|
|
221
|
+
"version_check",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "getrandom"
|
|
226
|
+
version = "0.2.17"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"cfg-if",
|
|
231
|
+
"libc",
|
|
232
|
+
"wasi",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "hashbrown"
|
|
237
|
+
version = "0.15.5"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"allocator-api2",
|
|
242
|
+
"equivalent",
|
|
243
|
+
"foldhash",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "heck"
|
|
248
|
+
version = "0.5.0"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "http"
|
|
254
|
+
version = "1.4.0"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"bytes",
|
|
259
|
+
"itoa",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "httparse"
|
|
264
|
+
version = "1.10.1"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "itertools"
|
|
270
|
+
version = "0.13.0"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"either",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "itoa"
|
|
279
|
+
version = "1.0.17"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "libc"
|
|
285
|
+
version = "0.2.180"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "linux-raw-sys"
|
|
291
|
+
version = "0.4.15"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "lock_api"
|
|
297
|
+
version = "0.4.14"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"scopeguard",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "log"
|
|
306
|
+
version = "0.4.29"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "lru"
|
|
312
|
+
version = "0.12.5"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"hashbrown",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "memchr"
|
|
321
|
+
version = "2.7.6"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "mio"
|
|
327
|
+
version = "0.8.11"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"libc",
|
|
332
|
+
"log",
|
|
333
|
+
"wasi",
|
|
334
|
+
"windows-sys 0.48.0",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "mio"
|
|
339
|
+
version = "1.1.1"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"libc",
|
|
344
|
+
"log",
|
|
345
|
+
"wasi",
|
|
346
|
+
"windows-sys 0.61.2",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "mk3-tui"
|
|
351
|
+
version = "0.1.0"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"anyhow",
|
|
354
|
+
"crossterm 0.28.1",
|
|
355
|
+
"ratatui",
|
|
356
|
+
"serde",
|
|
357
|
+
"serde_json",
|
|
358
|
+
"thiserror 2.0.17",
|
|
359
|
+
"tokio",
|
|
360
|
+
"tokio-tungstenite",
|
|
361
|
+
"tungstenite",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "parking_lot"
|
|
366
|
+
version = "0.12.5"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"lock_api",
|
|
371
|
+
"parking_lot_core",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "parking_lot_core"
|
|
376
|
+
version = "0.9.12"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"cfg-if",
|
|
381
|
+
"libc",
|
|
382
|
+
"redox_syscall",
|
|
383
|
+
"smallvec",
|
|
384
|
+
"windows-link",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "paste"
|
|
389
|
+
version = "1.0.15"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "pin-project-lite"
|
|
395
|
+
version = "0.2.16"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "pin-utils"
|
|
401
|
+
version = "0.1.0"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "ppv-lite86"
|
|
407
|
+
version = "0.2.21"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"zerocopy",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "proc-macro2"
|
|
416
|
+
version = "1.0.105"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"unicode-ident",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "quote"
|
|
425
|
+
version = "1.0.43"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"proc-macro2",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "rand"
|
|
434
|
+
version = "0.8.5"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"libc",
|
|
439
|
+
"rand_chacha",
|
|
440
|
+
"rand_core",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "rand_chacha"
|
|
445
|
+
version = "0.3.1"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"ppv-lite86",
|
|
450
|
+
"rand_core",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "rand_core"
|
|
455
|
+
version = "0.6.4"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"getrandom",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "ratatui"
|
|
464
|
+
version = "0.27.0"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"bitflags",
|
|
469
|
+
"cassowary",
|
|
470
|
+
"compact_str",
|
|
471
|
+
"crossterm 0.27.0",
|
|
472
|
+
"itertools",
|
|
473
|
+
"lru",
|
|
474
|
+
"paste",
|
|
475
|
+
"stability",
|
|
476
|
+
"strum",
|
|
477
|
+
"strum_macros",
|
|
478
|
+
"unicode-segmentation",
|
|
479
|
+
"unicode-truncate",
|
|
480
|
+
"unicode-width",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "redox_syscall"
|
|
485
|
+
version = "0.5.18"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"bitflags",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "rustix"
|
|
494
|
+
version = "0.38.44"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"bitflags",
|
|
499
|
+
"errno",
|
|
500
|
+
"libc",
|
|
501
|
+
"linux-raw-sys",
|
|
502
|
+
"windows-sys 0.59.0",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "rustversion"
|
|
507
|
+
version = "1.0.22"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "ryu"
|
|
513
|
+
version = "1.0.22"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "scopeguard"
|
|
519
|
+
version = "1.2.0"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "serde"
|
|
525
|
+
version = "1.0.228"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"serde_core",
|
|
530
|
+
"serde_derive",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "serde_core"
|
|
535
|
+
version = "1.0.228"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"serde_derive",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "serde_derive"
|
|
544
|
+
version = "1.0.228"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"proc-macro2",
|
|
549
|
+
"quote",
|
|
550
|
+
"syn",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "serde_json"
|
|
555
|
+
version = "1.0.149"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"itoa",
|
|
560
|
+
"memchr",
|
|
561
|
+
"serde",
|
|
562
|
+
"serde_core",
|
|
563
|
+
"zmij",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "sha1"
|
|
568
|
+
version = "0.10.6"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"cfg-if",
|
|
573
|
+
"cpufeatures",
|
|
574
|
+
"digest",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "signal-hook"
|
|
579
|
+
version = "0.3.18"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"libc",
|
|
584
|
+
"signal-hook-registry",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "signal-hook-mio"
|
|
589
|
+
version = "0.2.5"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"libc",
|
|
594
|
+
"mio 0.8.11",
|
|
595
|
+
"mio 1.1.1",
|
|
596
|
+
"signal-hook",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "signal-hook-registry"
|
|
601
|
+
version = "1.4.8"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"errno",
|
|
606
|
+
"libc",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "slab"
|
|
611
|
+
version = "0.4.11"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "smallvec"
|
|
617
|
+
version = "1.15.1"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "socket2"
|
|
623
|
+
version = "0.6.1"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"libc",
|
|
628
|
+
"windows-sys 0.60.2",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "stability"
|
|
633
|
+
version = "0.2.1"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "d904e7009df136af5297832a3ace3370cd14ff1546a232f4f185036c2736fcac"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"quote",
|
|
638
|
+
"syn",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "static_assertions"
|
|
643
|
+
version = "1.1.0"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "strum"
|
|
649
|
+
version = "0.26.3"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"strum_macros",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "strum_macros"
|
|
658
|
+
version = "0.26.4"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"heck",
|
|
663
|
+
"proc-macro2",
|
|
664
|
+
"quote",
|
|
665
|
+
"rustversion",
|
|
666
|
+
"syn",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "syn"
|
|
671
|
+
version = "2.0.114"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"proc-macro2",
|
|
676
|
+
"quote",
|
|
677
|
+
"unicode-ident",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "thiserror"
|
|
682
|
+
version = "1.0.69"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"thiserror-impl 1.0.69",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "thiserror"
|
|
691
|
+
version = "2.0.17"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"thiserror-impl 2.0.17",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "thiserror-impl"
|
|
700
|
+
version = "1.0.69"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"proc-macro2",
|
|
705
|
+
"quote",
|
|
706
|
+
"syn",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "thiserror-impl"
|
|
711
|
+
version = "2.0.17"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"proc-macro2",
|
|
716
|
+
"quote",
|
|
717
|
+
"syn",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "tokio"
|
|
722
|
+
version = "1.49.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"bytes",
|
|
727
|
+
"libc",
|
|
728
|
+
"mio 1.1.1",
|
|
729
|
+
"parking_lot",
|
|
730
|
+
"pin-project-lite",
|
|
731
|
+
"signal-hook-registry",
|
|
732
|
+
"socket2",
|
|
733
|
+
"tokio-macros",
|
|
734
|
+
"windows-sys 0.61.2",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "tokio-macros"
|
|
739
|
+
version = "2.6.0"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"proc-macro2",
|
|
744
|
+
"quote",
|
|
745
|
+
"syn",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "tokio-tungstenite"
|
|
750
|
+
version = "0.24.0"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"futures-util",
|
|
755
|
+
"log",
|
|
756
|
+
"tokio",
|
|
757
|
+
"tungstenite",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "tungstenite"
|
|
762
|
+
version = "0.24.0"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"byteorder",
|
|
767
|
+
"bytes",
|
|
768
|
+
"data-encoding",
|
|
769
|
+
"http",
|
|
770
|
+
"httparse",
|
|
771
|
+
"log",
|
|
772
|
+
"rand",
|
|
773
|
+
"sha1",
|
|
774
|
+
"thiserror 1.0.69",
|
|
775
|
+
"utf-8",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "typenum"
|
|
780
|
+
version = "1.19.0"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "unicode-ident"
|
|
786
|
+
version = "1.0.22"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "unicode-segmentation"
|
|
792
|
+
version = "1.12.0"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "unicode-truncate"
|
|
798
|
+
version = "1.1.0"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"itertools",
|
|
803
|
+
"unicode-segmentation",
|
|
804
|
+
"unicode-width",
|
|
805
|
+
]
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "unicode-width"
|
|
809
|
+
version = "0.1.14"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "utf-8"
|
|
815
|
+
version = "0.7.6"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "version_check"
|
|
821
|
+
version = "0.9.5"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "wasi"
|
|
827
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "winapi"
|
|
833
|
+
version = "0.3.9"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"winapi-i686-pc-windows-gnu",
|
|
838
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
843
|
+
version = "0.4.0"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
849
|
+
version = "0.4.0"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "windows-link"
|
|
855
|
+
version = "0.2.1"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "windows-sys"
|
|
861
|
+
version = "0.48.0"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"windows-targets 0.48.5",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "windows-sys"
|
|
870
|
+
version = "0.59.0"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"windows-targets 0.52.6",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "windows-sys"
|
|
879
|
+
version = "0.60.2"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"windows-targets 0.53.5",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "windows-sys"
|
|
888
|
+
version = "0.61.2"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"windows-link",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "windows-targets"
|
|
897
|
+
version = "0.48.5"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
902
|
+
"windows_aarch64_msvc 0.48.5",
|
|
903
|
+
"windows_i686_gnu 0.48.5",
|
|
904
|
+
"windows_i686_msvc 0.48.5",
|
|
905
|
+
"windows_x86_64_gnu 0.48.5",
|
|
906
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
907
|
+
"windows_x86_64_msvc 0.48.5",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "windows-targets"
|
|
912
|
+
version = "0.52.6"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
917
|
+
"windows_aarch64_msvc 0.52.6",
|
|
918
|
+
"windows_i686_gnu 0.52.6",
|
|
919
|
+
"windows_i686_gnullvm 0.52.6",
|
|
920
|
+
"windows_i686_msvc 0.52.6",
|
|
921
|
+
"windows_x86_64_gnu 0.52.6",
|
|
922
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
923
|
+
"windows_x86_64_msvc 0.52.6",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "windows-targets"
|
|
928
|
+
version = "0.53.5"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"windows-link",
|
|
933
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
934
|
+
"windows_aarch64_msvc 0.53.1",
|
|
935
|
+
"windows_i686_gnu 0.53.1",
|
|
936
|
+
"windows_i686_gnullvm 0.53.1",
|
|
937
|
+
"windows_i686_msvc 0.53.1",
|
|
938
|
+
"windows_x86_64_gnu 0.53.1",
|
|
939
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
940
|
+
"windows_x86_64_msvc 0.53.1",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "windows_aarch64_gnullvm"
|
|
945
|
+
version = "0.48.5"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "windows_aarch64_gnullvm"
|
|
951
|
+
version = "0.52.6"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "windows_aarch64_gnullvm"
|
|
957
|
+
version = "0.53.1"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "windows_aarch64_msvc"
|
|
963
|
+
version = "0.48.5"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "windows_aarch64_msvc"
|
|
969
|
+
version = "0.52.6"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "windows_aarch64_msvc"
|
|
975
|
+
version = "0.53.1"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "windows_i686_gnu"
|
|
981
|
+
version = "0.48.5"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "windows_i686_gnu"
|
|
987
|
+
version = "0.52.6"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "windows_i686_gnu"
|
|
993
|
+
version = "0.53.1"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "windows_i686_gnullvm"
|
|
999
|
+
version = "0.52.6"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "windows_i686_gnullvm"
|
|
1005
|
+
version = "0.53.1"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "windows_i686_msvc"
|
|
1011
|
+
version = "0.48.5"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "windows_i686_msvc"
|
|
1017
|
+
version = "0.52.6"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "windows_i686_msvc"
|
|
1023
|
+
version = "0.53.1"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "windows_x86_64_gnu"
|
|
1029
|
+
version = "0.48.5"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "windows_x86_64_gnu"
|
|
1035
|
+
version = "0.52.6"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "windows_x86_64_gnu"
|
|
1041
|
+
version = "0.53.1"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "windows_x86_64_gnullvm"
|
|
1047
|
+
version = "0.48.5"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "windows_x86_64_gnullvm"
|
|
1053
|
+
version = "0.52.6"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "windows_x86_64_gnullvm"
|
|
1059
|
+
version = "0.53.1"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "windows_x86_64_msvc"
|
|
1065
|
+
version = "0.48.5"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "windows_x86_64_msvc"
|
|
1071
|
+
version = "0.52.6"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "windows_x86_64_msvc"
|
|
1077
|
+
version = "0.53.1"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "zerocopy"
|
|
1083
|
+
version = "0.8.33"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"zerocopy-derive",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "zerocopy-derive"
|
|
1092
|
+
version = "0.8.33"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"proc-macro2",
|
|
1097
|
+
"quote",
|
|
1098
|
+
"syn",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "zmij"
|
|
1103
|
+
version = "1.0.14"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"
|