plotui-cli 0.4.1__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.
Files changed (42) hide show
  1. plotui_cli-0.4.1/Cargo.lock +2177 -0
  2. plotui_cli-0.4.1/Cargo.toml +31 -0
  3. plotui_cli-0.4.1/PKG-INFO +233 -0
  4. plotui_cli-0.4.1/README.md +220 -0
  5. plotui_cli-0.4.1/crates/plotui-cli/Cargo.toml +24 -0
  6. plotui_cli-0.4.1/crates/plotui-cli/README.md +220 -0
  7. plotui_cli-0.4.1/crates/plotui-cli/src/build.rs +26 -0
  8. plotui_cli-0.4.1/crates/plotui-cli/src/input.rs +238 -0
  9. plotui_cli-0.4.1/crates/plotui-cli/src/interactive.rs +60 -0
  10. plotui_cli-0.4.1/crates/plotui-cli/src/main.rs +114 -0
  11. plotui_cli-0.4.1/crates/plotui-cli/src/render.rs +61 -0
  12. plotui_cli-0.4.1/crates/plotui-core/Cargo.toml +14 -0
  13. plotui_cli-0.4.1/crates/plotui-core/README.md +220 -0
  14. plotui_cli-0.4.1/crates/plotui-core/src/font.rs +279 -0
  15. plotui_cli-0.4.1/crates/plotui-core/src/hershey.rs +267 -0
  16. plotui_cli-0.4.1/crates/plotui-core/src/lib.rs +2798 -0
  17. plotui_cli-0.4.1/crates/plotui-core/src/ticks.rs +97 -0
  18. plotui_cli-0.4.1/crates/plotui-core/tests/render.rs +860 -0
  19. plotui_cli-0.4.1/crates/plotui-protocol/Cargo.toml +17 -0
  20. plotui_cli-0.4.1/crates/plotui-protocol/README.md +220 -0
  21. plotui_cli-0.4.1/crates/plotui-protocol/src/diacritics.rs +306 -0
  22. plotui_cli-0.4.1/crates/plotui-protocol/src/lib.rs +305 -0
  23. plotui_cli-0.4.1/crates/plotui-protocol/tests/protocol.rs +169 -0
  24. plotui_cli-0.4.1/crates/plotui-ratatui/Cargo.toml +22 -0
  25. plotui_cli-0.4.1/crates/plotui-ratatui/README.md +220 -0
  26. plotui_cli-0.4.1/crates/plotui-ratatui/examples/demo.rs +55 -0
  27. plotui_cli-0.4.1/crates/plotui-ratatui/examples/stream.rs +76 -0
  28. plotui_cli-0.4.1/crates/plotui-ratatui/src/events.rs +177 -0
  29. plotui_cli-0.4.1/crates/plotui-ratatui/src/lib.rs +71 -0
  30. plotui_cli-0.4.1/crates/plotui-ratatui/src/state.rs +306 -0
  31. plotui_cli-0.4.1/crates/plotui-ratatui/src/widget.rs +124 -0
  32. plotui_cli-0.4.1/crates/plotui-ratatui/tests/widget.rs +304 -0
  33. plotui_cli-0.4.1/crates/plotui-term/Cargo.toml +19 -0
  34. plotui_cli-0.4.1/crates/plotui-term/README.md +220 -0
  35. plotui_cli-0.4.1/crates/plotui-term/src/compose.rs +76 -0
  36. plotui_cli-0.4.1/crates/plotui-term/src/detect.rs +128 -0
  37. plotui_cli-0.4.1/crates/plotui-term/src/ids.rs +15 -0
  38. plotui_cli-0.4.1/crates/plotui-term/src/lib.rs +48 -0
  39. plotui_cli-0.4.1/crates/plotui-term/src/policy.rs +102 -0
  40. plotui_cli-0.4.1/crates/plotui-term/src/tmux.rs +31 -0
  41. plotui_cli-0.4.1/crates/plotui-term/tests/term.rs +166 -0
  42. plotui_cli-0.4.1/pyproject.toml +22 -0
