ontologos 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. ontologos-0.1.0/Cargo.lock +1955 -0
  2. ontologos-0.1.0/Cargo.toml +37 -0
  3. ontologos-0.1.0/PKG-INFO +51 -0
  4. ontologos-0.1.0/README.md +24 -0
  5. ontologos-0.1.0/crates/ontologos-core/Cargo.toml +36 -0
  6. ontologos-0.1.0/crates/ontologos-core/README.md +146 -0
  7. ontologos-0.1.0/crates/ontologos-core/benches/serialize_bench.rs +50 -0
  8. ontologos-0.1.0/crates/ontologos-core/examples/pizza_builder.rs +44 -0
  9. ontologos-0.1.0/crates/ontologos-core/src/axiom.rs +371 -0
  10. ontologos-0.1.0/crates/ontologos-core/src/entity.rs +198 -0
  11. ontologos-0.1.0/crates/ontologos-core/src/error.rs +52 -0
  12. ontologos-0.1.0/crates/ontologos-core/src/graph.rs +328 -0
  13. ontologos-0.1.0/crates/ontologos-core/src/iri.rs +240 -0
  14. ontologos-0.1.0/crates/ontologos-core/src/lib.rs +71 -0
  15. ontologos-0.1.0/crates/ontologos-core/src/limits.rs +32 -0
  16. ontologos-0.1.0/crates/ontologos-core/src/ontology.rs +284 -0
  17. ontologos-0.1.0/crates/ontologos-core/src/reasoner.rs +125 -0
  18. ontologos-0.1.0/crates/ontologos-core/src/serialize.rs +413 -0
  19. ontologos-0.1.0/crates/ontologos-core/tests/fixtures/pizza_minimal.json +23 -0
  20. ontologos-0.1.0/crates/ontologos-core/tests/ontology_integration.rs +125 -0
  21. ontologos-0.1.0/crates/ontologos-core/tests/pizza_minimal.rs +83 -0
  22. ontologos-0.1.0/crates/ontologos-core/tests/security_regressions.rs +94 -0
  23. ontologos-0.1.0/crates/ontologos-parser/Cargo.toml +16 -0
  24. ontologos-0.1.0/crates/ontologos-parser/src/error.rs +13 -0
  25. ontologos-0.1.0/crates/ontologos-parser/src/lib.rs +99 -0
  26. ontologos-0.1.0/crates/ontologos-parser/src/load.rs +83 -0
  27. ontologos-0.1.0/crates/ontologos-profile/Cargo.toml +16 -0
  28. ontologos-0.1.0/crates/ontologos-profile/src/lib.rs +41 -0
  29. ontologos-0.1.0/crates/ontologos-py/Cargo.toml +25 -0
  30. ontologos-0.1.0/crates/ontologos-py/README.md +24 -0
  31. ontologos-0.1.0/crates/ontologos-py/src/lib.rs +40 -0
  32. ontologos-0.1.0/pyproject.toml +39 -0
  33. ontologos-0.1.0/python/ontologos/__init__.py +12 -0
  34. ontologos-0.1.0/python/ontologos/py.typed +0 -0
