eulumdat 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. eulumdat-0.2.0/Cargo.lock +1947 -0
  2. eulumdat-0.2.0/Cargo.toml +36 -0
  3. eulumdat-0.2.0/PKG-INFO +97 -0
  4. eulumdat-0.2.0/README.md +72 -0
  5. eulumdat-0.2.0/crates/eulumdat/Cargo.toml +24 -0
  6. eulumdat-0.2.0/crates/eulumdat/README.md +229 -0
  7. eulumdat-0.2.0/crates/eulumdat/examples/parse_road.rs +70 -0
  8. eulumdat-0.2.0/crates/eulumdat/src/bug_rating.rs +928 -0
  9. eulumdat-0.2.0/crates/eulumdat/src/calculations.rs +398 -0
  10. eulumdat-0.2.0/crates/eulumdat/src/diagram/butterfly.rs +440 -0
  11. eulumdat-0.2.0/crates/eulumdat/src/diagram/cartesian.rs +297 -0
  12. eulumdat-0.2.0/crates/eulumdat/src/diagram/color.rs +201 -0
  13. eulumdat-0.2.0/crates/eulumdat/src/diagram/heatmap.rs +361 -0
  14. eulumdat-0.2.0/crates/eulumdat/src/diagram/mod.rs +142 -0
  15. eulumdat-0.2.0/crates/eulumdat/src/diagram/polar.rs +414 -0
  16. eulumdat-0.2.0/crates/eulumdat/src/diagram/projection.rs +154 -0
  17. eulumdat-0.2.0/crates/eulumdat/src/diagram/svg.rs +820 -0
  18. eulumdat-0.2.0/crates/eulumdat/src/error.rs +13 -0
  19. eulumdat-0.2.0/crates/eulumdat/src/eulumdat.rs +364 -0
  20. eulumdat-0.2.0/crates/eulumdat/src/ies.rs +734 -0
  21. eulumdat-0.2.0/crates/eulumdat/src/lib.rs +186 -0
  22. eulumdat-0.2.0/crates/eulumdat/src/parser.rs +335 -0
  23. eulumdat-0.2.0/crates/eulumdat/src/symmetry.rs +351 -0
  24. eulumdat-0.2.0/crates/eulumdat/src/validation.rs +620 -0
  25. eulumdat-0.2.0/crates/eulumdat/src/writer.rs +243 -0
  26. eulumdat-0.2.0/crates/eulumdat/tests/integration_test.rs +282 -0
  27. eulumdat-0.2.0/crates/eulumdat-py/Cargo.toml +16 -0
  28. eulumdat-0.2.0/crates/eulumdat-py/README.md +72 -0
  29. eulumdat-0.2.0/crates/eulumdat-py/src/lib.rs +960 -0
  30. eulumdat-0.2.0/pyproject.toml +36 -0