@@ -0,0 +1,2177 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anyhow"
78
+ version = "1.0.104"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
81
+
82
+ [[package]]
83
+ name = "approx"
84
+ version = "0.5.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
87
+ dependencies = [
88
+ "num-traits",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "atomic"
93
+ version = "0.6.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
96
+ dependencies = [
97
+ "bytemuck",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "autocfg"
102
+ version = "1.5.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
105
+
106
+ [[package]]
107
+ name = "base64"
108
+ version = "0.22.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
111
+
112
+ [[package]]
113
+ name = "bit-set"
114
+ version = "0.5.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
117
+ dependencies = [
118
+ "bit-vec",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "bit-vec"
123
+ version = "0.6.3"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
126
+
127
+ [[package]]
128
+ name = "bitflags"
129
+ version = "1.3.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
132
+
133
+ [[package]]
134
+ name = "bitflags"
135
+ version = "2.13.1"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
138
+
139
+ [[package]]
140
+ name = "block-buffer"
141
+ version = "0.10.4"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
144
+ dependencies = [
145
+ "generic-array",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "bumpalo"
150
+ version = "3.20.3"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
153
+
154
+ [[package]]
155
+ name = "by_address"
156
+ version = "1.2.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
159
+
160
+ [[package]]
161
+ name = "bytemuck"
162
+ version = "1.25.2"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
165
+
166
+ [[package]]
167
+ name = "castaway"
168
+ version = "0.2.4"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
171
+ dependencies = [
172
+ "rustversion",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "cbindgen"
177
+ version = "0.29.4"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "2ecb53484c9c167ba674026b656d8a27d7657a58e6066aa902bfb1a4aa00ae20"
180
+ dependencies = [
181
+ "heck",
182
+ "indexmap",
183
+ "log",
184
+ "proc-macro2",
185
+ "quote",
186
+ "serde",
187
+ "serde_json",
188
+ "syn 2.0.118",
189
+ "tempfile",
190
+ "toml",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "cfg-if"
195
+ version = "1.0.4"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
198
+
199
+ [[package]]
200
+ name = "cfg_aliases"
201
+ version = "0.2.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
204
+
205
+ [[package]]
206
+ name = "clap"
207
+ version = "4.6.6"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
210
+ dependencies = [
211
+ "clap_builder",
212
+ "clap_derive",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "clap_builder"
217
+ version = "4.6.6"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
220
+ dependencies = [
221
+ "anstream",
222
+ "anstyle",
223
+ "clap_lex",
224
+ "strsim",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "clap_derive"
229
+ version = "4.6.4"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
232
+ dependencies = [
233
+ "heck",
234
+ "proc-macro2",
235
+ "quote",
236
+ "syn 3.0.4",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "clap_lex"
241
+ version = "1.1.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
244
+
245
+ [[package]]
246
+ name = "colorchoice"
247
+ version = "1.0.5"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
250
+
251
+ [[package]]
252
+ name = "compact_str"
253
+ version = "0.9.1"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
256
+ dependencies = [
257
+ "castaway",
258
+ "cfg-if",
259
+ "itoa",
260
+ "rustversion",
261
+ "ryu",
262
+ "static_assertions",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "convert_case"
267
+ version = "0.10.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
270
+ dependencies = [
271
+ "unicode-segmentation",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "cpufeatures"
276
+ version = "0.2.17"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
279
+ dependencies = [
280
+ "libc",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "crc32fast"
285
+ version = "1.5.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
288
+ dependencies = [
289
+ "cfg-if",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "critical-section"
294
+ version = "1.2.0"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
297
+
298
+ [[package]]
299
+ name = "crossterm"
300
+ version = "0.29.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
303
+ dependencies = [
304
+ "bitflags 2.13.1",
305
+ "crossterm_winapi",
306
+ "derive_more",
307
+ "document-features",
308
+ "mio",
309
+ "parking_lot",
310
+ "rustix",
311
+ "signal-hook",
312
+ "signal-hook-mio",
313
+ "winapi",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "crossterm_winapi"
318
+ version = "0.9.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
321
+ dependencies = [
322
+ "winapi",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "crypto-common"
327
+ version = "0.1.7"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
330
+ dependencies = [
331
+ "generic-array",
332
+ "typenum",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "csscolorparser"
337
+ version = "0.6.2"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
340
+ dependencies = [
341
+ "lab",
342
+ "phf",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "darling"
347
+ version = "0.24.1"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "ed17f5901b6630b993ca003def43f2f8ef4014fc13b047b57aad617ff32bc2ec"
350
+ dependencies = [
351
+ "darling_core",
352
+ "darling_macro",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "darling_core"
357
+ version = "0.24.1"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "6837e2cf7485aaae18f86181d2f0e9a7ed297a025e220aeabf63fdebd3a2ddff"
360
+ dependencies = [
361
+ "ident_case",
362
+ "proc-macro2",
363
+ "quote",
364
+ "strsim",
365
+ "syn 3.0.4",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "darling_macro"
370
+ version = "0.24.1"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "2ac7135c3ef02b2f7833bbeb1be5ba7f966dcde8a87c6b87f65a778d71a02785"
373
+ dependencies = [
374
+ "darling_core",
375
+ "quote",
376
+ "syn 3.0.4",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "deltae"
381
+ version = "0.3.2"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
384
+
385
+ [[package]]
386
+ name = "deranged"
387
+ version = "0.5.8"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
390
+
391
+ [[package]]
392
+ name = "derive_more"
393
+ version = "2.1.1"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
396
+ dependencies = [
397
+ "derive_more-impl",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "derive_more-impl"
402
+ version = "2.1.1"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
405
+ dependencies = [
406
+ "convert_case",
407
+ "proc-macro2",
408
+ "quote",
409
+ "rustc_version",
410
+ "syn 2.0.118",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "digest"
415
+ version = "0.10.7"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
418
+ dependencies = [
419
+ "block-buffer",
420
+ "crypto-common",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "document-features"
425
+ version = "0.2.12"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
428
+ dependencies = [
429
+ "litrs",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "either"
434
+ version = "1.18.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
437
+
438
+ [[package]]
439
+ name = "equivalent"
440
+ version = "1.0.2"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
443
+
444
+ [[package]]
445
+ name = "errno"
446
+ version = "0.3.14"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
449
+ dependencies = [
450
+ "libc",
451
+ "windows-sys",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "euclid"
456
+ version = "0.22.14"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
459
+ dependencies = [
460
+ "num-traits",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "fancy-regex"
465
+ version = "0.11.0"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
468
+ dependencies = [
469
+ "bit-set",
470
+ "regex",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "fastrand"
475
+ version = "2.5.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
478
+
479
+ [[package]]
480
+ name = "filedescriptor"
481
+ version = "0.8.3"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
484
+ dependencies = [
485
+ "libc",
486
+ "thiserror 1.0.69",
487
+ "winapi",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "finl_unicode"
492
+ version = "1.4.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "9844ddc3a6e533d62bba727eb6c28b5d360921d5175e9ff0f1e621a5c590a4d5"
495
+
496
+ [[package]]
497
+ name = "fixedbitset"
498
+ version = "0.4.2"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
501
+
502
+ [[package]]
503
+ name = "flate2"
504
+ version = "1.1.9"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
507
+ dependencies = [
508
+ "crc32fast",
509
+ "miniz_oxide",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "fnv"
514
+ version = "1.0.7"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
517
+
518
+ [[package]]
519
+ name = "foldhash"
520
+ version = "0.2.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
523
+
524
+ [[package]]
525
+ name = "futures-core"
526
+ version = "0.3.34"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
529
+
530
+ [[package]]
531
+ name = "futures-task"
532
+ version = "0.3.34"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
535
+
536
+ [[package]]
537
+ name = "futures-util"
538
+ version = "0.3.34"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
541
+ dependencies = [
542
+ "futures-core",
543
+ "futures-task",
544
+ "pin-project-lite",
545
+ "slab",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "generic-array"
550
+ version = "0.14.7"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
553
+ dependencies = [
554
+ "typenum",
555
+ "version_check",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "getrandom"
560
+ version = "0.3.4"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
563
+ dependencies = [
564
+ "cfg-if",
565
+ "libc",
566
+ "r-efi 5.3.0",
567
+ "wasip2",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "getrandom"
572
+ version = "0.4.3"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
575
+ dependencies = [
576
+ "cfg-if",
577
+ "libc",
578
+ "r-efi 6.0.0",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "hashbrown"
583
+ version = "0.16.1"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
586
+ dependencies = [
587
+ "allocator-api2",
588
+ "equivalent",
589
+ "foldhash",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "hashbrown"
594
+ version = "0.17.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
597
+ dependencies = [
598
+ "allocator-api2",
599
+ "equivalent",
600
+ "foldhash",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "heck"
605
+ version = "0.5.0"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
608
+
609
+ [[package]]
610
+ name = "hex"
611
+ version = "0.4.3"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
614
+
615
+ [[package]]
616
+ name = "ident_case"
617
+ version = "1.0.1"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
620
+
621
+ [[package]]
622
+ name = "indexmap"
623
+ version = "2.14.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
626
+ dependencies = [
627
+ "equivalent",
628
+ "hashbrown 0.17.1",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "indoc"
633
+ version = "2.0.7"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
636
+ dependencies = [
637
+ "rustversion",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "instability"
642
+ version = "0.3.13"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "2bf84e73fa6f27f299dec58e13223cf70db80da872eb921d4f6138342a0eabc8"
645
+ dependencies = [
646
+ "darling",
647
+ "indoc",
648
+ "proc-macro2",
649
+ "quote",
650
+ "syn 3.0.4",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "is_terminal_polyfill"
655
+ version = "1.70.2"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
658
+
659
+ [[package]]
660
+ name = "itertools"
661
+ version = "0.14.0"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
664
+ dependencies = [
665
+ "either",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "itoa"
670
+ version = "1.0.18"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
673
+
674
+ [[package]]
675
+ name = "js-sys"
676
+ version = "0.3.104"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
679
+ dependencies = [
680
+ "cfg-if",
681
+ "futures-util",
682
+ "wasm-bindgen",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "kasuari"
687
+ version = "0.4.12"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "bde5057d6143cc94e861d90f591b9303d6716c6b9602309150bd068853c10899"
690
+ dependencies = [
691
+ "hashbrown 0.16.1",
692
+ "portable-atomic",
693
+ "thiserror 2.0.20",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "lab"
698
+ version = "0.11.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f"
701
+
702
+ [[package]]
703
+ name = "lazy_static"
704
+ version = "1.5.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
707
+
708
+ [[package]]
709
+ name = "libc"
710
+ version = "0.2.186"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
713
+
714
+ [[package]]
715
+ name = "libm"
716
+ version = "0.2.16"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
719
+
720
+ [[package]]
721
+ name = "line-clipping"
722
+ version = "0.3.8"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "e752191d037c44ad111a8caa762921926658402f01cc1253f7bef2020ece4f5e"
725
+ dependencies = [
726
+ "bitflags 2.13.1",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "linux-raw-sys"
731
+ version = "0.12.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
734
+
735
+ [[package]]
736
+ name = "litrs"
737
+ version = "1.0.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
740
+
741
+ [[package]]
742
+ name = "lock_api"
743
+ version = "0.4.14"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
746
+ dependencies = [
747
+ "scopeguard",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "log"
752
+ version = "0.4.34"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
755
+
756
+ [[package]]
757
+ name = "lru"
758
+ version = "0.18.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "0d317b4b9eb398e6acce275758ec6125535505e7a146fb1a9b8bda2451b0ff4c"
761
+ dependencies = [
762
+ "hashbrown 0.17.1",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "mac_address"
767
+ version = "1.1.8"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "c0aeb26bf5e836cc1c341c8106051b573f1766dfa05aa87f0b98be5e51b02303"
770
+ dependencies = [
771
+ "nix",
772
+ "winapi",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "matrixmultiply"
777
+ version = "0.3.11"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
780
+ dependencies = [
781
+ "autocfg",
782
+ "rawpointer",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "memchr"
787
+ version = "2.8.3"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
790
+
791
+ [[package]]
792
+ name = "memmem"
793
+ version = "0.1.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15"
796
+
797
+ [[package]]
798
+ name = "memoffset"
799
+ version = "0.9.1"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
802
+ dependencies = [
803
+ "autocfg",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "minimal-lexical"
808
+ version = "0.2.1"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
811
+
812
+ [[package]]
813
+ name = "miniz_oxide"
814
+ version = "0.8.9"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
817
+ dependencies = [
818
+ "adler2",
819
+ "simd-adler32",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "mio"
824
+ version = "1.2.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
827
+ dependencies = [
828
+ "libc",
829
+ "log",
830
+ "wasi",
831
+ "windows-sys",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "ndarray"
836
+ version = "0.16.1"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
839
+ dependencies = [
840
+ "matrixmultiply",
841
+ "num-complex",
842
+ "num-integer",
843
+ "num-traits",
844
+ "portable-atomic",
845
+ "portable-atomic-util",
846
+ "rawpointer",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "nix"
851
+ version = "0.29.0"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
854
+ dependencies = [
855
+ "bitflags 2.13.1",
856
+ "cfg-if",
857
+ "cfg_aliases",
858
+ "libc",
859
+ "memoffset",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "nom"
864
+ version = "7.1.3"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
867
+ dependencies = [
868
+ "memchr",
869
+ "minimal-lexical",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "num-complex"
874
+ version = "0.4.6"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
877
+ dependencies = [
878
+ "num-traits",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "num-conv"
883
+ version = "0.2.2"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
886
+
887
+ [[package]]
888
+ name = "num-derive"
889
+ version = "0.4.2"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
892
+ dependencies = [
893
+ "proc-macro2",
894
+ "quote",
895
+ "syn 2.0.118",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "num-integer"
900
+ version = "0.1.47"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
903
+ dependencies = [
904
+ "num-traits",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "num-traits"
909
+ version = "0.2.19"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
912
+ dependencies = [
913
+ "autocfg",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "num_threads"
918
+ version = "0.1.7"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
921
+ dependencies = [
922
+ "libc",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "numpy"
927
+ version = "0.25.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "29f1dee9aa8d3f6f8e8b9af3803006101bb3653866ef056d530d53ae68587191"
930
+ dependencies = [
931
+ "libc",
932
+ "ndarray",
933
+ "num-complex",
934
+ "num-integer",
935
+ "num-traits",
936
+ "pyo3",
937
+ "pyo3-build-config",
938
+ "rustc-hash",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "once_cell"
943
+ version = "1.21.4"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
946
+
947
+ [[package]]
948
+ name = "once_cell_polyfill"
949
+ version = "1.70.2"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
952
+
953
+ [[package]]
954
+ name = "ordered-float"
955
+ version = "4.6.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
958
+ dependencies = [
959
+ "num-traits",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "palette"
964
+ version = "0.7.7"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "ddeed8580d347d2abf3dcf06a5f0b3dc020258338526b277847cd4248a70fc64"
967
+ dependencies = [
968
+ "approx",
969
+ "libm",
970
+ "palette_derive",
971
+ "palette_math",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "palette_derive"
976
+ version = "0.7.7"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "88537020289b719d81be994ccf1bbf4990f477e2f69ee52fe3e45f43a02e56be"
979
+ dependencies = [
980
+ "by_address",
981
+ "proc-macro2",
982
+ "quote",
983
+ "syn 2.0.118",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "palette_math"
988
+ version = "0.7.7"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "6e6eb142958d64335fb0e345c5b9ead2ecd6fc438c307e9d7d3c4fd428dbaf12"
991
+ dependencies = [
992
+ "libm",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "parking_lot"
997
+ version = "0.12.5"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1000
+ dependencies = [
1001
+ "lock_api",
1002
+ "parking_lot_core",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "parking_lot_core"
1007
+ version = "0.9.12"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1010
+ dependencies = [
1011
+ "cfg-if",
1012
+ "libc",
1013
+ "redox_syscall",
1014
+ "smallvec",
1015
+ "windows-link",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "pest"
1020
+ version = "2.9.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "5a07a60cc7a4d00c91f95c685609d1d2f79050e6804b70ebedd7650f0b839bcf"
1023
+ dependencies = [
1024
+ "memchr",
1025
+ "ucd-trie",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "pest_derive"
1030
+ version = "2.9.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "b3a83744a5c8455b8b3e0dc5031362780a347c878bdd11584d1a8984228cc88d"
1033
+ dependencies = [
1034
+ "pest",
1035
+ "pest_generator",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "pest_generator"
1040
+ version = "2.9.0"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "e0cd3451aa3de60d4b9a1e736885e4dea6b31617598026f12256ad566d63304a"
1043
+ dependencies = [
1044
+ "pest",
1045
+ "pest_meta",
1046
+ "proc-macro2",
1047
+ "quote",
1048
+ "syn 2.0.118",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "pest_meta"
1053
+ version = "2.9.0"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "e04d3a0849e241d7dfce834c83b1c5edc8622009e8dd51a12ba1927c32f05496"
1056
+ dependencies = [
1057
+ "pest",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "phf"
1062
+ version = "0.11.3"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1065
+ dependencies = [
1066
+ "phf_macros",
1067
+ "phf_shared",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "phf_codegen"
1072
+ version = "0.11.3"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1075
+ dependencies = [
1076
+ "phf_generator",
1077
+ "phf_shared",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "phf_generator"
1082
+ version = "0.11.3"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1085
+ dependencies = [
1086
+ "phf_shared",
1087
+ "rand",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "phf_macros"
1092
+ version = "0.11.3"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1095
+ dependencies = [
1096
+ "phf_generator",
1097
+ "phf_shared",
1098
+ "proc-macro2",
1099
+ "quote",
1100
+ "syn 2.0.118",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "phf_shared"
1105
+ version = "0.11.3"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1108
+ dependencies = [
1109
+ "siphasher",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "pin-project-lite"
1114
+ version = "0.2.17"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1117
+
1118
+ [[package]]
1119
+ name = "plotui"
1120
+ version = "0.4.1"
1121
+ dependencies = [
1122
+ "clap",
1123
+ "crossterm",
1124
+ "plotui-core",
1125
+ "plotui-ratatui",
1126
+ "plotui-term",
1127
+ "ratatui",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "plotui-bind"
1132
+ version = "0.4.1"
1133
+ dependencies = [
1134
+ "plotui-core",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "plotui-core"
1139
+ version = "0.4.1"
1140
+
1141
+ [[package]]
1142
+ name = "plotui-ffi"
1143
+ version = "0.4.1"
1144
+ dependencies = [
1145
+ "cbindgen",
1146
+ "plotui-bind",
1147
+ "plotui-core",
1148
+ "plotui-protocol",
1149
+ "plotui-term",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "plotui-protocol"
1154
+ version = "0.4.1"
1155
+ dependencies = [
1156
+ "base64",
1157
+ "flate2",
1158
+ "plotui-core",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "plotui-py"
1163
+ version = "0.4.1"
1164
+ dependencies = [
1165
+ "numpy",
1166
+ "plotui-bind",
1167
+ "plotui-core",
1168
+ "plotui-protocol",
1169
+ "plotui-term",
1170
+ "pyo3",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "plotui-ratatui"
1175
+ version = "0.4.1"
1176
+ dependencies = [
1177
+ "crossterm",
1178
+ "plotui-core",
1179
+ "plotui-protocol",
1180
+ "plotui-term",
1181
+ "ratatui",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "plotui-term"
1186
+ version = "0.4.1"
1187
+ dependencies = [
1188
+ "plotui-core",
1189
+ "plotui-protocol",
1190
+ "rustix",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "plotui-wasm"
1195
+ version = "0.4.1"
1196
+ dependencies = [
1197
+ "plotui-bind",
1198
+ "plotui-core",
1199
+ "wasm-bindgen",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "portable-atomic"
1204
+ version = "1.13.1"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1207
+
1208
+ [[package]]
1209
+ name = "portable-atomic-util"
1210
+ version = "0.2.7"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1213
+ dependencies = [
1214
+ "portable-atomic",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "powerfmt"
1219
+ version = "0.2.0"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1222
+
1223
+ [[package]]
1224
+ name = "proc-macro2"
1225
+ version = "1.0.106"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1228
+ dependencies = [
1229
+ "unicode-ident",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "pyo3"
1234
+ version = "0.25.1"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
1237
+ dependencies = [
1238
+ "indoc",
1239
+ "libc",
1240
+ "memoffset",
1241
+ "once_cell",
1242
+ "portable-atomic",
1243
+ "pyo3-build-config",
1244
+ "pyo3-ffi",
1245
+ "pyo3-macros",
1246
+ "unindent",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "pyo3-build-config"
1251
+ version = "0.25.1"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
1254
+ dependencies = [
1255
+ "once_cell",
1256
+ "target-lexicon",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "pyo3-ffi"
1261
+ version = "0.25.1"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
1264
+ dependencies = [
1265
+ "libc",
1266
+ "pyo3-build-config",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "pyo3-macros"
1271
+ version = "0.25.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
1274
+ dependencies = [
1275
+ "proc-macro2",
1276
+ "pyo3-macros-backend",
1277
+ "quote",
1278
+ "syn 2.0.118",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "pyo3-macros-backend"
1283
+ version = "0.25.1"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
1286
+ dependencies = [
1287
+ "heck",
1288
+ "proc-macro2",
1289
+ "pyo3-build-config",
1290
+ "quote",
1291
+ "syn 2.0.118",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "quote"
1296
+ version = "1.0.46"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1299
+ dependencies = [
1300
+ "proc-macro2",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "r-efi"
1305
+ version = "5.3.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1308
+
1309
+ [[package]]
1310
+ name = "r-efi"
1311
+ version = "6.0.0"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1314
+
1315
+ [[package]]
1316
+ name = "rand"
1317
+ version = "0.8.8"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
1320
+ dependencies = [
1321
+ "rand_core",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "rand_core"
1326
+ version = "0.6.4"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1329
+
1330
+ [[package]]
1331
+ name = "ratatui"
1332
+ version = "0.30.2"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "3274ba0a2c5e1bcad2a2005d20f4dc59dad26b2eb0940fb094500dba4099d57d"
1335
+ dependencies = [
1336
+ "instability",
1337
+ "ratatui-core",
1338
+ "ratatui-crossterm",
1339
+ "ratatui-macros",
1340
+ "ratatui-termina",
1341
+ "ratatui-termwiz",
1342
+ "ratatui-widgets",
1343
+ "serde",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "ratatui-core"
1348
+ version = "0.1.2"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "cbb175c433c8e28a809d1f5773a2ae96e68c0ce40db865cbab1020bf33ae479c"
1351
+ dependencies = [
1352
+ "bitflags 2.13.1",
1353
+ "compact_str",
1354
+ "critical-section",
1355
+ "hashbrown 0.17.1",
1356
+ "itertools",
1357
+ "kasuari",
1358
+ "lru",
1359
+ "palette",
1360
+ "serde",
1361
+ "strum",
1362
+ "thiserror 2.0.20",
1363
+ "unicode-segmentation",
1364
+ "unicode-truncate",
1365
+ "unicode-width",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "ratatui-crossterm"
1370
+ version = "0.1.2"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "567584a3b0e6a8203c23de40b4861497266725eb5363dbfd18a1edd603cca9f0"
1373
+ dependencies = [
1374
+ "cfg-if",
1375
+ "crossterm",
1376
+ "instability",
1377
+ "ratatui-core",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "ratatui-macros"
1382
+ version = "0.7.2"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "ed7dc68daa7498a43e4d68e0eb078427e10c38fbcfbb1e42d955f1fa2140d814"
1385
+ dependencies = [
1386
+ "ratatui-core",
1387
+ "ratatui-widgets",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "ratatui-termina"
1392
+ version = "0.1.0"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "c0bf912d9e66f057a759d92e386a280ea886b352ab757d6ac4d653c7ed2c43c2"
1395
+ dependencies = [
1396
+ "instability",
1397
+ "ratatui-core",
1398
+ "termina",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "ratatui-termwiz"
1403
+ version = "0.1.2"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "faf03e0380b7744054d6cb74224fe3adf062a029754933f575ca1e3b4c2ce977"
1406
+ dependencies = [
1407
+ "ratatui-core",
1408
+ "termwiz",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "ratatui-widgets"
1413
+ version = "0.3.2"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "66e3d19bcc9130ca376277d93b60767ff121ace3be06f5f95f81dd68956407d1"
1416
+ dependencies = [
1417
+ "bitflags 2.13.1",
1418
+ "hashbrown 0.17.1",
1419
+ "indoc",
1420
+ "instability",
1421
+ "itertools",
1422
+ "line-clipping",
1423
+ "ratatui-core",
1424
+ "serde",
1425
+ "strum",
1426
+ "time",
1427
+ "unicode-segmentation",
1428
+ "unicode-width",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "rawpointer"
1433
+ version = "0.2.1"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1436
+
1437
+ [[package]]
1438
+ name = "redox_syscall"
1439
+ version = "0.5.18"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1442
+ dependencies = [
1443
+ "bitflags 2.13.1",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "regex"
1448
+ version = "1.13.1"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1451
+ dependencies = [
1452
+ "aho-corasick",
1453
+ "memchr",
1454
+ "regex-automata",
1455
+ "regex-syntax",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "regex-automata"
1460
+ version = "0.4.18"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1463
+ dependencies = [
1464
+ "aho-corasick",
1465
+ "memchr",
1466
+ "regex-syntax",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "regex-syntax"
1471
+ version = "0.8.11"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1474
+
1475
+ [[package]]
1476
+ name = "rustc-hash"
1477
+ version = "2.1.3"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1480
+
1481
+ [[package]]
1482
+ name = "rustc_version"
1483
+ version = "0.4.1"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1486
+ dependencies = [
1487
+ "semver",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "rustix"
1492
+ version = "1.1.4"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1495
+ dependencies = [
1496
+ "bitflags 2.13.1",
1497
+ "errno",
1498
+ "libc",
1499
+ "linux-raw-sys",
1500
+ "windows-sys",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "rustversion"
1505
+ version = "1.0.23"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1508
+
1509
+ [[package]]
1510
+ name = "ryu"
1511
+ version = "1.0.23"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1514
+
1515
+ [[package]]
1516
+ name = "scopeguard"
1517
+ version = "1.2.0"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1520
+
1521
+ [[package]]
1522
+ name = "semver"
1523
+ version = "1.0.28"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1526
+
1527
+ [[package]]
1528
+ name = "serde"
1529
+ version = "1.0.229"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1532
+ dependencies = [
1533
+ "serde_core",
1534
+ "serde_derive",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "serde_core"
1539
+ version = "1.0.229"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1542
+ dependencies = [
1543
+ "serde_derive",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "serde_derive"
1548
+ version = "1.0.229"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1551
+ dependencies = [
1552
+ "proc-macro2",
1553
+ "quote",
1554
+ "syn 3.0.4",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "serde_json"
1559
+ version = "1.0.151"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1562
+ dependencies = [
1563
+ "itoa",
1564
+ "memchr",
1565
+ "serde",
1566
+ "serde_core",
1567
+ "zmij",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "serde_spanned"
1572
+ version = "1.1.1"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1575
+ dependencies = [
1576
+ "serde_core",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "sha2"
1581
+ version = "0.10.9"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1584
+ dependencies = [
1585
+ "cfg-if",
1586
+ "cpufeatures",
1587
+ "digest",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "signal-hook"
1592
+ version = "0.3.18"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1595
+ dependencies = [
1596
+ "libc",
1597
+ "signal-hook-registry",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "signal-hook-mio"
1602
+ version = "0.2.5"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1605
+ dependencies = [
1606
+ "libc",
1607
+ "mio",
1608
+ "signal-hook",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "signal-hook-registry"
1613
+ version = "1.4.8"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1616
+ dependencies = [
1617
+ "errno",
1618
+ "libc",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "simd-adler32"
1623
+ version = "0.3.9"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1626
+
1627
+ [[package]]
1628
+ name = "siphasher"
1629
+ version = "1.0.3"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1632
+
1633
+ [[package]]
1634
+ name = "slab"
1635
+ version = "0.4.12"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1638
+
1639
+ [[package]]
1640
+ name = "smallvec"
1641
+ version = "1.15.2"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1644
+
1645
+ [[package]]
1646
+ name = "static_assertions"
1647
+ version = "1.1.0"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1650
+
1651
+ [[package]]
1652
+ name = "strsim"
1653
+ version = "0.11.1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1656
+
1657
+ [[package]]
1658
+ name = "strum"
1659
+ version = "0.28.0"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
1662
+ dependencies = [
1663
+ "strum_macros",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "strum_macros"
1668
+ version = "0.28.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
1671
+ dependencies = [
1672
+ "heck",
1673
+ "proc-macro2",
1674
+ "quote",
1675
+ "syn 2.0.118",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "syn"
1680
+ version = "1.0.109"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1683
+ dependencies = [
1684
+ "proc-macro2",
1685
+ "quote",
1686
+ "unicode-ident",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "syn"
1691
+ version = "2.0.118"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1694
+ dependencies = [
1695
+ "proc-macro2",
1696
+ "quote",
1697
+ "unicode-ident",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "syn"
1702
+ version = "3.0.4"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
1705
+ dependencies = [
1706
+ "proc-macro2",
1707
+ "quote",
1708
+ "unicode-ident",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "target-lexicon"
1713
+ version = "0.13.5"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1716
+
1717
+ [[package]]
1718
+ name = "tempfile"
1719
+ version = "3.27.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1722
+ dependencies = [
1723
+ "fastrand",
1724
+ "getrandom 0.4.3",
1725
+ "once_cell",
1726
+ "rustix",
1727
+ "windows-sys",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "termina"
1732
+ version = "0.3.3"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "9048a889effe34a5cddee0af7f53285198b16dca3be510858d38dfdb3e62a04e"
1735
+ dependencies = [
1736
+ "bitflags 2.13.1",
1737
+ "parking_lot",
1738
+ "rustix",
1739
+ "signal-hook",
1740
+ "windows-sys",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "terminfo"
1745
+ version = "0.9.0"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
1748
+ dependencies = [
1749
+ "fnv",
1750
+ "nom",
1751
+ "phf",
1752
+ "phf_codegen",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "termios"
1757
+ version = "0.3.3"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
1760
+ dependencies = [
1761
+ "libc",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "termwiz"
1766
+ version = "0.23.3"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "4676b37242ccbd1aabf56edb093a4827dc49086c0ffd764a5705899e0f35f8f7"
1769
+ dependencies = [
1770
+ "anyhow",
1771
+ "base64",
1772
+ "bitflags 2.13.1",
1773
+ "fancy-regex",
1774
+ "filedescriptor",
1775
+ "finl_unicode",
1776
+ "fixedbitset",
1777
+ "hex",
1778
+ "lazy_static",
1779
+ "libc",
1780
+ "log",
1781
+ "memmem",
1782
+ "nix",
1783
+ "num-derive",
1784
+ "num-traits",
1785
+ "ordered-float",
1786
+ "pest",
1787
+ "pest_derive",
1788
+ "phf",
1789
+ "sha2",
1790
+ "signal-hook",
1791
+ "siphasher",
1792
+ "terminfo",
1793
+ "termios",
1794
+ "thiserror 1.0.69",
1795
+ "ucd-trie",
1796
+ "unicode-segmentation",
1797
+ "vtparse",
1798
+ "wezterm-bidi",
1799
+ "wezterm-blob-leases",
1800
+ "wezterm-color-types",
1801
+ "wezterm-dynamic",
1802
+ "wezterm-input-types",
1803
+ "winapi",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "thiserror"
1808
+ version = "1.0.69"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1811
+ dependencies = [
1812
+ "thiserror-impl 1.0.69",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "thiserror"
1817
+ version = "2.0.20"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1820
+ dependencies = [
1821
+ "thiserror-impl 2.0.20",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "thiserror-impl"
1826
+ version = "1.0.69"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1829
+ dependencies = [
1830
+ "proc-macro2",
1831
+ "quote",
1832
+ "syn 2.0.118",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "thiserror-impl"
1837
+ version = "2.0.20"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1840
+ dependencies = [
1841
+ "proc-macro2",
1842
+ "quote",
1843
+ "syn 3.0.4",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "time"
1848
+ version = "0.3.55"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
1851
+ dependencies = [
1852
+ "deranged",
1853
+ "libc",
1854
+ "num-conv",
1855
+ "num_threads",
1856
+ "powerfmt",
1857
+ "serde_core",
1858
+ "time-core",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "time-core"
1863
+ version = "0.1.9"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
1866
+
1867
+ [[package]]
1868
+ name = "toml"
1869
+ version = "0.9.12+spec-1.1.0"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
1872
+ dependencies = [
1873
+ "indexmap",
1874
+ "serde_core",
1875
+ "serde_spanned",
1876
+ "toml_datetime",
1877
+ "toml_parser",
1878
+ "toml_writer",
1879
+ "winnow 0.7.15",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "toml_datetime"
1884
+ version = "0.7.5+spec-1.1.0"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1887
+ dependencies = [
1888
+ "serde_core",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "toml_parser"
1893
+ version = "1.1.3+spec-1.1.0"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
1896
+ dependencies = [
1897
+ "winnow 1.0.4",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "toml_writer"
1902
+ version = "1.1.2+spec-1.1.0"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
1905
+
1906
+ [[package]]
1907
+ name = "typenum"
1908
+ version = "1.20.1"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1911
+
1912
+ [[package]]
1913
+ name = "ucd-trie"
1914
+ version = "0.1.7"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1917
+
1918
+ [[package]]
1919
+ name = "unicode-ident"
1920
+ version = "1.0.24"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1923
+
1924
+ [[package]]
1925
+ name = "unicode-segmentation"
1926
+ version = "1.13.3"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1929
+
1930
+ [[package]]
1931
+ name = "unicode-truncate"
1932
+ version = "2.0.1"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "16b380a1238663e5f8a691f9039c73e1cdae598a30e9855f541d29b08b53e9a5"
1935
+ dependencies = [
1936
+ "itertools",
1937
+ "unicode-segmentation",
1938
+ "unicode-width",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "unicode-width"
1943
+ version = "0.2.2"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1946
+
1947
+ [[package]]
1948
+ name = "unindent"
1949
+ version = "0.2.4"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1952
+
1953
+ [[package]]
1954
+ name = "utf8parse"
1955
+ version = "0.2.2"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1958
+
1959
+ [[package]]
1960
+ name = "uuid"
1961
+ version = "1.26.0"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
1964
+ dependencies = [
1965
+ "atomic",
1966
+ "getrandom 0.4.3",
1967
+ "js-sys",
1968
+ "wasm-bindgen",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "version_check"
1973
+ version = "0.9.5"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1976
+
1977
+ [[package]]
1978
+ name = "vtparse"
1979
+ version = "0.6.2"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "6d9b2acfb050df409c972a37d3b8e08cdea3bddb0c09db9d53137e504cfabed0"
1982
+ dependencies = [
1983
+ "utf8parse",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "wasi"
1988
+ version = "0.11.1+wasi-snapshot-preview1"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1991
+
1992
+ [[package]]
1993
+ name = "wasip2"
1994
+ version = "1.0.4+wasi-0.2.12"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1997
+ dependencies = [
1998
+ "wit-bindgen",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "wasm-bindgen"
2003
+ version = "0.2.127"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
2006
+ dependencies = [
2007
+ "cfg-if",
2008
+ "once_cell",
2009
+ "rustversion",
2010
+ "wasm-bindgen-macro",
2011
+ "wasm-bindgen-shared",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "wasm-bindgen-macro"
2016
+ version = "0.2.127"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
2019
+ dependencies = [
2020
+ "quote",
2021
+ "wasm-bindgen-macro-support",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "wasm-bindgen-macro-support"
2026
+ version = "0.2.127"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
2029
+ dependencies = [
2030
+ "bumpalo",
2031
+ "proc-macro2",
2032
+ "quote",
2033
+ "syn 2.0.118",
2034
+ "wasm-bindgen-shared",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "wasm-bindgen-shared"
2039
+ version = "0.2.127"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
2042
+ dependencies = [
2043
+ "unicode-ident",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "wezterm-bidi"
2048
+ version = "0.2.3"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
2051
+ dependencies = [
2052
+ "log",
2053
+ "wezterm-dynamic",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "wezterm-blob-leases"
2058
+ version = "0.1.1"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "692daff6d93d94e29e4114544ef6d5c942a7ed998b37abdc19b17136ea428eb7"
2061
+ dependencies = [
2062
+ "getrandom 0.3.4",
2063
+ "mac_address",
2064
+ "sha2",
2065
+ "thiserror 1.0.69",
2066
+ "uuid",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "wezterm-color-types"
2071
+ version = "0.3.0"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "7de81ef35c9010270d63772bebef2f2d6d1f2d20a983d27505ac850b8c4b4296"
2074
+ dependencies = [
2075
+ "csscolorparser",
2076
+ "deltae",
2077
+ "lazy_static",
2078
+ "wezterm-dynamic",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "wezterm-dynamic"
2083
+ version = "0.2.1"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
2086
+ dependencies = [
2087
+ "log",
2088
+ "ordered-float",
2089
+ "strsim",
2090
+ "thiserror 1.0.69",
2091
+ "wezterm-dynamic-derive",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "wezterm-dynamic-derive"
2096
+ version = "0.1.1"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
2099
+ dependencies = [
2100
+ "proc-macro2",
2101
+ "quote",
2102
+ "syn 1.0.109",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "wezterm-input-types"
2107
+ version = "0.1.0"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "7012add459f951456ec9d6c7e6fc340b1ce15d6fc9629f8c42853412c029e57e"
2110
+ dependencies = [
2111
+ "bitflags 1.3.2",
2112
+ "euclid",
2113
+ "lazy_static",
2114
+ "serde",
2115
+ "wezterm-dynamic",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "winapi"
2120
+ version = "0.3.9"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2123
+ dependencies = [
2124
+ "winapi-i686-pc-windows-gnu",
2125
+ "winapi-x86_64-pc-windows-gnu",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "winapi-i686-pc-windows-gnu"
2130
+ version = "0.4.0"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2133
+
2134
+ [[package]]
2135
+ name = "winapi-x86_64-pc-windows-gnu"
2136
+ version = "0.4.0"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2139
+
2140
+ [[package]]
2141
+ name = "windows-link"
2142
+ version = "0.2.1"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2145
+
2146
+ [[package]]
2147
+ name = "windows-sys"
2148
+ version = "0.61.2"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2151
+ dependencies = [
2152
+ "windows-link",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "winnow"
2157
+ version = "0.7.15"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2160
+
2161
+ [[package]]
2162
+ name = "winnow"
2163
+ version = "1.0.4"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2166
+
2167
+ [[package]]
2168
+ name = "wit-bindgen"
2169
+ version = "0.57.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2172
+
2173
+ [[package]]
2174
+ name = "zmij"
2175
+ version = "1.0.23"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"