@@ -0,0 +1,1955 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
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 0.61.2",
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 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "assert_cmd"
78
+ version = "2.2.2"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
81
+ dependencies = [
82
+ "anstyle",
83
+ "bstr",
84
+ "libc",
85
+ "predicates",
86
+ "predicates-core",
87
+ "predicates-tree",
88
+ "wait-timeout",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "autocfg"
93
+ version = "1.5.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
96
+
97
+ [[package]]
98
+ name = "base64"
99
+ version = "0.22.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
102
+
103
+ [[package]]
104
+ name = "block-buffer"
105
+ version = "0.10.4"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
108
+ dependencies = [
109
+ "generic-array",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "bstr"
114
+ version = "1.12.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
117
+ dependencies = [
118
+ "memchr",
119
+ "regex-automata",
120
+ "serde",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "bumpalo"
125
+ version = "3.20.3"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
128
+
129
+ [[package]]
130
+ name = "cast"
131
+ version = "0.3.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
134
+
135
+ [[package]]
136
+ name = "cc"
137
+ version = "1.2.63"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
140
+ dependencies = [
141
+ "find-msvc-tools",
142
+ "shlex",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "cfg-if"
147
+ version = "1.0.4"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
150
+
151
+ [[package]]
152
+ name = "ciborium"
153
+ version = "0.2.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
156
+ dependencies = [
157
+ "ciborium-io",
158
+ "ciborium-ll",
159
+ "serde",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "ciborium-io"
164
+ version = "0.2.2"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
167
+
168
+ [[package]]
169
+ name = "ciborium-ll"
170
+ version = "0.2.2"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
173
+ dependencies = [
174
+ "ciborium-io",
175
+ "half",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "clap"
180
+ version = "4.6.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
183
+ dependencies = [
184
+ "clap_builder",
185
+ "clap_derive",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "clap_builder"
190
+ version = "4.6.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
193
+ dependencies = [
194
+ "anstream",
195
+ "anstyle",
196
+ "clap_lex",
197
+ "strsim",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "clap_derive"
202
+ version = "4.6.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
205
+ dependencies = [
206
+ "heck",
207
+ "proc-macro2",
208
+ "quote",
209
+ "syn",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "clap_lex"
214
+ version = "1.1.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
217
+
218
+ [[package]]
219
+ name = "colorchoice"
220
+ version = "1.0.5"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
223
+
224
+ [[package]]
225
+ name = "cpufeatures"
226
+ version = "0.2.17"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
229
+ dependencies = [
230
+ "libc",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "crc32fast"
235
+ version = "1.5.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
238
+ dependencies = [
239
+ "cfg-if",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "criterion"
244
+ version = "0.5.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
247
+ dependencies = [
248
+ "anes",
249
+ "cast",
250
+ "ciborium",
251
+ "clap",
252
+ "criterion-plot",
253
+ "is-terminal",
254
+ "itertools",
255
+ "num-traits",
256
+ "once_cell",
257
+ "oorandom",
258
+ "plotters",
259
+ "rayon",
260
+ "regex",
261
+ "serde",
262
+ "serde_derive",
263
+ "serde_json",
264
+ "tinytemplate",
265
+ "walkdir",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "criterion-plot"
270
+ version = "0.5.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
273
+ dependencies = [
274
+ "cast",
275
+ "itertools",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "crossbeam-deque"
280
+ version = "0.8.6"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
283
+ dependencies = [
284
+ "crossbeam-epoch",
285
+ "crossbeam-utils",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "crossbeam-epoch"
290
+ version = "0.9.18"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
293
+ dependencies = [
294
+ "crossbeam-utils",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "crossbeam-utils"
299
+ version = "0.8.21"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
302
+
303
+ [[package]]
304
+ name = "crunchy"
305
+ version = "0.2.4"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
308
+
309
+ [[package]]
310
+ name = "crypto-common"
311
+ version = "0.1.7"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
314
+ dependencies = [
315
+ "generic-array",
316
+ "typenum",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "curie"
321
+ version = "0.1.4"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "30667fc7792d940719ecada2201aeaedf0f38b876675fa69191e632dabc57569"
324
+ dependencies = [
325
+ "indexmap 2.14.0",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "difflib"
330
+ version = "0.4.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
333
+
334
+ [[package]]
335
+ name = "digest"
336
+ version = "0.10.7"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
339
+ dependencies = [
340
+ "block-buffer",
341
+ "crypto-common",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "displaydoc"
346
+ version = "0.2.6"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
349
+ dependencies = [
350
+ "proc-macro2",
351
+ "quote",
352
+ "syn",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "either"
357
+ version = "1.16.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
360
+
361
+ [[package]]
362
+ name = "enum_meta"
363
+ version = "0.6.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "66766e489640531c2663bb422bb689e32d5ac7dd15975c4928c10317d6f42fbd"
366
+ dependencies = [
367
+ "lazy_static",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "equivalent"
372
+ version = "1.0.2"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
375
+
376
+ [[package]]
377
+ name = "find-msvc-tools"
378
+ version = "0.1.9"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
381
+
382
+ [[package]]
383
+ name = "flate2"
384
+ version = "1.1.9"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
387
+ dependencies = [
388
+ "crc32fast",
389
+ "miniz_oxide",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "float-cmp"
394
+ version = "0.10.0"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
397
+ dependencies = [
398
+ "num-traits",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "form_urlencoded"
403
+ version = "1.2.2"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
406
+ dependencies = [
407
+ "percent-encoding",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "futures-core"
412
+ version = "0.3.32"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
415
+
416
+ [[package]]
417
+ name = "futures-task"
418
+ version = "0.3.32"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
421
+
422
+ [[package]]
423
+ name = "futures-util"
424
+ version = "0.3.32"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
427
+ dependencies = [
428
+ "futures-core",
429
+ "futures-task",
430
+ "pin-project-lite",
431
+ "slab",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "generic-array"
436
+ version = "0.14.7"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
439
+ dependencies = [
440
+ "typenum",
441
+ "version_check",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "getrandom"
446
+ version = "0.2.17"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
449
+ dependencies = [
450
+ "cfg-if",
451
+ "libc",
452
+ "wasi",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "getrandom"
457
+ version = "0.3.4"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
460
+ dependencies = [
461
+ "cfg-if",
462
+ "libc",
463
+ "r-efi",
464
+ "wasip2",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "half"
469
+ version = "2.7.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
472
+ dependencies = [
473
+ "cfg-if",
474
+ "crunchy",
475
+ "zerocopy",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "hashbrown"
480
+ version = "0.12.3"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
483
+
484
+ [[package]]
485
+ name = "hashbrown"
486
+ version = "0.17.1"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
489
+
490
+ [[package]]
491
+ name = "heck"
492
+ version = "0.5.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
495
+
496
+ [[package]]
497
+ name = "hermit-abi"
498
+ version = "0.5.2"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
501
+
502
+ [[package]]
503
+ name = "horned-owl"
504
+ version = "1.4.0"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "877f6118b6f5823bb135d04e36fe2c2d3a2b4493feca8ac09b5fa6e91b9fff9e"
507
+ dependencies = [
508
+ "curie",
509
+ "enum_meta",
510
+ "indexmap 1.9.3",
511
+ "lazy_static",
512
+ "log",
513
+ "oxiri",
514
+ "oxrdf",
515
+ "oxrdfio",
516
+ "pest",
517
+ "pest_derive",
518
+ "pretty_rdf",
519
+ "quick-xml 0.37.5",
520
+ "thiserror 1.0.69",
521
+ "ureq",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "icu_collections"
526
+ version = "2.2.0"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
529
+ dependencies = [
530
+ "displaydoc",
531
+ "potential_utf",
532
+ "utf8_iter",
533
+ "yoke",
534
+ "zerofrom",
535
+ "zerovec",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "icu_locale_core"
540
+ version = "2.2.0"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
543
+ dependencies = [
544
+ "displaydoc",
545
+ "litemap",
546
+ "tinystr",
547
+ "writeable",
548
+ "zerovec",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "icu_normalizer"
553
+ version = "2.2.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
556
+ dependencies = [
557
+ "icu_collections",
558
+ "icu_normalizer_data",
559
+ "icu_properties",
560
+ "icu_provider",
561
+ "smallvec",
562
+ "zerovec",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "icu_normalizer_data"
567
+ version = "2.2.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
570
+
571
+ [[package]]
572
+ name = "icu_properties"
573
+ version = "2.2.0"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
576
+ dependencies = [
577
+ "icu_collections",
578
+ "icu_locale_core",
579
+ "icu_properties_data",
580
+ "icu_provider",
581
+ "zerotrie",
582
+ "zerovec",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "icu_properties_data"
587
+ version = "2.2.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
590
+
591
+ [[package]]
592
+ name = "icu_provider"
593
+ version = "2.2.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
596
+ dependencies = [
597
+ "displaydoc",
598
+ "icu_locale_core",
599
+ "writeable",
600
+ "yoke",
601
+ "zerofrom",
602
+ "zerotrie",
603
+ "zerovec",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "idna"
608
+ version = "1.1.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
611
+ dependencies = [
612
+ "idna_adapter",
613
+ "smallvec",
614
+ "utf8_iter",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "idna_adapter"
619
+ version = "1.2.2"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
622
+ dependencies = [
623
+ "icu_normalizer",
624
+ "icu_properties",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "indexmap"
629
+ version = "1.9.3"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
632
+ dependencies = [
633
+ "autocfg",
634
+ "hashbrown 0.12.3",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "indexmap"
639
+ version = "2.14.0"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
642
+ dependencies = [
643
+ "equivalent",
644
+ "hashbrown 0.17.1",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "indoc"
649
+ version = "2.0.7"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
652
+ dependencies = [
653
+ "rustversion",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "is-terminal"
658
+ version = "0.4.17"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
661
+ dependencies = [
662
+ "hermit-abi",
663
+ "libc",
664
+ "windows-sys 0.61.2",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "is_terminal_polyfill"
669
+ version = "1.70.2"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
672
+
673
+ [[package]]
674
+ name = "itertools"
675
+ version = "0.10.5"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
678
+ dependencies = [
679
+ "either",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "itoa"
684
+ version = "1.0.18"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
687
+
688
+ [[package]]
689
+ name = "js-sys"
690
+ version = "0.3.100"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
693
+ dependencies = [
694
+ "cfg-if",
695
+ "futures-util",
696
+ "wasm-bindgen",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "json-event-parser"
701
+ version = "0.2.3"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "574b0cd5e90ee2ba03a66d0611fc9a09c9a0c28b2ecc2dc8a181dd31a53ca5d7"
704
+
705
+ [[package]]
706
+ name = "lazy_static"
707
+ version = "1.5.0"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
710
+
711
+ [[package]]
712
+ name = "libc"
713
+ version = "0.2.186"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
716
+
717
+ [[package]]
718
+ name = "litemap"
719
+ version = "0.8.2"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
722
+
723
+ [[package]]
724
+ name = "log"
725
+ version = "0.4.32"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
728
+
729
+ [[package]]
730
+ name = "memchr"
731
+ version = "2.8.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
734
+
735
+ [[package]]
736
+ name = "memoffset"
737
+ version = "0.9.1"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
740
+ dependencies = [
741
+ "autocfg",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "miniz_oxide"
746
+ version = "0.8.9"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
749
+ dependencies = [
750
+ "adler2",
751
+ "simd-adler32",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "normalize-line-endings"
756
+ version = "0.3.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
759
+
760
+ [[package]]
761
+ name = "num-traits"
762
+ version = "0.2.19"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
765
+ dependencies = [
766
+ "autocfg",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "once_cell"
771
+ version = "1.21.4"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
774
+
775
+ [[package]]
776
+ name = "once_cell_polyfill"
777
+ version = "1.70.2"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
780
+
781
+ [[package]]
782
+ name = "ontologos-cli"
783
+ version = "0.1.0"
784
+ dependencies = [
785
+ "assert_cmd",
786
+ "clap",
787
+ "ontologos-core",
788
+ "ontologos-explain",
789
+ "ontologos-parser",
790
+ "ontologos-profile",
791
+ "ontologos-rdfs",
792
+ "predicates",
793
+ "serde",
794
+ "serde_json",
795
+ "thiserror 2.0.18",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "ontologos-core"
800
+ version = "0.1.0"
801
+ dependencies = [
802
+ "criterion",
803
+ "ontologos-parser",
804
+ "ontologos-profile",
805
+ "serde",
806
+ "serde_json",
807
+ "thiserror 2.0.18",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "ontologos-el"
812
+ version = "0.1.0"
813
+ dependencies = [
814
+ "ontologos-core",
815
+ "thiserror 2.0.18",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "ontologos-explain"
820
+ version = "0.1.0"
821
+ dependencies = [
822
+ "ontologos-core",
823
+ "serde",
824
+ "serde_json",
825
+ "thiserror 2.0.18",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "ontologos-parser"
830
+ version = "0.1.0"
831
+ dependencies = [
832
+ "horned-owl",
833
+ "ontologos-core",
834
+ "thiserror 2.0.18",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "ontologos-profile"
839
+ version = "0.1.0"
840
+ dependencies = [
841
+ "ontologos-core",
842
+ "serde",
843
+ "thiserror 2.0.18",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "ontologos-py"
848
+ version = "0.1.0"
849
+ dependencies = [
850
+ "ontologos-core",
851
+ "ontologos-parser",
852
+ "pyo3",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "ontologos-query"
857
+ version = "0.1.0"
858
+ dependencies = [
859
+ "ontologos-core",
860
+ "thiserror 2.0.18",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "ontologos-rdfs"
865
+ version = "0.1.0"
866
+ dependencies = [
867
+ "ontologos-core",
868
+ "thiserror 2.0.18",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "ontologos-rl"
873
+ version = "0.1.0"
874
+ dependencies = [
875
+ "ontologos-core",
876
+ "thiserror 2.0.18",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "oorandom"
881
+ version = "11.1.5"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
884
+
885
+ [[package]]
886
+ name = "oxilangtag"
887
+ version = "0.1.6"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "5d3b4eb570abd4a1dcb062c31fd37b832264d9dc7292c3e69acfe926c87b063f"
890
+ dependencies = [
891
+ "serde",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "oxiri"
896
+ version = "0.2.11"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
899
+
900
+ [[package]]
901
+ name = "oxjsonld"
902
+ version = "0.2.5"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "f6e1380a504a8571763f13b8bcad629ff90d0300d47d8a519f3c6c599625840e"
905
+ dependencies = [
906
+ "json-event-parser",
907
+ "oxiri",
908
+ "oxrdf",
909
+ "ryu-js",
910
+ "thiserror 2.0.18",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "oxrdf"
915
+ version = "0.3.3"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "0afd5c28e4a399c57ee2bc3accd40c7b671fdc7b6537499f14e95b265af7d7e0"
918
+ dependencies = [
919
+ "oxilangtag",
920
+ "oxiri",
921
+ "rand",
922
+ "thiserror 2.0.18",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "oxrdfio"
927
+ version = "0.2.5"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "696223589ecbcab06b1a5df9b527dc25b0c656160cca38752fdb3878a5d3dd03"
930
+ dependencies = [
931
+ "oxjsonld",
932
+ "oxrdf",
933
+ "oxrdfxml",
934
+ "oxttl",
935
+ "thiserror 2.0.18",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "oxrdfxml"
940
+ version = "0.2.3"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "cd5516ae083d09bc57ec65ed5ee97701481725de6ffaa83d968ab42a96157ba1"
943
+ dependencies = [
944
+ "oxilangtag",
945
+ "oxiri",
946
+ "oxrdf",
947
+ "quick-xml 0.37.5",
948
+ "thiserror 2.0.18",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "oxttl"
953
+ version = "0.2.3"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "f03fd471bd54c23d76631c0a2677aa4bb308d905f6e491ee35dcb0732b7c5c6c"
956
+ dependencies = [
957
+ "memchr",
958
+ "oxilangtag",
959
+ "oxiri",
960
+ "oxrdf",
961
+ "thiserror 2.0.18",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "percent-encoding"
966
+ version = "2.3.2"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
969
+
970
+ [[package]]
971
+ name = "pest"
972
+ version = "2.8.6"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
975
+ dependencies = [
976
+ "memchr",
977
+ "ucd-trie",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "pest_derive"
982
+ version = "2.8.6"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
985
+ dependencies = [
986
+ "pest",
987
+ "pest_generator",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "pest_generator"
992
+ version = "2.8.6"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
995
+ dependencies = [
996
+ "pest",
997
+ "pest_meta",
998
+ "proc-macro2",
999
+ "quote",
1000
+ "syn",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "pest_meta"
1005
+ version = "2.8.6"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1008
+ dependencies = [
1009
+ "pest",
1010
+ "sha2",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "pin-project-lite"
1015
+ version = "0.2.17"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1018
+
1019
+ [[package]]
1020
+ name = "plotters"
1021
+ version = "0.3.7"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1024
+ dependencies = [
1025
+ "num-traits",
1026
+ "plotters-backend",
1027
+ "plotters-svg",
1028
+ "wasm-bindgen",
1029
+ "web-sys",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "plotters-backend"
1034
+ version = "0.3.7"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1037
+
1038
+ [[package]]
1039
+ name = "plotters-svg"
1040
+ version = "0.3.7"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1043
+ dependencies = [
1044
+ "plotters-backend",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "portable-atomic"
1049
+ version = "1.13.1"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1052
+
1053
+ [[package]]
1054
+ name = "potential_utf"
1055
+ version = "0.1.5"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1058
+ dependencies = [
1059
+ "zerovec",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "ppv-lite86"
1064
+ version = "0.2.21"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1067
+ dependencies = [
1068
+ "zerocopy",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "predicates"
1073
+ version = "3.1.4"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1076
+ dependencies = [
1077
+ "anstyle",
1078
+ "difflib",
1079
+ "float-cmp",
1080
+ "normalize-line-endings",
1081
+ "predicates-core",
1082
+ "regex",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "predicates-core"
1087
+ version = "1.0.10"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1090
+
1091
+ [[package]]
1092
+ name = "predicates-tree"
1093
+ version = "1.0.13"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1096
+ dependencies = [
1097
+ "predicates-core",
1098
+ "termtree",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "pretty_rdf"
1103
+ version = "0.11.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "2ef451f785c5b7a8f2bc55ebdc88864156bb39afcd67a9c6af35d71c87043505"
1106
+ dependencies = [
1107
+ "indexmap 1.9.3",
1108
+ "oxrdf",
1109
+ "oxrdfio",
1110
+ "quick-xml 0.31.0",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "proc-macro2"
1115
+ version = "1.0.106"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1118
+ dependencies = [
1119
+ "unicode-ident",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "pyo3"
1124
+ version = "0.23.5"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1127
+ dependencies = [
1128
+ "cfg-if",
1129
+ "indoc",
1130
+ "libc",
1131
+ "memoffset",
1132
+ "once_cell",
1133
+ "portable-atomic",
1134
+ "pyo3-build-config",
1135
+ "pyo3-ffi",
1136
+ "pyo3-macros",
1137
+ "unindent",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "pyo3-build-config"
1142
+ version = "0.23.5"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1145
+ dependencies = [
1146
+ "once_cell",
1147
+ "target-lexicon",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "pyo3-ffi"
1152
+ version = "0.23.5"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1155
+ dependencies = [
1156
+ "libc",
1157
+ "pyo3-build-config",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "pyo3-macros"
1162
+ version = "0.23.5"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1165
+ dependencies = [
1166
+ "proc-macro2",
1167
+ "pyo3-macros-backend",
1168
+ "quote",
1169
+ "syn",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "pyo3-macros-backend"
1174
+ version = "0.23.5"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1177
+ dependencies = [
1178
+ "heck",
1179
+ "proc-macro2",
1180
+ "pyo3-build-config",
1181
+ "quote",
1182
+ "syn",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "quick-xml"
1187
+ version = "0.31.0"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
1190
+ dependencies = [
1191
+ "memchr",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "quick-xml"
1196
+ version = "0.37.5"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1199
+ dependencies = [
1200
+ "memchr",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "quote"
1205
+ version = "1.0.45"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1208
+ dependencies = [
1209
+ "proc-macro2",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "r-efi"
1214
+ version = "5.3.0"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1217
+
1218
+ [[package]]
1219
+ name = "rand"
1220
+ version = "0.9.4"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1223
+ dependencies = [
1224
+ "rand_chacha",
1225
+ "rand_core",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "rand_chacha"
1230
+ version = "0.9.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1233
+ dependencies = [
1234
+ "ppv-lite86",
1235
+ "rand_core",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "rand_core"
1240
+ version = "0.9.5"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1243
+ dependencies = [
1244
+ "getrandom 0.3.4",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "rayon"
1249
+ version = "1.12.0"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1252
+ dependencies = [
1253
+ "either",
1254
+ "rayon-core",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "rayon-core"
1259
+ version = "1.13.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1262
+ dependencies = [
1263
+ "crossbeam-deque",
1264
+ "crossbeam-utils",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "regex"
1269
+ version = "1.12.4"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1272
+ dependencies = [
1273
+ "aho-corasick",
1274
+ "memchr",
1275
+ "regex-automata",
1276
+ "regex-syntax",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "regex-automata"
1281
+ version = "0.4.14"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1284
+ dependencies = [
1285
+ "aho-corasick",
1286
+ "memchr",
1287
+ "regex-syntax",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "regex-syntax"
1292
+ version = "0.8.11"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1295
+
1296
+ [[package]]
1297
+ name = "ring"
1298
+ version = "0.17.14"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1301
+ dependencies = [
1302
+ "cc",
1303
+ "cfg-if",
1304
+ "getrandom 0.2.17",
1305
+ "libc",
1306
+ "untrusted",
1307
+ "windows-sys 0.52.0",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "rustls"
1312
+ version = "0.23.40"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1315
+ dependencies = [
1316
+ "log",
1317
+ "once_cell",
1318
+ "ring",
1319
+ "rustls-pki-types",
1320
+ "rustls-webpki",
1321
+ "subtle",
1322
+ "zeroize",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "rustls-pki-types"
1327
+ version = "1.14.1"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1330
+ dependencies = [
1331
+ "zeroize",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "rustls-webpki"
1336
+ version = "0.103.13"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1339
+ dependencies = [
1340
+ "ring",
1341
+ "rustls-pki-types",
1342
+ "untrusted",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "rustversion"
1347
+ version = "1.0.22"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1350
+
1351
+ [[package]]
1352
+ name = "ryu-js"
1353
+ version = "1.0.2"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "dd29631678d6fb0903b69223673e122c32e9ae559d0960a38d574695ebc0ea15"
1356
+
1357
+ [[package]]
1358
+ name = "same-file"
1359
+ version = "1.0.6"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1362
+ dependencies = [
1363
+ "winapi-util",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "serde"
1368
+ version = "1.0.228"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1371
+ dependencies = [
1372
+ "serde_core",
1373
+ "serde_derive",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "serde_core"
1378
+ version = "1.0.228"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1381
+ dependencies = [
1382
+ "serde_derive",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "serde_derive"
1387
+ version = "1.0.228"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1390
+ dependencies = [
1391
+ "proc-macro2",
1392
+ "quote",
1393
+ "syn",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "serde_json"
1398
+ version = "1.0.150"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1401
+ dependencies = [
1402
+ "itoa",
1403
+ "memchr",
1404
+ "serde",
1405
+ "serde_core",
1406
+ "zmij",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "sha2"
1411
+ version = "0.10.9"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1414
+ dependencies = [
1415
+ "cfg-if",
1416
+ "cpufeatures",
1417
+ "digest",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "shlex"
1422
+ version = "2.0.1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1425
+
1426
+ [[package]]
1427
+ name = "simd-adler32"
1428
+ version = "0.3.9"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1431
+
1432
+ [[package]]
1433
+ name = "slab"
1434
+ version = "0.4.12"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1437
+
1438
+ [[package]]
1439
+ name = "smallvec"
1440
+ version = "1.15.1"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1443
+
1444
+ [[package]]
1445
+ name = "stable_deref_trait"
1446
+ version = "1.2.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1449
+
1450
+ [[package]]
1451
+ name = "strsim"
1452
+ version = "0.11.1"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1455
+
1456
+ [[package]]
1457
+ name = "subtle"
1458
+ version = "2.6.1"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1461
+
1462
+ [[package]]
1463
+ name = "syn"
1464
+ version = "2.0.117"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1467
+ dependencies = [
1468
+ "proc-macro2",
1469
+ "quote",
1470
+ "unicode-ident",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "synstructure"
1475
+ version = "0.13.2"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1478
+ dependencies = [
1479
+ "proc-macro2",
1480
+ "quote",
1481
+ "syn",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "target-lexicon"
1486
+ version = "0.12.16"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1489
+
1490
+ [[package]]
1491
+ name = "termtree"
1492
+ version = "0.5.1"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1495
+
1496
+ [[package]]
1497
+ name = "thiserror"
1498
+ version = "1.0.69"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1501
+ dependencies = [
1502
+ "thiserror-impl 1.0.69",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "thiserror"
1507
+ version = "2.0.18"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1510
+ dependencies = [
1511
+ "thiserror-impl 2.0.18",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "thiserror-impl"
1516
+ version = "1.0.69"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1519
+ dependencies = [
1520
+ "proc-macro2",
1521
+ "quote",
1522
+ "syn",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "thiserror-impl"
1527
+ version = "2.0.18"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1530
+ dependencies = [
1531
+ "proc-macro2",
1532
+ "quote",
1533
+ "syn",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "tinystr"
1538
+ version = "0.8.3"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1541
+ dependencies = [
1542
+ "displaydoc",
1543
+ "zerovec",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "tinytemplate"
1548
+ version = "1.2.1"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1551
+ dependencies = [
1552
+ "serde",
1553
+ "serde_json",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "typenum"
1558
+ version = "1.20.1"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1561
+
1562
+ [[package]]
1563
+ name = "ucd-trie"
1564
+ version = "0.1.7"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1567
+
1568
+ [[package]]
1569
+ name = "unicode-ident"
1570
+ version = "1.0.24"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1573
+
1574
+ [[package]]
1575
+ name = "unindent"
1576
+ version = "0.2.4"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1579
+
1580
+ [[package]]
1581
+ name = "untrusted"
1582
+ version = "0.9.0"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1585
+
1586
+ [[package]]
1587
+ name = "ureq"
1588
+ version = "2.12.1"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1591
+ dependencies = [
1592
+ "base64",
1593
+ "flate2",
1594
+ "log",
1595
+ "once_cell",
1596
+ "rustls",
1597
+ "rustls-pki-types",
1598
+ "url",
1599
+ "webpki-roots 0.26.11",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "url"
1604
+ version = "2.5.8"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1607
+ dependencies = [
1608
+ "form_urlencoded",
1609
+ "idna",
1610
+ "percent-encoding",
1611
+ "serde",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "utf8_iter"
1616
+ version = "1.0.4"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1619
+
1620
+ [[package]]
1621
+ name = "utf8parse"
1622
+ version = "0.2.2"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1625
+
1626
+ [[package]]
1627
+ name = "version_check"
1628
+ version = "0.9.5"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1631
+
1632
+ [[package]]
1633
+ name = "wait-timeout"
1634
+ version = "0.2.1"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1637
+ dependencies = [
1638
+ "libc",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "walkdir"
1643
+ version = "2.5.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1646
+ dependencies = [
1647
+ "same-file",
1648
+ "winapi-util",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "wasi"
1653
+ version = "0.11.1+wasi-snapshot-preview1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1656
+
1657
+ [[package]]
1658
+ name = "wasip2"
1659
+ version = "1.0.3+wasi-0.2.9"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1662
+ dependencies = [
1663
+ "wit-bindgen",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "wasm-bindgen"
1668
+ version = "0.2.123"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
1671
+ dependencies = [
1672
+ "cfg-if",
1673
+ "once_cell",
1674
+ "rustversion",
1675
+ "wasm-bindgen-macro",
1676
+ "wasm-bindgen-shared",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "wasm-bindgen-macro"
1681
+ version = "0.2.123"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
1684
+ dependencies = [
1685
+ "quote",
1686
+ "wasm-bindgen-macro-support",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "wasm-bindgen-macro-support"
1691
+ version = "0.2.123"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
1694
+ dependencies = [
1695
+ "bumpalo",
1696
+ "proc-macro2",
1697
+ "quote",
1698
+ "syn",
1699
+ "wasm-bindgen-shared",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "wasm-bindgen-shared"
1704
+ version = "0.2.123"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
1707
+ dependencies = [
1708
+ "unicode-ident",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "web-sys"
1713
+ version = "0.3.100"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "6e0871acf327f283dc6da28a1696cdc64fb355ba9f935d052021fa77f35cce69"
1716
+ dependencies = [
1717
+ "js-sys",
1718
+ "wasm-bindgen",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "webpki-roots"
1723
+ version = "0.26.11"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1726
+ dependencies = [
1727
+ "webpki-roots 1.0.7",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "webpki-roots"
1732
+ version = "1.0.7"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
1735
+ dependencies = [
1736
+ "rustls-pki-types",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "winapi-util"
1741
+ version = "0.1.11"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1744
+ dependencies = [
1745
+ "windows-sys 0.61.2",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "windows-link"
1750
+ version = "0.2.1"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1753
+
1754
+ [[package]]
1755
+ name = "windows-sys"
1756
+ version = "0.52.0"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1759
+ dependencies = [
1760
+ "windows-targets",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "windows-sys"
1765
+ version = "0.61.2"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1768
+ dependencies = [
1769
+ "windows-link",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "windows-targets"
1774
+ version = "0.52.6"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1777
+ dependencies = [
1778
+ "windows_aarch64_gnullvm",
1779
+ "windows_aarch64_msvc",
1780
+ "windows_i686_gnu",
1781
+ "windows_i686_gnullvm",
1782
+ "windows_i686_msvc",
1783
+ "windows_x86_64_gnu",
1784
+ "windows_x86_64_gnullvm",
1785
+ "windows_x86_64_msvc",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "windows_aarch64_gnullvm"
1790
+ version = "0.52.6"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1793
+
1794
+ [[package]]
1795
+ name = "windows_aarch64_msvc"
1796
+ version = "0.52.6"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1799
+
1800
+ [[package]]
1801
+ name = "windows_i686_gnu"
1802
+ version = "0.52.6"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1805
+
1806
+ [[package]]
1807
+ name = "windows_i686_gnullvm"
1808
+ version = "0.52.6"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1811
+
1812
+ [[package]]
1813
+ name = "windows_i686_msvc"
1814
+ version = "0.52.6"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1817
+
1818
+ [[package]]
1819
+ name = "windows_x86_64_gnu"
1820
+ version = "0.52.6"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1823
+
1824
+ [[package]]
1825
+ name = "windows_x86_64_gnullvm"
1826
+ version = "0.52.6"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1829
+
1830
+ [[package]]
1831
+ name = "windows_x86_64_msvc"
1832
+ version = "0.52.6"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1835
+
1836
+ [[package]]
1837
+ name = "wit-bindgen"
1838
+ version = "0.57.1"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1841
+
1842
+ [[package]]
1843
+ name = "writeable"
1844
+ version = "0.6.3"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1847
+
1848
+ [[package]]
1849
+ name = "yoke"
1850
+ version = "0.8.3"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1853
+ dependencies = [
1854
+ "stable_deref_trait",
1855
+ "yoke-derive",
1856
+ "zerofrom",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "yoke-derive"
1861
+ version = "0.8.2"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1864
+ dependencies = [
1865
+ "proc-macro2",
1866
+ "quote",
1867
+ "syn",
1868
+ "synstructure",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "zerocopy"
1873
+ version = "0.8.52"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
1876
+ dependencies = [
1877
+ "zerocopy-derive",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "zerocopy-derive"
1882
+ version = "0.8.52"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
1885
+ dependencies = [
1886
+ "proc-macro2",
1887
+ "quote",
1888
+ "syn",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "zerofrom"
1893
+ version = "0.1.8"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1896
+ dependencies = [
1897
+ "zerofrom-derive",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "zerofrom-derive"
1902
+ version = "0.1.7"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1905
+ dependencies = [
1906
+ "proc-macro2",
1907
+ "quote",
1908
+ "syn",
1909
+ "synstructure",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "zeroize"
1914
+ version = "1.8.2"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1917
+
1918
+ [[package]]
1919
+ name = "zerotrie"
1920
+ version = "0.2.4"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1923
+ dependencies = [
1924
+ "displaydoc",
1925
+ "yoke",
1926
+ "zerofrom",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "zerovec"
1931
+ version = "0.11.6"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1934
+ dependencies = [
1935
+ "yoke",
1936
+ "zerofrom",
1937
+ "zerovec-derive",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "zerovec-derive"
1942
+ version = "0.11.3"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1945
+ dependencies = [
1946
+ "proc-macro2",
1947
+ "quote",
1948
+ "syn",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "zmij"
1953
+ version = "1.0.21"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"