@@ -0,0 +1,1947 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstream"
7
+ version = "0.6.21"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
10
+ dependencies = [
11
+ "anstyle",
12
+ "anstyle-parse",
13
+ "anstyle-query",
14
+ "anstyle-wincon",
15
+ "colorchoice",
16
+ "is_terminal_polyfill",
17
+ "utf8parse",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.13"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
25
+
26
+ [[package]]
27
+ name = "anstyle-parse"
28
+ version = "0.2.7"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
31
+ dependencies = [
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle-query"
37
+ version = "1.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40
+ dependencies = [
41
+ "windows-sys",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-wincon"
46
+ version = "3.0.11"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "once_cell_polyfill",
52
+ "windows-sys",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anyhow"
57
+ version = "1.0.100"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
60
+
61
+ [[package]]
62
+ name = "anymap2"
63
+ version = "0.13.0"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c"
66
+
67
+ [[package]]
68
+ name = "approx"
69
+ version = "0.5.1"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
72
+ dependencies = [
73
+ "num-traits",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "askama"
78
+ version = "0.12.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
81
+ dependencies = [
82
+ "askama_derive",
83
+ "askama_escape",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "askama_derive"
88
+ version = "0.12.5"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"
91
+ dependencies = [
92
+ "askama_parser",
93
+ "basic-toml",
94
+ "mime",
95
+ "mime_guess",
96
+ "proc-macro2",
97
+ "quote",
98
+ "serde",
99
+ "syn 2.0.111",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "askama_escape"
104
+ version = "0.10.3"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
107
+
108
+ [[package]]
109
+ name = "askama_parser"
110
+ version = "0.2.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"
113
+ dependencies = [
114
+ "nom",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "async-trait"
119
+ version = "0.1.89"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
122
+ dependencies = [
123
+ "proc-macro2",
124
+ "quote",
125
+ "syn 2.0.111",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "autocfg"
130
+ version = "1.5.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
133
+
134
+ [[package]]
135
+ name = "base64"
136
+ version = "0.22.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
139
+
140
+ [[package]]
141
+ name = "basic-toml"
142
+ version = "0.1.10"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
145
+ dependencies = [
146
+ "serde",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "bincode"
151
+ version = "1.3.3"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
154
+ dependencies = [
155
+ "serde",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "boolinator"
160
+ version = "2.4.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "cfa8873f51c92e232f9bac4065cddef41b714152812bfc5f7672ba16d6ef8cd9"
163
+
164
+ [[package]]
165
+ name = "bumpalo"
166
+ version = "3.19.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
169
+
170
+ [[package]]
171
+ name = "bytes"
172
+ version = "1.11.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
175
+
176
+ [[package]]
177
+ name = "camino"
178
+ version = "1.2.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
181
+ dependencies = [
182
+ "serde_core",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "cargo-platform"
187
+ version = "0.1.9"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
190
+ dependencies = [
191
+ "serde",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "cargo_metadata"
196
+ version = "0.15.4"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
199
+ dependencies = [
200
+ "camino",
201
+ "cargo-platform",
202
+ "semver",
203
+ "serde",
204
+ "serde_json",
205
+ "thiserror",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "cast"
210
+ version = "0.3.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
213
+
214
+ [[package]]
215
+ name = "cc"
216
+ version = "1.2.48"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
219
+ dependencies = [
220
+ "find-msvc-tools",
221
+ "shlex",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "cfg-if"
226
+ version = "1.0.4"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
229
+
230
+ [[package]]
231
+ name = "clap"
232
+ version = "4.5.53"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
235
+ dependencies = [
236
+ "clap_builder",
237
+ "clap_derive",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "clap_builder"
242
+ version = "4.5.53"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
245
+ dependencies = [
246
+ "anstream",
247
+ "anstyle",
248
+ "clap_lex",
249
+ "strsim",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "clap_derive"
254
+ version = "4.5.49"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
257
+ dependencies = [
258
+ "heck",
259
+ "proc-macro2",
260
+ "quote",
261
+ "syn 2.0.111",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "clap_lex"
266
+ version = "0.7.6"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
269
+
270
+ [[package]]
271
+ name = "colorchoice"
272
+ version = "1.0.4"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
275
+
276
+ [[package]]
277
+ name = "console_error_panic_hook"
278
+ version = "0.1.7"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
281
+ dependencies = [
282
+ "cfg-if",
283
+ "wasm-bindgen",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "equivalent"
288
+ version = "1.0.2"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
291
+
292
+ [[package]]
293
+ name = "eulumdat"
294
+ version = "0.2.0"
295
+ dependencies = [
296
+ "anyhow",
297
+ "approx",
298
+ "serde",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "eulumdat-cli"
303
+ version = "0.2.0"
304
+ dependencies = [
305
+ "anyhow",
306
+ "clap",
307
+ "eulumdat",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "eulumdat-ffi"
312
+ version = "0.2.0"
313
+ dependencies = [
314
+ "eulumdat",
315
+ "thiserror",
316
+ "uniffi",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "eulumdat-py"
321
+ version = "0.2.0"
322
+ dependencies = [
323
+ "eulumdat",
324
+ "pyo3",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "eulumdat-wasm"
329
+ version = "0.2.0"
330
+ dependencies = [
331
+ "base64",
332
+ "eulumdat",
333
+ "gloo 0.11.0",
334
+ "gloo-file 0.3.0",
335
+ "js-sys",
336
+ "wasm-bindgen",
337
+ "wasm-bindgen-futures",
338
+ "wasm-bindgen-test",
339
+ "web-sys",
340
+ "yew",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "find-msvc-tools"
345
+ version = "0.1.5"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
348
+
349
+ [[package]]
350
+ name = "fnv"
351
+ version = "1.0.7"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
354
+
355
+ [[package]]
356
+ name = "form_urlencoded"
357
+ version = "1.2.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
360
+ dependencies = [
361
+ "percent-encoding",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "fs-err"
366
+ version = "2.11.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
369
+ dependencies = [
370
+ "autocfg",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "futures"
375
+ version = "0.3.31"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
378
+ dependencies = [
379
+ "futures-channel",
380
+ "futures-core",
381
+ "futures-io",
382
+ "futures-sink",
383
+ "futures-task",
384
+ "futures-util",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "futures-channel"
389
+ version = "0.3.31"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
392
+ dependencies = [
393
+ "futures-core",
394
+ "futures-sink",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "futures-core"
399
+ version = "0.3.31"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
402
+
403
+ [[package]]
404
+ name = "futures-io"
405
+ version = "0.3.31"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
408
+
409
+ [[package]]
410
+ name = "futures-macro"
411
+ version = "0.3.31"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
414
+ dependencies = [
415
+ "proc-macro2",
416
+ "quote",
417
+ "syn 2.0.111",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "futures-sink"
422
+ version = "0.3.31"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
425
+
426
+ [[package]]
427
+ name = "futures-task"
428
+ version = "0.3.31"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
431
+
432
+ [[package]]
433
+ name = "futures-util"
434
+ version = "0.3.31"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
437
+ dependencies = [
438
+ "futures-channel",
439
+ "futures-core",
440
+ "futures-io",
441
+ "futures-macro",
442
+ "futures-sink",
443
+ "futures-task",
444
+ "memchr",
445
+ "pin-project-lite",
446
+ "pin-utils",
447
+ "slab",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "getrandom"
452
+ version = "0.2.16"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
455
+ dependencies = [
456
+ "cfg-if",
457
+ "js-sys",
458
+ "libc",
459
+ "wasi",
460
+ "wasm-bindgen",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "glob"
465
+ version = "0.3.3"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
468
+
469
+ [[package]]
470
+ name = "gloo"
471
+ version = "0.8.1"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "28999cda5ef6916ffd33fb4a7b87e1de633c47c0dc6d97905fee1cdaa142b94d"
474
+ dependencies = [
475
+ "gloo-console 0.2.3",
476
+ "gloo-dialogs 0.1.1",
477
+ "gloo-events 0.1.2",
478
+ "gloo-file 0.2.3",
479
+ "gloo-history 0.1.5",
480
+ "gloo-net 0.3.1",
481
+ "gloo-render 0.1.1",
482
+ "gloo-storage 0.2.2",
483
+ "gloo-timers 0.2.6",
484
+ "gloo-utils 0.1.7",
485
+ "gloo-worker 0.2.1",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "gloo"
490
+ version = "0.10.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "cd35526c28cc55c1db77aed6296de58677dbab863b118483a27845631d870249"
493
+ dependencies = [
494
+ "gloo-console 0.3.0",
495
+ "gloo-dialogs 0.2.0",
496
+ "gloo-events 0.2.0",
497
+ "gloo-file 0.3.0",
498
+ "gloo-history 0.2.2",
499
+ "gloo-net 0.4.0",
500
+ "gloo-render 0.2.0",
501
+ "gloo-storage 0.3.0",
502
+ "gloo-timers 0.3.0",
503
+ "gloo-utils 0.2.0",
504
+ "gloo-worker 0.4.0",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "gloo"
509
+ version = "0.11.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "d15282ece24eaf4bd338d73ef580c6714c8615155c4190c781290ee3fa0fd372"
512
+ dependencies = [
513
+ "gloo-console 0.3.0",
514
+ "gloo-dialogs 0.2.0",
515
+ "gloo-events 0.2.0",
516
+ "gloo-file 0.3.0",
517
+ "gloo-history 0.2.2",
518
+ "gloo-net 0.5.0",
519
+ "gloo-render 0.2.0",
520
+ "gloo-storage 0.3.0",
521
+ "gloo-timers 0.3.0",
522
+ "gloo-utils 0.2.0",
523
+ "gloo-worker 0.5.0",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "gloo-console"
528
+ version = "0.2.3"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "82b7ce3c05debe147233596904981848862b068862e9ec3e34be446077190d3f"
531
+ dependencies = [
532
+ "gloo-utils 0.1.7",
533
+ "js-sys",
534
+ "serde",
535
+ "wasm-bindgen",
536
+ "web-sys",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "gloo-console"
541
+ version = "0.3.0"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "2a17868f56b4a24f677b17c8cb69958385102fa879418052d60b50bc1727e261"
544
+ dependencies = [
545
+ "gloo-utils 0.2.0",
546
+ "js-sys",
547
+ "serde",
548
+ "wasm-bindgen",
549
+ "web-sys",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "gloo-dialogs"
554
+ version = "0.1.1"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "67062364ac72d27f08445a46cab428188e2e224ec9e37efdba48ae8c289002e6"
557
+ dependencies = [
558
+ "wasm-bindgen",
559
+ "web-sys",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "gloo-dialogs"
564
+ version = "0.2.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "bf4748e10122b01435750ff530095b1217cf6546173459448b83913ebe7815df"
567
+ dependencies = [
568
+ "wasm-bindgen",
569
+ "web-sys",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "gloo-events"
574
+ version = "0.1.2"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "68b107f8abed8105e4182de63845afcc7b69c098b7852a813ea7462a320992fc"
577
+ dependencies = [
578
+ "wasm-bindgen",
579
+ "web-sys",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "gloo-events"
584
+ version = "0.2.0"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "27c26fb45f7c385ba980f5fa87ac677e363949e065a083722697ef1b2cc91e41"
587
+ dependencies = [
588
+ "wasm-bindgen",
589
+ "web-sys",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "gloo-file"
594
+ version = "0.2.3"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "a8d5564e570a38b43d78bdc063374a0c3098c4f0d64005b12f9bbe87e869b6d7"
597
+ dependencies = [
598
+ "gloo-events 0.1.2",
599
+ "js-sys",
600
+ "wasm-bindgen",
601
+ "web-sys",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "gloo-file"
606
+ version = "0.3.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "97563d71863fb2824b2e974e754a81d19c4a7ec47b09ced8a0e6656b6d54bd1f"
609
+ dependencies = [
610
+ "futures-channel",
611
+ "gloo-events 0.2.0",
612
+ "js-sys",
613
+ "wasm-bindgen",
614
+ "web-sys",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "gloo-history"
619
+ version = "0.1.5"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "85725d90bf0ed47063b3930ef28e863658a7905989e9929a8708aab74a1d5e7f"
622
+ dependencies = [
623
+ "gloo-events 0.1.2",
624
+ "gloo-utils 0.1.7",
625
+ "serde",
626
+ "serde-wasm-bindgen 0.5.0",
627
+ "serde_urlencoded",
628
+ "thiserror",
629
+ "wasm-bindgen",
630
+ "web-sys",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "gloo-history"
635
+ version = "0.2.2"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "903f432be5ba34427eac5e16048ef65604a82061fe93789f2212afc73d8617d6"
638
+ dependencies = [
639
+ "getrandom",
640
+ "gloo-events 0.2.0",
641
+ "gloo-utils 0.2.0",
642
+ "serde",
643
+ "serde-wasm-bindgen 0.6.5",
644
+ "serde_urlencoded",
645
+ "thiserror",
646
+ "wasm-bindgen",
647
+ "web-sys",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "gloo-net"
652
+ version = "0.3.1"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "a66b4e3c7d9ed8d315fd6b97c8b1f74a7c6ecbbc2320e65ae7ed38b7068cc620"
655
+ dependencies = [
656
+ "futures-channel",
657
+ "futures-core",
658
+ "futures-sink",
659
+ "gloo-utils 0.1.7",
660
+ "http",
661
+ "js-sys",
662
+ "pin-project",
663
+ "serde",
664
+ "serde_json",
665
+ "thiserror",
666
+ "wasm-bindgen",
667
+ "wasm-bindgen-futures",
668
+ "web-sys",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "gloo-net"
673
+ version = "0.4.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "8ac9e8288ae2c632fa9f8657ac70bfe38a1530f345282d7ba66a1f70b72b7dc4"
676
+ dependencies = [
677
+ "futures-channel",
678
+ "futures-core",
679
+ "futures-sink",
680
+ "gloo-utils 0.2.0",
681
+ "http",
682
+ "js-sys",
683
+ "pin-project",
684
+ "serde",
685
+ "serde_json",
686
+ "thiserror",
687
+ "wasm-bindgen",
688
+ "wasm-bindgen-futures",
689
+ "web-sys",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "gloo-net"
694
+ version = "0.5.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "43aaa242d1239a8822c15c645f02166398da4f8b5c4bae795c1f5b44e9eee173"
697
+ dependencies = [
698
+ "futures-channel",
699
+ "futures-core",
700
+ "futures-sink",
701
+ "gloo-utils 0.2.0",
702
+ "http",
703
+ "js-sys",
704
+ "pin-project",
705
+ "serde",
706
+ "serde_json",
707
+ "thiserror",
708
+ "wasm-bindgen",
709
+ "wasm-bindgen-futures",
710
+ "web-sys",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "gloo-render"
715
+ version = "0.1.1"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "2fd9306aef67cfd4449823aadcd14e3958e0800aa2183955a309112a84ec7764"
718
+ dependencies = [
719
+ "wasm-bindgen",
720
+ "web-sys",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "gloo-render"
725
+ version = "0.2.0"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "56008b6744713a8e8d98ac3dcb7d06543d5662358c9c805b4ce2167ad4649833"
728
+ dependencies = [
729
+ "wasm-bindgen",
730
+ "web-sys",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "gloo-storage"
735
+ version = "0.2.2"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "5d6ab60bf5dbfd6f0ed1f7843da31b41010515c745735c970e821945ca91e480"
738
+ dependencies = [
739
+ "gloo-utils 0.1.7",
740
+ "js-sys",
741
+ "serde",
742
+ "serde_json",
743
+ "thiserror",
744
+ "wasm-bindgen",
745
+ "web-sys",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "gloo-storage"
750
+ version = "0.3.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a"
753
+ dependencies = [
754
+ "gloo-utils 0.2.0",
755
+ "js-sys",
756
+ "serde",
757
+ "serde_json",
758
+ "thiserror",
759
+ "wasm-bindgen",
760
+ "web-sys",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "gloo-timers"
765
+ version = "0.2.6"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
768
+ dependencies = [
769
+ "js-sys",
770
+ "wasm-bindgen",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "gloo-timers"
775
+ version = "0.3.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
778
+ dependencies = [
779
+ "js-sys",
780
+ "wasm-bindgen",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "gloo-utils"
785
+ version = "0.1.7"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "037fcb07216cb3a30f7292bd0176b050b7b9a052ba830ef7d5d65f6dc64ba58e"
788
+ dependencies = [
789
+ "js-sys",
790
+ "serde",
791
+ "serde_json",
792
+ "wasm-bindgen",
793
+ "web-sys",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "gloo-utils"
798
+ version = "0.2.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
801
+ dependencies = [
802
+ "js-sys",
803
+ "serde",
804
+ "serde_json",
805
+ "wasm-bindgen",
806
+ "web-sys",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "gloo-worker"
811
+ version = "0.2.1"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "13471584da78061a28306d1359dd0178d8d6fc1c7c80e5e35d27260346e0516a"
814
+ dependencies = [
815
+ "anymap2",
816
+ "bincode",
817
+ "gloo-console 0.2.3",
818
+ "gloo-utils 0.1.7",
819
+ "js-sys",
820
+ "serde",
821
+ "wasm-bindgen",
822
+ "wasm-bindgen-futures",
823
+ "web-sys",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "gloo-worker"
828
+ version = "0.4.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "76495d3dd87de51da268fa3a593da118ab43eb7f8809e17eb38d3319b424e400"
831
+ dependencies = [
832
+ "bincode",
833
+ "futures",
834
+ "gloo-utils 0.2.0",
835
+ "gloo-worker-macros",
836
+ "js-sys",
837
+ "pinned",
838
+ "serde",
839
+ "thiserror",
840
+ "wasm-bindgen",
841
+ "wasm-bindgen-futures",
842
+ "web-sys",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "gloo-worker"
847
+ version = "0.5.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "085f262d7604911c8150162529cefab3782e91adb20202e8658f7275d2aefe5d"
850
+ dependencies = [
851
+ "bincode",
852
+ "futures",
853
+ "gloo-utils 0.2.0",
854
+ "gloo-worker-macros",
855
+ "js-sys",
856
+ "pinned",
857
+ "serde",
858
+ "thiserror",
859
+ "wasm-bindgen",
860
+ "wasm-bindgen-futures",
861
+ "web-sys",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "gloo-worker-macros"
866
+ version = "0.1.0"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "956caa58d4857bc9941749d55e4bd3000032d8212762586fa5705632967140e7"
869
+ dependencies = [
870
+ "proc-macro-crate",
871
+ "proc-macro2",
872
+ "quote",
873
+ "syn 2.0.111",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "goblin"
878
+ version = "0.8.2"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
881
+ dependencies = [
882
+ "log",
883
+ "plain",
884
+ "scroll",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "hashbrown"
889
+ version = "0.16.1"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
892
+
893
+ [[package]]
894
+ name = "heck"
895
+ version = "0.5.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
898
+
899
+ [[package]]
900
+ name = "hermit-abi"
901
+ version = "0.5.2"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
904
+
905
+ [[package]]
906
+ name = "http"
907
+ version = "0.2.12"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
910
+ dependencies = [
911
+ "bytes",
912
+ "fnv",
913
+ "itoa",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "implicit-clone"
918
+ version = "0.4.9"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "f8a9aa791c7b5a71b636b7a68207fdebf171ddfc593d9c8506ec4cbc527b6a84"
921
+ dependencies = [
922
+ "implicit-clone-derive",
923
+ "indexmap",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "implicit-clone-derive"
928
+ version = "0.1.2"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "699c1b6d335e63d0ba5c1e1c7f647371ce989c3bcbe1f7ed2b85fa56e3bd1a21"
931
+ dependencies = [
932
+ "quote",
933
+ "syn 2.0.111",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "indexmap"
938
+ version = "2.12.1"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
941
+ dependencies = [
942
+ "equivalent",
943
+ "hashbrown",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "indoc"
948
+ version = "2.0.7"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
951
+ dependencies = [
952
+ "rustversion",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "is_terminal_polyfill"
957
+ version = "1.70.2"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
960
+
961
+ [[package]]
962
+ name = "itoa"
963
+ version = "1.0.15"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
966
+
967
+ [[package]]
968
+ name = "js-sys"
969
+ version = "0.3.83"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
972
+ dependencies = [
973
+ "once_cell",
974
+ "wasm-bindgen",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "libc"
979
+ version = "0.2.178"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
982
+
983
+ [[package]]
984
+ name = "libm"
985
+ version = "0.2.15"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
988
+
989
+ [[package]]
990
+ name = "log"
991
+ version = "0.4.29"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
994
+
995
+ [[package]]
996
+ name = "memchr"
997
+ version = "2.7.6"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1000
+
1001
+ [[package]]
1002
+ name = "memoffset"
1003
+ version = "0.9.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1006
+ dependencies = [
1007
+ "autocfg",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "mime"
1012
+ version = "0.3.17"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1015
+
1016
+ [[package]]
1017
+ name = "mime_guess"
1018
+ version = "2.0.5"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1021
+ dependencies = [
1022
+ "mime",
1023
+ "unicase",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "minicov"
1028
+ version = "0.3.7"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
1031
+ dependencies = [
1032
+ "cc",
1033
+ "walkdir",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "minimal-lexical"
1038
+ version = "0.2.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1041
+
1042
+ [[package]]
1043
+ name = "nom"
1044
+ version = "7.1.3"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1047
+ dependencies = [
1048
+ "memchr",
1049
+ "minimal-lexical",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "nu-ansi-term"
1054
+ version = "0.50.3"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1057
+ dependencies = [
1058
+ "windows-sys",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "num-traits"
1063
+ version = "0.2.19"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1066
+ dependencies = [
1067
+ "autocfg",
1068
+ "libm",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "num_cpus"
1073
+ version = "1.17.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1076
+ dependencies = [
1077
+ "hermit-abi",
1078
+ "libc",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "once_cell"
1083
+ version = "1.21.3"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1086
+
1087
+ [[package]]
1088
+ name = "once_cell_polyfill"
1089
+ version = "1.70.2"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1092
+
1093
+ [[package]]
1094
+ name = "oorandom"
1095
+ version = "11.1.5"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1098
+
1099
+ [[package]]
1100
+ name = "paste"
1101
+ version = "1.0.15"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1104
+
1105
+ [[package]]
1106
+ name = "percent-encoding"
1107
+ version = "2.3.2"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1110
+
1111
+ [[package]]
1112
+ name = "pin-project"
1113
+ version = "1.1.10"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1116
+ dependencies = [
1117
+ "pin-project-internal",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "pin-project-internal"
1122
+ version = "1.1.10"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1125
+ dependencies = [
1126
+ "proc-macro2",
1127
+ "quote",
1128
+ "syn 2.0.111",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "pin-project-lite"
1133
+ version = "0.2.16"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1136
+
1137
+ [[package]]
1138
+ name = "pin-utils"
1139
+ version = "0.1.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1142
+
1143
+ [[package]]
1144
+ name = "pinned"
1145
+ version = "0.1.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "a829027bd95e54cfe13e3e258a1ae7b645960553fb82b75ff852c29688ee595b"
1148
+ dependencies = [
1149
+ "futures",
1150
+ "rustversion",
1151
+ "thiserror",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "plain"
1156
+ version = "0.2.3"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1159
+
1160
+ [[package]]
1161
+ name = "portable-atomic"
1162
+ version = "1.11.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1165
+
1166
+ [[package]]
1167
+ name = "prettyplease"
1168
+ version = "0.2.37"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1171
+ dependencies = [
1172
+ "proc-macro2",
1173
+ "syn 2.0.111",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "proc-macro-crate"
1178
+ version = "1.3.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
1181
+ dependencies = [
1182
+ "once_cell",
1183
+ "toml_edit",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "proc-macro-error"
1188
+ version = "1.0.4"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1191
+ dependencies = [
1192
+ "proc-macro-error-attr",
1193
+ "proc-macro2",
1194
+ "quote",
1195
+ "syn 1.0.109",
1196
+ "version_check",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "proc-macro-error-attr"
1201
+ version = "1.0.4"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1204
+ dependencies = [
1205
+ "proc-macro2",
1206
+ "quote",
1207
+ "version_check",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "proc-macro2"
1212
+ version = "1.0.103"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1215
+ dependencies = [
1216
+ "unicode-ident",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "prokio"
1221
+ version = "0.1.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "03b55e106e5791fa5a13abd13c85d6127312e8e09098059ca2bc9b03ca4cf488"
1224
+ dependencies = [
1225
+ "futures",
1226
+ "gloo 0.8.1",
1227
+ "num_cpus",
1228
+ "once_cell",
1229
+ "pin-project",
1230
+ "pinned",
1231
+ "tokio",
1232
+ "tokio-stream",
1233
+ "wasm-bindgen-futures",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "pyo3"
1238
+ version = "0.27.2"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1241
+ dependencies = [
1242
+ "indoc",
1243
+ "libc",
1244
+ "memoffset",
1245
+ "once_cell",
1246
+ "portable-atomic",
1247
+ "pyo3-build-config",
1248
+ "pyo3-ffi",
1249
+ "pyo3-macros",
1250
+ "unindent",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "pyo3-build-config"
1255
+ version = "0.27.2"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1258
+ dependencies = [
1259
+ "target-lexicon",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "pyo3-ffi"
1264
+ version = "0.27.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1267
+ dependencies = [
1268
+ "libc",
1269
+ "pyo3-build-config",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "pyo3-macros"
1274
+ version = "0.27.2"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1277
+ dependencies = [
1278
+ "proc-macro2",
1279
+ "pyo3-macros-backend",
1280
+ "quote",
1281
+ "syn 2.0.111",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "pyo3-macros-backend"
1286
+ version = "0.27.2"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1289
+ dependencies = [
1290
+ "heck",
1291
+ "proc-macro2",
1292
+ "pyo3-build-config",
1293
+ "quote",
1294
+ "syn 2.0.111",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "quote"
1299
+ version = "1.0.42"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1302
+ dependencies = [
1303
+ "proc-macro2",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "rustversion"
1308
+ version = "1.0.22"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1311
+
1312
+ [[package]]
1313
+ name = "ryu"
1314
+ version = "1.0.20"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1317
+
1318
+ [[package]]
1319
+ name = "same-file"
1320
+ version = "1.0.6"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1323
+ dependencies = [
1324
+ "winapi-util",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "scroll"
1329
+ version = "0.12.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
1332
+ dependencies = [
1333
+ "scroll_derive",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "scroll_derive"
1338
+ version = "0.12.1"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
1341
+ dependencies = [
1342
+ "proc-macro2",
1343
+ "quote",
1344
+ "syn 2.0.111",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "semver"
1349
+ version = "1.0.27"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1352
+ dependencies = [
1353
+ "serde",
1354
+ "serde_core",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "serde"
1359
+ version = "1.0.228"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1362
+ dependencies = [
1363
+ "serde_core",
1364
+ "serde_derive",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "serde-wasm-bindgen"
1369
+ version = "0.5.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e"
1372
+ dependencies = [
1373
+ "js-sys",
1374
+ "serde",
1375
+ "wasm-bindgen",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "serde-wasm-bindgen"
1380
+ version = "0.6.5"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1383
+ dependencies = [
1384
+ "js-sys",
1385
+ "serde",
1386
+ "wasm-bindgen",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "serde_core"
1391
+ version = "1.0.228"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1394
+ dependencies = [
1395
+ "serde_derive",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "serde_derive"
1400
+ version = "1.0.228"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1403
+ dependencies = [
1404
+ "proc-macro2",
1405
+ "quote",
1406
+ "syn 2.0.111",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "serde_json"
1411
+ version = "1.0.145"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1414
+ dependencies = [
1415
+ "itoa",
1416
+ "memchr",
1417
+ "ryu",
1418
+ "serde",
1419
+ "serde_core",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "serde_urlencoded"
1424
+ version = "0.7.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1427
+ dependencies = [
1428
+ "form_urlencoded",
1429
+ "itoa",
1430
+ "ryu",
1431
+ "serde",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "shlex"
1436
+ version = "1.3.0"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1439
+
1440
+ [[package]]
1441
+ name = "siphasher"
1442
+ version = "0.3.11"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1445
+
1446
+ [[package]]
1447
+ name = "slab"
1448
+ version = "0.4.11"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1451
+
1452
+ [[package]]
1453
+ name = "smawk"
1454
+ version = "0.3.2"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1457
+
1458
+ [[package]]
1459
+ name = "static_assertions"
1460
+ version = "1.1.0"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1463
+
1464
+ [[package]]
1465
+ name = "strsim"
1466
+ version = "0.11.1"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1469
+
1470
+ [[package]]
1471
+ name = "syn"
1472
+ version = "1.0.109"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1475
+ dependencies = [
1476
+ "proc-macro2",
1477
+ "unicode-ident",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "syn"
1482
+ version = "2.0.111"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1485
+ dependencies = [
1486
+ "proc-macro2",
1487
+ "quote",
1488
+ "unicode-ident",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "target-lexicon"
1493
+ version = "0.13.3"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1496
+
1497
+ [[package]]
1498
+ name = "textwrap"
1499
+ version = "0.16.2"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1502
+ dependencies = [
1503
+ "smawk",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "thiserror"
1508
+ version = "1.0.69"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1511
+ dependencies = [
1512
+ "thiserror-impl",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "thiserror-impl"
1517
+ version = "1.0.69"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1520
+ dependencies = [
1521
+ "proc-macro2",
1522
+ "quote",
1523
+ "syn 2.0.111",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "tokio"
1528
+ version = "1.48.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1531
+ dependencies = [
1532
+ "pin-project-lite",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "tokio-stream"
1537
+ version = "0.1.17"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
1540
+ dependencies = [
1541
+ "futures-core",
1542
+ "pin-project-lite",
1543
+ "tokio",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "toml"
1548
+ version = "0.5.11"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
1551
+ dependencies = [
1552
+ "serde",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "toml_datetime"
1557
+ version = "0.6.11"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1560
+
1561
+ [[package]]
1562
+ name = "toml_edit"
1563
+ version = "0.19.15"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
1566
+ dependencies = [
1567
+ "indexmap",
1568
+ "toml_datetime",
1569
+ "winnow",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "tracing"
1574
+ version = "0.1.43"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
1577
+ dependencies = [
1578
+ "pin-project-lite",
1579
+ "tracing-attributes",
1580
+ "tracing-core",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "tracing-attributes"
1585
+ version = "0.1.31"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1588
+ dependencies = [
1589
+ "proc-macro2",
1590
+ "quote",
1591
+ "syn 2.0.111",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "tracing-core"
1596
+ version = "0.1.35"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
1599
+ dependencies = [
1600
+ "once_cell",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "unicase"
1605
+ version = "2.8.1"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
1608
+
1609
+ [[package]]
1610
+ name = "unicode-ident"
1611
+ version = "1.0.22"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1614
+
1615
+ [[package]]
1616
+ name = "uniffi"
1617
+ version = "0.28.3"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "4cb08c58c7ed7033150132febe696bef553f891b1ede57424b40d87a89e3c170"
1620
+ dependencies = [
1621
+ "anyhow",
1622
+ "camino",
1623
+ "cargo_metadata",
1624
+ "clap",
1625
+ "uniffi_bindgen",
1626
+ "uniffi_core",
1627
+ "uniffi_macros",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "uniffi_bindgen"
1632
+ version = "0.28.3"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "cade167af943e189a55020eda2c314681e223f1e42aca7c4e52614c2b627698f"
1635
+ dependencies = [
1636
+ "anyhow",
1637
+ "askama",
1638
+ "camino",
1639
+ "cargo_metadata",
1640
+ "fs-err",
1641
+ "glob",
1642
+ "goblin",
1643
+ "heck",
1644
+ "once_cell",
1645
+ "paste",
1646
+ "serde",
1647
+ "textwrap",
1648
+ "toml",
1649
+ "uniffi_meta",
1650
+ "uniffi_udl",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "uniffi_checksum_derive"
1655
+ version = "0.28.3"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "802d2051a700e3ec894c79f80d2705b69d85844dafbbe5d1a92776f8f48b563a"
1658
+ dependencies = [
1659
+ "quote",
1660
+ "syn 2.0.111",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "uniffi_core"
1665
+ version = "0.28.3"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "bc7687007d2546c454d8ae609b105daceb88175477dac280707ad6d95bcd6f1f"
1668
+ dependencies = [
1669
+ "anyhow",
1670
+ "bytes",
1671
+ "log",
1672
+ "once_cell",
1673
+ "paste",
1674
+ "static_assertions",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "uniffi_macros"
1679
+ version = "0.28.3"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "12c65a5b12ec544ef136693af8759fb9d11aefce740fb76916721e876639033b"
1682
+ dependencies = [
1683
+ "bincode",
1684
+ "camino",
1685
+ "fs-err",
1686
+ "once_cell",
1687
+ "proc-macro2",
1688
+ "quote",
1689
+ "serde",
1690
+ "syn 2.0.111",
1691
+ "toml",
1692
+ "uniffi_meta",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "uniffi_meta"
1697
+ version = "0.28.3"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "4a74ed96c26882dac1ca9b93ca23c827e284bacbd7ec23c6f0b0372f747d59e4"
1700
+ dependencies = [
1701
+ "anyhow",
1702
+ "bytes",
1703
+ "siphasher",
1704
+ "uniffi_checksum_derive",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "uniffi_testing"
1709
+ version = "0.28.3"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "6a6f984f0781f892cc864a62c3a5c60361b1ccbd68e538e6c9fbced5d82268ac"
1712
+ dependencies = [
1713
+ "anyhow",
1714
+ "camino",
1715
+ "cargo_metadata",
1716
+ "fs-err",
1717
+ "once_cell",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "uniffi_udl"
1722
+ version = "0.28.3"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "037820a4cfc4422db1eaa82f291a3863c92c7d1789dc513489c36223f9b4cdfc"
1725
+ dependencies = [
1726
+ "anyhow",
1727
+ "textwrap",
1728
+ "uniffi_meta",
1729
+ "uniffi_testing",
1730
+ "weedle2",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "unindent"
1735
+ version = "0.2.4"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1738
+
1739
+ [[package]]
1740
+ name = "utf8parse"
1741
+ version = "0.2.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1744
+
1745
+ [[package]]
1746
+ name = "version_check"
1747
+ version = "0.9.5"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1750
+
1751
+ [[package]]
1752
+ name = "walkdir"
1753
+ version = "2.5.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1756
+ dependencies = [
1757
+ "same-file",
1758
+ "winapi-util",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "wasi"
1763
+ version = "0.11.1+wasi-snapshot-preview1"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1766
+
1767
+ [[package]]
1768
+ name = "wasm-bindgen"
1769
+ version = "0.2.106"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1772
+ dependencies = [
1773
+ "cfg-if",
1774
+ "once_cell",
1775
+ "rustversion",
1776
+ "wasm-bindgen-macro",
1777
+ "wasm-bindgen-shared",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "wasm-bindgen-futures"
1782
+ version = "0.4.56"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
1785
+ dependencies = [
1786
+ "cfg-if",
1787
+ "js-sys",
1788
+ "once_cell",
1789
+ "wasm-bindgen",
1790
+ "web-sys",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "wasm-bindgen-macro"
1795
+ version = "0.2.106"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
1798
+ dependencies = [
1799
+ "quote",
1800
+ "wasm-bindgen-macro-support",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "wasm-bindgen-macro-support"
1805
+ version = "0.2.106"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
1808
+ dependencies = [
1809
+ "bumpalo",
1810
+ "proc-macro2",
1811
+ "quote",
1812
+ "syn 2.0.111",
1813
+ "wasm-bindgen-shared",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "wasm-bindgen-shared"
1818
+ version = "0.2.106"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
1821
+ dependencies = [
1822
+ "unicode-ident",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "wasm-bindgen-test"
1827
+ version = "0.3.56"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "25e90e66d265d3a1efc0e72a54809ab90b9c0c515915c67cdf658689d2c22c6c"
1830
+ dependencies = [
1831
+ "async-trait",
1832
+ "cast",
1833
+ "js-sys",
1834
+ "libm",
1835
+ "minicov",
1836
+ "nu-ansi-term",
1837
+ "num-traits",
1838
+ "oorandom",
1839
+ "serde",
1840
+ "serde_json",
1841
+ "wasm-bindgen",
1842
+ "wasm-bindgen-futures",
1843
+ "wasm-bindgen-test-macro",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "wasm-bindgen-test-macro"
1848
+ version = "0.3.56"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "7150335716dce6028bead2b848e72f47b45e7b9422f64cccdc23bedca89affc1"
1851
+ dependencies = [
1852
+ "proc-macro2",
1853
+ "quote",
1854
+ "syn 2.0.111",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "web-sys"
1859
+ version = "0.3.83"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
1862
+ dependencies = [
1863
+ "js-sys",
1864
+ "wasm-bindgen",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "weedle2"
1869
+ version = "5.0.0"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
1872
+ dependencies = [
1873
+ "nom",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "winapi-util"
1878
+ version = "0.1.11"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1881
+ dependencies = [
1882
+ "windows-sys",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "windows-link"
1887
+ version = "0.2.1"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1890
+
1891
+ [[package]]
1892
+ name = "windows-sys"
1893
+ version = "0.61.2"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1896
+ dependencies = [
1897
+ "windows-link",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "winnow"
1902
+ version = "0.5.40"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
1905
+ dependencies = [
1906
+ "memchr",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "yew"
1911
+ version = "0.21.0"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "5f1a03f255c70c7aa3e9c62e15292f142ede0564123543c1cc0c7a4f31660cac"
1914
+ dependencies = [
1915
+ "console_error_panic_hook",
1916
+ "futures",
1917
+ "gloo 0.10.0",
1918
+ "implicit-clone",
1919
+ "indexmap",
1920
+ "js-sys",
1921
+ "prokio",
1922
+ "rustversion",
1923
+ "serde",
1924
+ "slab",
1925
+ "thiserror",
1926
+ "tokio",
1927
+ "tracing",
1928
+ "wasm-bindgen",
1929
+ "wasm-bindgen-futures",
1930
+ "web-sys",
1931
+ "yew-macro",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "yew-macro"
1936
+ version = "0.21.0"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "02fd8ca5166d69e59f796500a2ce432ff751edecbbb308ca59fd3fe4d0343de2"
1939
+ dependencies = [
1940
+ "boolinator",
1941
+ "once_cell",
1942
+ "prettyplease",
1943
+ "proc-macro-error",
1944
+ "proc-macro2",
1945
+ "quote",
1946
+ "syn 2.0.111",
1947
+ ]