rustdl 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 (146) hide show
  1. rustdl-0.2.0/Cargo.lock +2686 -0
  2. rustdl-0.2.0/Cargo.toml +77 -0
  3. rustdl-0.2.0/PKG-INFO +34 -0
  4. rustdl-0.2.0/README.md +8 -0
  5. rustdl-0.2.0/crates/owl-dl-core/Cargo.toml +27 -0
  6. rustdl-0.2.0/crates/owl-dl-core/README.md +302 -0
  7. rustdl-0.2.0/crates/owl-dl-core/src/absorb.rs +749 -0
  8. rustdl-0.2.0/crates/owl-dl-core/src/clause.rs +1049 -0
  9. rustdl-0.2.0/crates/owl-dl-core/src/convert.rs +1128 -0
  10. rustdl-0.2.0/crates/owl-dl-core/src/convert_back.rs +513 -0
  11. rustdl-0.2.0/crates/owl-dl-core/src/data_axioms.rs +753 -0
  12. rustdl-0.2.0/crates/owl-dl-core/src/definitions.rs +267 -0
  13. rustdl-0.2.0/crates/owl-dl-core/src/ir.rs +631 -0
  14. rustdl-0.2.0/crates/owl-dl-core/src/lib.rs +39 -0
  15. rustdl-0.2.0/crates/owl-dl-core/src/locality.rs +320 -0
  16. rustdl-0.2.0/crates/owl-dl-core/src/normalize.rs +520 -0
  17. rustdl-0.2.0/crates/owl-dl-core/src/ontology.rs +118 -0
  18. rustdl-0.2.0/crates/owl-dl-core/src/residual_trigger.rs +278 -0
  19. rustdl-0.2.0/crates/owl-dl-core/src/role_hierarchy.rs +231 -0
  20. rustdl-0.2.0/crates/owl-dl-core/src/told.rs +452 -0
  21. rustdl-0.2.0/crates/owl-dl-core/src/transform.rs +85 -0
  22. rustdl-0.2.0/crates/owl-dl-core/src/vocab.rs +215 -0
  23. rustdl-0.2.0/crates/owl-dl-core/tests/concept_pool_proptest.proptest-regressions +7 -0
  24. rustdl-0.2.0/crates/owl-dl-core/tests/concept_pool_proptest.rs +152 -0
  25. rustdl-0.2.0/crates/owl-dl-core/tests/convert_round_trip_proptest.rs +167 -0
  26. rustdl-0.2.0/crates/owl-dl-core/tests/role_hierarchy_proptest.rs +57 -0
  27. rustdl-0.2.0/crates/owl-dl-datatypes/Cargo.toml +23 -0
  28. rustdl-0.2.0/crates/owl-dl-datatypes/README.md +302 -0
  29. rustdl-0.2.0/crates/owl-dl-datatypes/src/lib.rs +7 -0
  30. rustdl-0.2.0/crates/owl-dl-py/.gitignore +9 -0
  31. rustdl-0.2.0/crates/owl-dl-py/Cargo.toml +27 -0
  32. rustdl-0.2.0/crates/owl-dl-py/README.md +8 -0
  33. rustdl-0.2.0/crates/owl-dl-py/src/classify.rs +123 -0
  34. rustdl-0.2.0/crates/owl-dl-py/src/errors.rs +76 -0
  35. rustdl-0.2.0/crates/owl-dl-py/src/lib.rs +23 -0
  36. rustdl-0.2.0/crates/owl-dl-py/src/load.rs +66 -0
  37. rustdl-0.2.0/crates/owl-dl-py/src/materialize.rs +74 -0
  38. rustdl-0.2.0/crates/owl-dl-py/src/queries.rs +80 -0
  39. rustdl-0.2.0/crates/owl-dl-py/tests/python/conftest.py +11 -0
  40. rustdl-0.2.0/crates/owl-dl-py/tests/python/test_classify.py +48 -0
  41. rustdl-0.2.0/crates/owl-dl-py/tests/python/test_materialize.py +22 -0
  42. rustdl-0.2.0/crates/owl-dl-py/tests/python/test_queries.py +43 -0
  43. rustdl-0.2.0/crates/owl-dl-py/tests/python/test_smoke.py +11 -0
  44. rustdl-0.2.0/crates/owl-dl-py/tests/python/test_soundness.py +49 -0
  45. rustdl-0.2.0/crates/owl-dl-reasoner/Cargo.toml +43 -0
  46. rustdl-0.2.0/crates/owl-dl-reasoner/README.md +302 -0
  47. rustdl-0.2.0/crates/owl-dl-reasoner/src/abox_check.rs +429 -0
  48. rustdl-0.2.0/crates/owl-dl-reasoner/src/classify.rs +2266 -0
  49. rustdl-0.2.0/crates/owl-dl-reasoner/src/lib.rs +3769 -0
  50. rustdl-0.2.0/crates/owl-dl-reasoner/src/model_cache.rs +208 -0
  51. rustdl-0.2.0/crates/owl-dl-reasoner/src/realize.rs +808 -0
  52. rustdl-0.2.0/crates/owl-dl-reasoner/src/union_find.rs +105 -0
  53. rustdl-0.2.0/crates/owl-dl-reasoner/tests/abox_consistency.rs +160 -0
  54. rustdl-0.2.0/crates/owl-dl-reasoner/tests/anon349_diagnostic.rs +74 -0
  55. rustdl-0.2.0/crates/owl-dl-reasoner/tests/datatype_completeness.rs +169 -0
  56. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p1_direct_bot.ofn +12 -0
  57. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p1_no_bot.ofn +13 -0
  58. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p2_disjoint_different_individuals.ofn +15 -0
  59. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p2_disjoint_types.ofn +14 -0
  60. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p3_neg_opa.ofn +13 -0
  61. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p3_neg_opa_no_clash.ofn +14 -0
  62. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p3_role_hierarchy_neg_consistent.ofn +15 -0
  63. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p3_role_hierarchy_neg_inconsistent.ofn +15 -0
  64. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p4_same_different.ofn +14 -0
  65. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p4_same_without_different.ofn +14 -0
  66. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p5_functional_diff.ofn +16 -0
  67. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p5_functional_same_target.ofn +15 -0
  68. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p6_asymmetric.ofn +14 -0
  69. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p6_asymmetric_one_way.ofn +13 -0
  70. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p6_irreflexive.ofn +12 -0
  71. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p6_irreflexive_distinct.ofn +13 -0
  72. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p7_range_compatible.ofn +17 -0
  73. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/abox/p7_range_disjoint.ofn +17 -0
  74. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/data_cardinality_disjoint.ofn +11 -0
  75. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/data_property_domain-classified.owx +47 -0
  76. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/data_property_domain.ofn +9 -0
  77. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/datatype_definition-classified.owx +58 -0
  78. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/datatype_definition.ofn +11 -0
  79. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/datatype_facet.ofn +15 -0
  80. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/functional_data_property.ofn +10 -0
  81. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/sub_data_property-classified.owx +57 -0
  82. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/datatype/sub_data_property.ofn +11 -0
  83. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/functional-equiv-some-bug.ofn +16 -0
  84. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/named-pizza-country-bug.ofn +84 -0
  85. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-01.txt +2 -0
  86. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-02.txt +2 -0
  87. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-03.txt +2 -0
  88. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-04.txt +2 -0
  89. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-05.txt +2 -0
  90. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-06.txt +2 -0
  91. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-07.txt +2 -0
  92. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/p2b0-terms-08.txt +2 -0
  93. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_01.hermit.owx +2996 -0
  94. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_01.ofn +1112 -0
  95. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_01.owx +2668 -0
  96. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_02.hermit.owx +2416 -0
  97. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_02.ofn +958 -0
  98. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_02.owx +2172 -0
  99. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_03.hermit.owx +5132 -0
  100. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_03.ofn +1721 -0
  101. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_03.owx +4432 -0
  102. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_04.hermit.owx +5132 -0
  103. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_04.ofn +1721 -0
  104. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_04.owx +4432 -0
  105. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_05.hermit.owx +5132 -0
  106. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_05.ofn +1721 -0
  107. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_05.owx +4432 -0
  108. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_06.hermit.owx +3009 -0
  109. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_06.ofn +1251 -0
  110. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_06.owx +2713 -0
  111. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_07.hermit.owx +2651 -0
  112. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_07.ofn +1072 -0
  113. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_07.owx +2411 -0
  114. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_08.hermit.owx +5227 -0
  115. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_08.ofn +1766 -0
  116. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/pair_08.owx +4519 -0
  117. rustdl-0.2.0/crates/owl-dl-reasoner/tests/fixtures/phase2b/phase2b-verdicts.log +8 -0
  118. rustdl-0.2.0/crates/owl-dl-reasoner/tests/konclude_closure_diff.rs +513 -0
  119. rustdl-0.2.0/crates/owl-dl-reasoner/tests/label_heuristic_canary.rs +153 -0
  120. rustdl-0.2.0/crates/owl-dl-reasoner/tests/phase2c_pair_06_canary.rs +129 -0
  121. rustdl-0.2.0/crates/owl-dl-reasoner/tests/real_ontology_corpus.rs +544 -0
  122. rustdl-0.2.0/crates/owl-dl-reasoner/tests/snapshot_phase0_canary.rs +250 -0
  123. rustdl-0.2.0/crates/owl-dl-saturation/Cargo.toml +29 -0
  124. rustdl-0.2.0/crates/owl-dl-saturation/README.md +302 -0
  125. rustdl-0.2.0/crates/owl-dl-saturation/src/lib.rs +3207 -0
  126. rustdl-0.2.0/crates/owl-dl-saturation/tests/fixtures/phase2a_functional_role_canary.ofn +17 -0
  127. rustdl-0.2.0/crates/owl-dl-saturation/tests/fixtures/phase2b_compound_existential_canary.ofn +17 -0
  128. rustdl-0.2.0/crates/owl-dl-tableau/Cargo.toml +35 -0
  129. rustdl-0.2.0/crates/owl-dl-tableau/README.md +302 -0
  130. rustdl-0.2.0/crates/owl-dl-tableau/src/counters.rs +154 -0
  131. rustdl-0.2.0/crates/owl-dl-tableau/src/deps.rs +71 -0
  132. rustdl-0.2.0/crates/owl-dl-tableau/src/graph.rs +394 -0
  133. rustdl-0.2.0/crates/owl-dl-tableau/src/hyper.rs +2795 -0
  134. rustdl-0.2.0/crates/owl-dl-tableau/src/lib.rs +2409 -0
  135. rustdl-0.2.0/crates/owl-dl-tableau/src/replay.rs +130 -0
  136. rustdl-0.2.0/crates/owl-dl-tableau/src/rules.rs +1688 -0
  137. rustdl-0.2.0/crates/owl-dl-tableau/src/saturate.rs +243 -0
  138. rustdl-0.2.0/crates/owl-dl-tableau/src/search.rs +455 -0
  139. rustdl-0.2.0/crates/owl-dl-tableau/src/snapshot.rs +411 -0
  140. rustdl-0.2.0/crates/owl-dl-tableau/src/trail.rs +310 -0
  141. rustdl-0.2.0/crates/owl-dl-tableau/tests/backprop_risk.rs +106 -0
  142. rustdl-0.2.0/crates/owl-dl-tableau/tests/replay_driver.rs +89 -0
  143. rustdl-0.2.0/crates/owl-dl-tableau/tests/replay_roundtrip.rs +69 -0
  144. rustdl-0.2.0/crates/owl-dl-tableau/tests/snapshot_capture.rs +77 -0
  145. rustdl-0.2.0/pyproject.toml +39 -0
  146. rustdl-0.2.0/python/rustdl/__init__.py +69 -0
@@ -0,0 +1,2686 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.3.4",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.4"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aligned-vec"
44
+ version = "0.6.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
47
+ dependencies = [
48
+ "equator",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "allocator-api2"
53
+ version = "0.2.21"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
56
+
57
+ [[package]]
58
+ name = "anstream"
59
+ version = "1.0.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
62
+ dependencies = [
63
+ "anstyle",
64
+ "anstyle-parse",
65
+ "anstyle-query",
66
+ "anstyle-wincon",
67
+ "colorchoice",
68
+ "is_terminal_polyfill",
69
+ "utf8parse",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anstyle"
74
+ version = "1.0.14"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
77
+
78
+ [[package]]
79
+ name = "anstyle-parse"
80
+ version = "1.0.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
83
+ dependencies = [
84
+ "utf8parse",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-query"
89
+ version = "1.1.5"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
92
+ dependencies = [
93
+ "windows-sys 0.61.2",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "anstyle-wincon"
98
+ version = "3.0.11"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
101
+ dependencies = [
102
+ "anstyle",
103
+ "once_cell_polyfill",
104
+ "windows-sys 0.61.2",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anyhow"
109
+ version = "1.0.102"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
112
+
113
+ [[package]]
114
+ name = "arrayvec"
115
+ version = "0.7.6"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
118
+
119
+ [[package]]
120
+ name = "autocfg"
121
+ version = "1.5.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
124
+
125
+ [[package]]
126
+ name = "backtrace"
127
+ version = "0.3.76"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
130
+ dependencies = [
131
+ "addr2line",
132
+ "cfg-if",
133
+ "libc",
134
+ "miniz_oxide",
135
+ "object",
136
+ "rustc-demangle",
137
+ "windows-link",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "base64"
142
+ version = "0.22.1"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
145
+
146
+ [[package]]
147
+ name = "bit-set"
148
+ version = "0.8.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
151
+ dependencies = [
152
+ "bit-vec",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "bit-vec"
157
+ version = "0.8.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
160
+
161
+ [[package]]
162
+ name = "bitflags"
163
+ version = "1.3.2"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
166
+
167
+ [[package]]
168
+ name = "bitflags"
169
+ version = "2.11.1"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
172
+
173
+ [[package]]
174
+ name = "bitmaps"
175
+ version = "2.1.0"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
178
+ dependencies = [
179
+ "typenum",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "bitvec"
184
+ version = "1.0.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
187
+ dependencies = [
188
+ "funty",
189
+ "radium",
190
+ "tap",
191
+ "wyz",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "block-buffer"
196
+ version = "0.10.4"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
199
+ dependencies = [
200
+ "generic-array",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "bumpalo"
205
+ version = "3.20.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
208
+
209
+ [[package]]
210
+ name = "bytemuck"
211
+ version = "1.25.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
214
+
215
+ [[package]]
216
+ name = "cc"
217
+ version = "1.2.62"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
220
+ dependencies = [
221
+ "find-msvc-tools",
222
+ "shlex",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "cfg-if"
227
+ version = "1.0.4"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
230
+
231
+ [[package]]
232
+ name = "clap"
233
+ version = "4.6.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
236
+ dependencies = [
237
+ "clap_builder",
238
+ "clap_derive",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "clap_builder"
243
+ version = "4.6.0"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
246
+ dependencies = [
247
+ "anstream",
248
+ "anstyle",
249
+ "clap_lex",
250
+ "strsim",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "clap_derive"
255
+ version = "4.6.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
258
+ dependencies = [
259
+ "heck",
260
+ "proc-macro2",
261
+ "quote",
262
+ "syn",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "clap_lex"
267
+ version = "1.1.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
270
+
271
+ [[package]]
272
+ name = "colorchoice"
273
+ version = "1.0.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
276
+
277
+ [[package]]
278
+ name = "cpp_demangle"
279
+ version = "0.4.5"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
282
+ dependencies = [
283
+ "cfg-if",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "cpufeatures"
288
+ version = "0.2.17"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
291
+ dependencies = [
292
+ "libc",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "crc32fast"
297
+ version = "1.5.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
300
+ dependencies = [
301
+ "cfg-if",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "crossbeam-deque"
306
+ version = "0.8.6"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
309
+ dependencies = [
310
+ "crossbeam-epoch",
311
+ "crossbeam-utils",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "crossbeam-epoch"
316
+ version = "0.9.18"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
319
+ dependencies = [
320
+ "crossbeam-utils",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "crossbeam-utils"
325
+ version = "0.8.21"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
328
+
329
+ [[package]]
330
+ name = "crypto-common"
331
+ version = "0.1.7"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
334
+ dependencies = [
335
+ "generic-array",
336
+ "typenum",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "curie"
341
+ version = "0.1.4"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "30667fc7792d940719ecada2201aeaedf0f38b876675fa69191e632dabc57569"
344
+ dependencies = [
345
+ "indexmap 2.14.0",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "dashmap"
350
+ version = "6.2.1"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
353
+ dependencies = [
354
+ "cfg-if",
355
+ "crossbeam-utils",
356
+ "hashbrown 0.14.5",
357
+ "lock_api",
358
+ "once_cell",
359
+ "parking_lot_core",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "debugid"
364
+ version = "0.8.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
367
+ dependencies = [
368
+ "uuid",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "digest"
373
+ version = "0.10.7"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
376
+ dependencies = [
377
+ "block-buffer",
378
+ "crypto-common",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "displaydoc"
383
+ version = "0.2.5"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
386
+ dependencies = [
387
+ "proc-macro2",
388
+ "quote",
389
+ "syn",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "either"
394
+ version = "1.16.0"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
397
+
398
+ [[package]]
399
+ name = "enum_meta"
400
+ version = "0.6.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "66766e489640531c2663bb422bb689e32d5ac7dd15975c4928c10317d6f42fbd"
403
+ dependencies = [
404
+ "lazy_static",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "env_logger"
409
+ version = "0.10.2"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
412
+ dependencies = [
413
+ "humantime",
414
+ "is-terminal",
415
+ "log",
416
+ "regex",
417
+ "termcolor",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "equator"
422
+ version = "0.4.2"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
425
+ dependencies = [
426
+ "equator-macro",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "equator-macro"
431
+ version = "0.4.2"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
434
+ dependencies = [
435
+ "proc-macro2",
436
+ "quote",
437
+ "syn",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "equivalent"
442
+ version = "1.0.2"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
445
+
446
+ [[package]]
447
+ name = "errno"
448
+ version = "0.3.14"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
451
+ dependencies = [
452
+ "libc",
453
+ "windows-sys 0.61.2",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "fastrand"
458
+ version = "2.4.1"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
461
+
462
+ [[package]]
463
+ name = "find-msvc-tools"
464
+ version = "0.1.9"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
467
+
468
+ [[package]]
469
+ name = "findshlibs"
470
+ version = "0.10.2"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
473
+ dependencies = [
474
+ "cc",
475
+ "lazy_static",
476
+ "libc",
477
+ "winapi",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "fixedbitset"
482
+ version = "0.5.7"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
485
+
486
+ [[package]]
487
+ name = "flate2"
488
+ version = "1.1.9"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
491
+ dependencies = [
492
+ "crc32fast",
493
+ "miniz_oxide",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "fnv"
498
+ version = "1.0.7"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
501
+
502
+ [[package]]
503
+ name = "foldhash"
504
+ version = "0.1.5"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
507
+
508
+ [[package]]
509
+ name = "form_urlencoded"
510
+ version = "1.2.2"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
513
+ dependencies = [
514
+ "percent-encoding",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "funty"
519
+ version = "2.0.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
522
+
523
+ [[package]]
524
+ name = "futures-core"
525
+ version = "0.3.32"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
528
+
529
+ [[package]]
530
+ name = "futures-task"
531
+ version = "0.3.32"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
534
+
535
+ [[package]]
536
+ name = "futures-util"
537
+ version = "0.3.32"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
540
+ dependencies = [
541
+ "futures-core",
542
+ "futures-task",
543
+ "pin-project-lite",
544
+ "slab",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "generic-array"
549
+ version = "0.14.7"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
552
+ dependencies = [
553
+ "typenum",
554
+ "version_check",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "getrandom"
559
+ version = "0.2.17"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
562
+ dependencies = [
563
+ "cfg-if",
564
+ "libc",
565
+ "wasi",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "getrandom"
570
+ version = "0.3.4"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
573
+ dependencies = [
574
+ "cfg-if",
575
+ "libc",
576
+ "r-efi 5.3.0",
577
+ "wasip2",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "getrandom"
582
+ version = "0.4.2"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
585
+ dependencies = [
586
+ "cfg-if",
587
+ "libc",
588
+ "r-efi 6.0.0",
589
+ "wasip2",
590
+ "wasip3",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "gimli"
595
+ version = "0.32.3"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
598
+
599
+ [[package]]
600
+ name = "hashbrown"
601
+ version = "0.12.3"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
604
+
605
+ [[package]]
606
+ name = "hashbrown"
607
+ version = "0.14.5"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
610
+
611
+ [[package]]
612
+ name = "hashbrown"
613
+ version = "0.15.5"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
616
+ dependencies = [
617
+ "allocator-api2",
618
+ "equivalent",
619
+ "foldhash",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "hashbrown"
624
+ version = "0.17.1"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
627
+
628
+ [[package]]
629
+ name = "heck"
630
+ version = "0.5.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
633
+
634
+ [[package]]
635
+ name = "hermit-abi"
636
+ version = "0.5.2"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
639
+
640
+ [[package]]
641
+ name = "horned-owl"
642
+ version = "1.4.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "877f6118b6f5823bb135d04e36fe2c2d3a2b4493feca8ac09b5fa6e91b9fff9e"
645
+ dependencies = [
646
+ "curie",
647
+ "enum_meta",
648
+ "indexmap 1.9.3",
649
+ "lazy_static",
650
+ "log",
651
+ "oxiri",
652
+ "oxrdf",
653
+ "oxrdfio",
654
+ "pest",
655
+ "pest_derive",
656
+ "pretty_rdf",
657
+ "quick-xml 0.37.5",
658
+ "thiserror 1.0.69",
659
+ "ureq",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "humantime"
664
+ version = "2.3.0"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
667
+
668
+ [[package]]
669
+ name = "icu_collections"
670
+ version = "2.2.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
673
+ dependencies = [
674
+ "displaydoc",
675
+ "potential_utf",
676
+ "utf8_iter",
677
+ "yoke",
678
+ "zerofrom",
679
+ "zerovec",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "icu_locale_core"
684
+ version = "2.2.0"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
687
+ dependencies = [
688
+ "displaydoc",
689
+ "litemap",
690
+ "tinystr",
691
+ "writeable",
692
+ "zerovec",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "icu_normalizer"
697
+ version = "2.2.0"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
700
+ dependencies = [
701
+ "icu_collections",
702
+ "icu_normalizer_data",
703
+ "icu_properties",
704
+ "icu_provider",
705
+ "smallvec",
706
+ "zerovec",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "icu_normalizer_data"
711
+ version = "2.2.0"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
714
+
715
+ [[package]]
716
+ name = "icu_properties"
717
+ version = "2.2.0"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
720
+ dependencies = [
721
+ "icu_collections",
722
+ "icu_locale_core",
723
+ "icu_properties_data",
724
+ "icu_provider",
725
+ "zerotrie",
726
+ "zerovec",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "icu_properties_data"
731
+ version = "2.2.0"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
734
+
735
+ [[package]]
736
+ name = "icu_provider"
737
+ version = "2.2.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
740
+ dependencies = [
741
+ "displaydoc",
742
+ "icu_locale_core",
743
+ "writeable",
744
+ "yoke",
745
+ "zerofrom",
746
+ "zerotrie",
747
+ "zerovec",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "id-arena"
752
+ version = "2.3.0"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
755
+
756
+ [[package]]
757
+ name = "idna"
758
+ version = "1.1.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
761
+ dependencies = [
762
+ "idna_adapter",
763
+ "smallvec",
764
+ "utf8_iter",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "idna_adapter"
769
+ version = "1.2.2"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
772
+ dependencies = [
773
+ "icu_normalizer",
774
+ "icu_properties",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "im"
779
+ version = "15.1.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9"
782
+ dependencies = [
783
+ "bitmaps",
784
+ "rand_core 0.6.4",
785
+ "rand_xoshiro",
786
+ "sized-chunks",
787
+ "typenum",
788
+ "version_check",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "indexmap"
793
+ version = "1.9.3"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
796
+ dependencies = [
797
+ "autocfg",
798
+ "hashbrown 0.12.3",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "indexmap"
803
+ version = "2.14.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
806
+ dependencies = [
807
+ "equivalent",
808
+ "hashbrown 0.17.1",
809
+ "serde",
810
+ "serde_core",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "indoc"
815
+ version = "2.0.7"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
818
+ dependencies = [
819
+ "rustversion",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "inferno"
824
+ version = "0.11.21"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
827
+ dependencies = [
828
+ "ahash",
829
+ "indexmap 2.14.0",
830
+ "is-terminal",
831
+ "itoa",
832
+ "log",
833
+ "num-format",
834
+ "once_cell",
835
+ "quick-xml 0.26.0",
836
+ "rgb",
837
+ "str_stack",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "is-terminal"
842
+ version = "0.4.17"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
845
+ dependencies = [
846
+ "hermit-abi",
847
+ "libc",
848
+ "windows-sys 0.61.2",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "is_terminal_polyfill"
853
+ version = "1.70.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
856
+
857
+ [[package]]
858
+ name = "itertools"
859
+ version = "0.10.5"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
862
+ dependencies = [
863
+ "either",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "itoa"
868
+ version = "1.0.18"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
871
+
872
+ [[package]]
873
+ name = "js-sys"
874
+ version = "0.3.99"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
877
+ dependencies = [
878
+ "cfg-if",
879
+ "futures-util",
880
+ "once_cell",
881
+ "wasm-bindgen",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "json-event-parser"
886
+ version = "0.2.3"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "574b0cd5e90ee2ba03a66d0611fc9a09c9a0c28b2ecc2dc8a181dd31a53ca5d7"
889
+
890
+ [[package]]
891
+ name = "lazy_static"
892
+ version = "1.5.0"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
895
+
896
+ [[package]]
897
+ name = "leb128fmt"
898
+ version = "0.1.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
901
+
902
+ [[package]]
903
+ name = "libc"
904
+ version = "0.2.186"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
907
+
908
+ [[package]]
909
+ name = "linux-raw-sys"
910
+ version = "0.12.1"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
913
+
914
+ [[package]]
915
+ name = "litemap"
916
+ version = "0.8.2"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
919
+
920
+ [[package]]
921
+ name = "lock_api"
922
+ version = "0.4.14"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
925
+ dependencies = [
926
+ "scopeguard",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "log"
931
+ version = "0.4.29"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
934
+
935
+ [[package]]
936
+ name = "matchers"
937
+ version = "0.2.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
940
+ dependencies = [
941
+ "regex-automata",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "memchr"
946
+ version = "2.8.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
949
+
950
+ [[package]]
951
+ name = "memmap2"
952
+ version = "0.9.10"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
955
+ dependencies = [
956
+ "libc",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "memoffset"
961
+ version = "0.9.1"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
964
+ dependencies = [
965
+ "autocfg",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "miniz_oxide"
970
+ version = "0.8.9"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
973
+ dependencies = [
974
+ "adler2",
975
+ "simd-adler32",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "nix"
980
+ version = "0.26.4"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
983
+ dependencies = [
984
+ "bitflags 1.3.2",
985
+ "cfg-if",
986
+ "libc",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "nu-ansi-term"
991
+ version = "0.50.3"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
994
+ dependencies = [
995
+ "windows-sys 0.61.2",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "num-format"
1000
+ version = "0.4.4"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
1003
+ dependencies = [
1004
+ "arrayvec",
1005
+ "itoa",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "num-traits"
1010
+ version = "0.2.19"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1013
+ dependencies = [
1014
+ "autocfg",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "object"
1019
+ version = "0.37.3"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1022
+ dependencies = [
1023
+ "memchr",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "once_cell"
1028
+ version = "1.21.4"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1031
+
1032
+ [[package]]
1033
+ name = "once_cell_polyfill"
1034
+ version = "1.70.2"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1037
+
1038
+ [[package]]
1039
+ name = "owl-dl-bench"
1040
+ version = "0.2.0"
1041
+ dependencies = [
1042
+ "anyhow",
1043
+ "clap",
1044
+ "horned-owl",
1045
+ "owl-dl-reasoner",
1046
+ "pprof",
1047
+ "serde",
1048
+ "serde_json",
1049
+ "tracing",
1050
+ "tracing-subscriber",
1051
+ "walkdir",
1052
+ "whelk",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "owl-dl-cli"
1057
+ version = "0.2.0"
1058
+ dependencies = [
1059
+ "anyhow",
1060
+ "clap",
1061
+ "horned-owl",
1062
+ "owl-dl-reasoner",
1063
+ "tracing",
1064
+ "tracing-subscriber",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "owl-dl-core"
1069
+ version = "0.2.0"
1070
+ dependencies = [
1071
+ "bitvec",
1072
+ "bumpalo",
1073
+ "hashbrown 0.15.5",
1074
+ "horned-owl",
1075
+ "proptest",
1076
+ "smallvec",
1077
+ "thiserror 2.0.18",
1078
+ "tracing",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "owl-dl-datatypes"
1083
+ version = "0.2.0"
1084
+ dependencies = [
1085
+ "owl-dl-core",
1086
+ "proptest",
1087
+ "thiserror 2.0.18",
1088
+ "tracing",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "owl-dl-py"
1093
+ version = "0.2.0"
1094
+ dependencies = [
1095
+ "horned-owl",
1096
+ "owl-dl-core",
1097
+ "owl-dl-reasoner",
1098
+ "pyo3",
1099
+ "thiserror 2.0.18",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "owl-dl-reasoner"
1104
+ version = "0.2.0"
1105
+ dependencies = [
1106
+ "dashmap",
1107
+ "horned-owl",
1108
+ "owl-dl-core",
1109
+ "owl-dl-datatypes",
1110
+ "owl-dl-saturation",
1111
+ "owl-dl-tableau",
1112
+ "proptest",
1113
+ "rayon",
1114
+ "thiserror 2.0.18",
1115
+ "tracing",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "owl-dl-saturation"
1120
+ version = "0.2.0"
1121
+ dependencies = [
1122
+ "dashmap",
1123
+ "fixedbitset",
1124
+ "hashbrown 0.15.5",
1125
+ "horned-owl",
1126
+ "owl-dl-core",
1127
+ "proptest",
1128
+ "rayon",
1129
+ "smallvec",
1130
+ "thiserror 2.0.18",
1131
+ "tracing",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "owl-dl-tableau"
1136
+ version = "0.2.0"
1137
+ dependencies = [
1138
+ "bitvec",
1139
+ "bumpalo",
1140
+ "hashbrown 0.15.5",
1141
+ "horned-owl",
1142
+ "owl-dl-core",
1143
+ "owl-dl-datatypes",
1144
+ "proptest",
1145
+ "smallvec",
1146
+ "thiserror 2.0.18",
1147
+ "tracing",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "oxilangtag"
1152
+ version = "0.1.5"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "23f3f87617a86af77fa3691e6350483e7154c2ead9f1261b75130e21ca0f8acb"
1155
+ dependencies = [
1156
+ "serde",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "oxiri"
1161
+ version = "0.2.11"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
1164
+
1165
+ [[package]]
1166
+ name = "oxjsonld"
1167
+ version = "0.2.5"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "f6e1380a504a8571763f13b8bcad629ff90d0300d47d8a519f3c6c599625840e"
1170
+ dependencies = [
1171
+ "json-event-parser",
1172
+ "oxiri",
1173
+ "oxrdf",
1174
+ "ryu-js",
1175
+ "thiserror 2.0.18",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "oxrdf"
1180
+ version = "0.3.3"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "0afd5c28e4a399c57ee2bc3accd40c7b671fdc7b6537499f14e95b265af7d7e0"
1183
+ dependencies = [
1184
+ "oxilangtag",
1185
+ "oxiri",
1186
+ "rand",
1187
+ "thiserror 2.0.18",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "oxrdfio"
1192
+ version = "0.2.5"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "696223589ecbcab06b1a5df9b527dc25b0c656160cca38752fdb3878a5d3dd03"
1195
+ dependencies = [
1196
+ "oxjsonld",
1197
+ "oxrdf",
1198
+ "oxrdfxml",
1199
+ "oxttl",
1200
+ "thiserror 2.0.18",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "oxrdfxml"
1205
+ version = "0.2.3"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "cd5516ae083d09bc57ec65ed5ee97701481725de6ffaa83d968ab42a96157ba1"
1208
+ dependencies = [
1209
+ "oxilangtag",
1210
+ "oxiri",
1211
+ "oxrdf",
1212
+ "quick-xml 0.37.5",
1213
+ "thiserror 2.0.18",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "oxttl"
1218
+ version = "0.2.3"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "f03fd471bd54c23d76631c0a2677aa4bb308d905f6e491ee35dcb0732b7c5c6c"
1221
+ dependencies = [
1222
+ "memchr",
1223
+ "oxilangtag",
1224
+ "oxiri",
1225
+ "oxrdf",
1226
+ "thiserror 2.0.18",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "parking_lot_core"
1231
+ version = "0.9.12"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1234
+ dependencies = [
1235
+ "cfg-if",
1236
+ "libc",
1237
+ "redox_syscall",
1238
+ "smallvec",
1239
+ "windows-link",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "percent-encoding"
1244
+ version = "2.3.2"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1247
+
1248
+ [[package]]
1249
+ name = "pest"
1250
+ version = "2.8.6"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
1253
+ dependencies = [
1254
+ "memchr",
1255
+ "ucd-trie",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "pest_derive"
1260
+ version = "2.8.6"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
1263
+ dependencies = [
1264
+ "pest",
1265
+ "pest_generator",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "pest_generator"
1270
+ version = "2.8.6"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
1273
+ dependencies = [
1274
+ "pest",
1275
+ "pest_meta",
1276
+ "proc-macro2",
1277
+ "quote",
1278
+ "syn",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "pest_meta"
1283
+ version = "2.8.6"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1286
+ dependencies = [
1287
+ "pest",
1288
+ "sha2",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "pin-project-lite"
1293
+ version = "0.2.17"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1296
+
1297
+ [[package]]
1298
+ name = "portable-atomic"
1299
+ version = "1.13.1"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1302
+
1303
+ [[package]]
1304
+ name = "potential_utf"
1305
+ version = "0.1.5"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1308
+ dependencies = [
1309
+ "zerovec",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "pprof"
1314
+ version = "0.14.1"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "afad4d4df7b31280028245f152d5a575083e2abb822d05736f5e47653e77689f"
1317
+ dependencies = [
1318
+ "aligned-vec",
1319
+ "backtrace",
1320
+ "cfg-if",
1321
+ "findshlibs",
1322
+ "inferno",
1323
+ "libc",
1324
+ "log",
1325
+ "nix",
1326
+ "once_cell",
1327
+ "smallvec",
1328
+ "spin",
1329
+ "symbolic-demangle",
1330
+ "tempfile",
1331
+ "thiserror 1.0.69",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "ppv-lite86"
1336
+ version = "0.2.21"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1339
+ dependencies = [
1340
+ "zerocopy",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "pretty_rdf"
1345
+ version = "0.11.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "2ef451f785c5b7a8f2bc55ebdc88864156bb39afcd67a9c6af35d71c87043505"
1348
+ dependencies = [
1349
+ "indexmap 1.9.3",
1350
+ "oxrdf",
1351
+ "oxrdfio",
1352
+ "quick-xml 0.31.0",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "prettyplease"
1357
+ version = "0.2.37"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1360
+ dependencies = [
1361
+ "proc-macro2",
1362
+ "syn",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "proc-macro2"
1367
+ version = "1.0.106"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1370
+ dependencies = [
1371
+ "unicode-ident",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "proptest"
1376
+ version = "1.11.0"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1379
+ dependencies = [
1380
+ "bit-set",
1381
+ "bit-vec",
1382
+ "bitflags 2.11.1",
1383
+ "num-traits",
1384
+ "rand",
1385
+ "rand_chacha",
1386
+ "rand_xorshift",
1387
+ "regex-syntax",
1388
+ "rusty-fork",
1389
+ "tempfile",
1390
+ "unarray",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "pyo3"
1395
+ version = "0.22.6"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1398
+ dependencies = [
1399
+ "cfg-if",
1400
+ "indoc",
1401
+ "libc",
1402
+ "memoffset",
1403
+ "once_cell",
1404
+ "portable-atomic",
1405
+ "pyo3-build-config",
1406
+ "pyo3-ffi",
1407
+ "pyo3-macros",
1408
+ "unindent",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "pyo3-build-config"
1413
+ version = "0.22.6"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1416
+ dependencies = [
1417
+ "once_cell",
1418
+ "target-lexicon",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "pyo3-ffi"
1423
+ version = "0.22.6"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1426
+ dependencies = [
1427
+ "libc",
1428
+ "pyo3-build-config",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "pyo3-macros"
1433
+ version = "0.22.6"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1436
+ dependencies = [
1437
+ "proc-macro2",
1438
+ "pyo3-macros-backend",
1439
+ "quote",
1440
+ "syn",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "pyo3-macros-backend"
1445
+ version = "0.22.6"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1448
+ dependencies = [
1449
+ "heck",
1450
+ "proc-macro2",
1451
+ "pyo3-build-config",
1452
+ "quote",
1453
+ "syn",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "quick-error"
1458
+ version = "1.2.3"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1461
+
1462
+ [[package]]
1463
+ name = "quick-xml"
1464
+ version = "0.26.0"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
1467
+ dependencies = [
1468
+ "memchr",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "quick-xml"
1473
+ version = "0.31.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
1476
+ dependencies = [
1477
+ "memchr",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "quick-xml"
1482
+ version = "0.37.5"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1485
+ dependencies = [
1486
+ "memchr",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "quote"
1491
+ version = "1.0.45"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1494
+ dependencies = [
1495
+ "proc-macro2",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "r-efi"
1500
+ version = "5.3.0"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1503
+
1504
+ [[package]]
1505
+ name = "r-efi"
1506
+ version = "6.0.0"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1509
+
1510
+ [[package]]
1511
+ name = "radium"
1512
+ version = "0.7.0"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1515
+
1516
+ [[package]]
1517
+ name = "rand"
1518
+ version = "0.9.4"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1521
+ dependencies = [
1522
+ "rand_chacha",
1523
+ "rand_core 0.9.5",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "rand_chacha"
1528
+ version = "0.9.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1531
+ dependencies = [
1532
+ "ppv-lite86",
1533
+ "rand_core 0.9.5",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "rand_core"
1538
+ version = "0.6.4"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1541
+
1542
+ [[package]]
1543
+ name = "rand_core"
1544
+ version = "0.9.5"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1547
+ dependencies = [
1548
+ "getrandom 0.3.4",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "rand_xorshift"
1553
+ version = "0.4.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1556
+ dependencies = [
1557
+ "rand_core 0.9.5",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "rand_xoshiro"
1562
+ version = "0.6.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
1565
+ dependencies = [
1566
+ "rand_core 0.6.4",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "rayon"
1571
+ version = "1.12.0"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1574
+ dependencies = [
1575
+ "either",
1576
+ "rayon-core",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "rayon-core"
1581
+ version = "1.13.0"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1584
+ dependencies = [
1585
+ "crossbeam-deque",
1586
+ "crossbeam-utils",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "redox_syscall"
1591
+ version = "0.5.18"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1594
+ dependencies = [
1595
+ "bitflags 2.11.1",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "regex"
1600
+ version = "1.12.3"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1603
+ dependencies = [
1604
+ "aho-corasick",
1605
+ "memchr",
1606
+ "regex-automata",
1607
+ "regex-syntax",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "regex-automata"
1612
+ version = "0.4.14"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1615
+ dependencies = [
1616
+ "aho-corasick",
1617
+ "memchr",
1618
+ "regex-syntax",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "regex-syntax"
1623
+ version = "0.8.10"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1626
+
1627
+ [[package]]
1628
+ name = "rgb"
1629
+ version = "0.8.53"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
1632
+ dependencies = [
1633
+ "bytemuck",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "ring"
1638
+ version = "0.17.14"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1641
+ dependencies = [
1642
+ "cc",
1643
+ "cfg-if",
1644
+ "getrandom 0.2.17",
1645
+ "libc",
1646
+ "untrusted",
1647
+ "windows-sys 0.52.0",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "rustc-demangle"
1652
+ version = "0.1.27"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
1655
+
1656
+ [[package]]
1657
+ name = "rustc-hash"
1658
+ version = "2.1.2"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1661
+
1662
+ [[package]]
1663
+ name = "rustix"
1664
+ version = "1.1.4"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1667
+ dependencies = [
1668
+ "bitflags 2.11.1",
1669
+ "errno",
1670
+ "libc",
1671
+ "linux-raw-sys",
1672
+ "windows-sys 0.61.2",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "rustls"
1677
+ version = "0.23.40"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1680
+ dependencies = [
1681
+ "log",
1682
+ "once_cell",
1683
+ "ring",
1684
+ "rustls-pki-types",
1685
+ "rustls-webpki",
1686
+ "subtle",
1687
+ "zeroize",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "rustls-pki-types"
1692
+ version = "1.14.1"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1695
+ dependencies = [
1696
+ "zeroize",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "rustls-webpki"
1701
+ version = "0.103.13"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1704
+ dependencies = [
1705
+ "ring",
1706
+ "rustls-pki-types",
1707
+ "untrusted",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "rustversion"
1712
+ version = "1.0.22"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1715
+
1716
+ [[package]]
1717
+ name = "rusty-fork"
1718
+ version = "0.3.1"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1721
+ dependencies = [
1722
+ "fnv",
1723
+ "quick-error",
1724
+ "tempfile",
1725
+ "wait-timeout",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "ryu-js"
1730
+ version = "1.0.2"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "dd29631678d6fb0903b69223673e122c32e9ae559d0960a38d574695ebc0ea15"
1733
+
1734
+ [[package]]
1735
+ name = "same-file"
1736
+ version = "1.0.6"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1739
+ dependencies = [
1740
+ "winapi-util",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "scopeguard"
1745
+ version = "1.2.0"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1748
+
1749
+ [[package]]
1750
+ name = "semver"
1751
+ version = "1.0.28"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1754
+
1755
+ [[package]]
1756
+ name = "serde"
1757
+ version = "1.0.228"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1760
+ dependencies = [
1761
+ "serde_core",
1762
+ "serde_derive",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "serde_core"
1767
+ version = "1.0.228"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1770
+ dependencies = [
1771
+ "serde_derive",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "serde_derive"
1776
+ version = "1.0.228"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1779
+ dependencies = [
1780
+ "proc-macro2",
1781
+ "quote",
1782
+ "syn",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "serde_json"
1787
+ version = "1.0.149"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1790
+ dependencies = [
1791
+ "itoa",
1792
+ "memchr",
1793
+ "serde",
1794
+ "serde_core",
1795
+ "zmij",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "sha2"
1800
+ version = "0.10.9"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1803
+ dependencies = [
1804
+ "cfg-if",
1805
+ "cpufeatures",
1806
+ "digest",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "sharded-slab"
1811
+ version = "0.1.7"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1814
+ dependencies = [
1815
+ "lazy_static",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "shlex"
1820
+ version = "1.3.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1823
+
1824
+ [[package]]
1825
+ name = "simd-adler32"
1826
+ version = "0.3.9"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1829
+
1830
+ [[package]]
1831
+ name = "sized-chunks"
1832
+ version = "0.6.5"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
1835
+ dependencies = [
1836
+ "bitmaps",
1837
+ "typenum",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "slab"
1842
+ version = "0.4.12"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1845
+
1846
+ [[package]]
1847
+ name = "smallvec"
1848
+ version = "1.15.1"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1851
+
1852
+ [[package]]
1853
+ name = "spin"
1854
+ version = "0.10.0"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
1857
+ dependencies = [
1858
+ "lock_api",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "stable_deref_trait"
1863
+ version = "1.2.1"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1866
+
1867
+ [[package]]
1868
+ name = "str_stack"
1869
+ version = "0.1.1"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "7f446288b699d66d0fd2e30d1cfe7869194312524b3b9252594868ed26ef056a"
1872
+
1873
+ [[package]]
1874
+ name = "strsim"
1875
+ version = "0.11.1"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1878
+
1879
+ [[package]]
1880
+ name = "subtle"
1881
+ version = "2.6.1"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1884
+
1885
+ [[package]]
1886
+ name = "symbolic-common"
1887
+ version = "12.18.3"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "332615d90111d8eeaf86a84dc9bbe9f65d0d8c5cf11b4caccedc37754eb0dcfd"
1890
+ dependencies = [
1891
+ "debugid",
1892
+ "memmap2",
1893
+ "stable_deref_trait",
1894
+ "uuid",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "symbolic-demangle"
1899
+ version = "12.18.3"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "912017718eb4d21930546245af9a3475c9dccf15675a5c215664e76621afc471"
1902
+ dependencies = [
1903
+ "cpp_demangle",
1904
+ "rustc-demangle",
1905
+ "symbolic-common",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "syn"
1910
+ version = "2.0.117"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1913
+ dependencies = [
1914
+ "proc-macro2",
1915
+ "quote",
1916
+ "unicode-ident",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "synstructure"
1921
+ version = "0.13.2"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1924
+ dependencies = [
1925
+ "proc-macro2",
1926
+ "quote",
1927
+ "syn",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "tap"
1932
+ version = "1.0.1"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1935
+
1936
+ [[package]]
1937
+ name = "target-lexicon"
1938
+ version = "0.12.16"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1941
+
1942
+ [[package]]
1943
+ name = "tempfile"
1944
+ version = "3.27.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1947
+ dependencies = [
1948
+ "fastrand",
1949
+ "getrandom 0.4.2",
1950
+ "once_cell",
1951
+ "rustix",
1952
+ "windows-sys 0.61.2",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "termcolor"
1957
+ version = "1.4.1"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1960
+ dependencies = [
1961
+ "winapi-util",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "thiserror"
1966
+ version = "1.0.69"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1969
+ dependencies = [
1970
+ "thiserror-impl 1.0.69",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "thiserror"
1975
+ version = "2.0.18"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1978
+ dependencies = [
1979
+ "thiserror-impl 2.0.18",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "thiserror-impl"
1984
+ version = "1.0.69"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1987
+ dependencies = [
1988
+ "proc-macro2",
1989
+ "quote",
1990
+ "syn",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "thiserror-impl"
1995
+ version = "2.0.18"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1998
+ dependencies = [
1999
+ "proc-macro2",
2000
+ "quote",
2001
+ "syn",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "thread_local"
2006
+ version = "1.1.9"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2009
+ dependencies = [
2010
+ "cfg-if",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "tinystr"
2015
+ version = "0.8.3"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2018
+ dependencies = [
2019
+ "displaydoc",
2020
+ "zerovec",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "tracing"
2025
+ version = "0.1.44"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2028
+ dependencies = [
2029
+ "pin-project-lite",
2030
+ "tracing-attributes",
2031
+ "tracing-core",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "tracing-attributes"
2036
+ version = "0.1.31"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2039
+ dependencies = [
2040
+ "proc-macro2",
2041
+ "quote",
2042
+ "syn",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "tracing-core"
2047
+ version = "0.1.36"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2050
+ dependencies = [
2051
+ "once_cell",
2052
+ "valuable",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "tracing-log"
2057
+ version = "0.2.0"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2060
+ dependencies = [
2061
+ "log",
2062
+ "once_cell",
2063
+ "tracing-core",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "tracing-subscriber"
2068
+ version = "0.3.23"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2071
+ dependencies = [
2072
+ "matchers",
2073
+ "nu-ansi-term",
2074
+ "once_cell",
2075
+ "regex-automata",
2076
+ "sharded-slab",
2077
+ "smallvec",
2078
+ "thread_local",
2079
+ "tracing",
2080
+ "tracing-core",
2081
+ "tracing-log",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "typenum"
2086
+ version = "1.20.0"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2089
+
2090
+ [[package]]
2091
+ name = "ucd-trie"
2092
+ version = "0.1.7"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2095
+
2096
+ [[package]]
2097
+ name = "unarray"
2098
+ version = "0.1.4"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2101
+
2102
+ [[package]]
2103
+ name = "unicode-ident"
2104
+ version = "1.0.24"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2107
+
2108
+ [[package]]
2109
+ name = "unicode-xid"
2110
+ version = "0.2.6"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2113
+
2114
+ [[package]]
2115
+ name = "unindent"
2116
+ version = "0.2.4"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2119
+
2120
+ [[package]]
2121
+ name = "untrusted"
2122
+ version = "0.9.0"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2125
+
2126
+ [[package]]
2127
+ name = "ureq"
2128
+ version = "2.12.1"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
2131
+ dependencies = [
2132
+ "base64",
2133
+ "flate2",
2134
+ "log",
2135
+ "once_cell",
2136
+ "rustls",
2137
+ "rustls-pki-types",
2138
+ "url",
2139
+ "webpki-roots 0.26.11",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "url"
2144
+ version = "2.5.8"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2147
+ dependencies = [
2148
+ "form_urlencoded",
2149
+ "idna",
2150
+ "percent-encoding",
2151
+ "serde",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "utf8_iter"
2156
+ version = "1.0.4"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2159
+
2160
+ [[package]]
2161
+ name = "utf8parse"
2162
+ version = "0.2.2"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2165
+
2166
+ [[package]]
2167
+ name = "uuid"
2168
+ version = "1.23.1"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
2171
+ dependencies = [
2172
+ "js-sys",
2173
+ "wasm-bindgen",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "valuable"
2178
+ version = "0.1.1"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2181
+
2182
+ [[package]]
2183
+ name = "version_check"
2184
+ version = "0.9.5"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2187
+
2188
+ [[package]]
2189
+ name = "wait-timeout"
2190
+ version = "0.2.1"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2193
+ dependencies = [
2194
+ "libc",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "walkdir"
2199
+ version = "2.5.0"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2202
+ dependencies = [
2203
+ "same-file",
2204
+ "winapi-util",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "wasi"
2209
+ version = "0.11.1+wasi-snapshot-preview1"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2212
+
2213
+ [[package]]
2214
+ name = "wasip2"
2215
+ version = "1.0.3+wasi-0.2.9"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2218
+ dependencies = [
2219
+ "wit-bindgen 0.57.1",
2220
+ ]
2221
+
2222
+ [[package]]
2223
+ name = "wasip3"
2224
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2227
+ dependencies = [
2228
+ "wit-bindgen 0.51.0",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "wasm-bindgen"
2233
+ version = "0.2.122"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
2236
+ dependencies = [
2237
+ "cfg-if",
2238
+ "once_cell",
2239
+ "rustversion",
2240
+ "wasm-bindgen-macro",
2241
+ "wasm-bindgen-shared",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "wasm-bindgen-macro"
2246
+ version = "0.2.122"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
2249
+ dependencies = [
2250
+ "quote",
2251
+ "wasm-bindgen-macro-support",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "wasm-bindgen-macro-support"
2256
+ version = "0.2.122"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
2259
+ dependencies = [
2260
+ "bumpalo",
2261
+ "proc-macro2",
2262
+ "quote",
2263
+ "syn",
2264
+ "wasm-bindgen-shared",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "wasm-bindgen-shared"
2269
+ version = "0.2.122"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
2272
+ dependencies = [
2273
+ "unicode-ident",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "wasm-encoder"
2278
+ version = "0.244.0"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2281
+ dependencies = [
2282
+ "leb128fmt",
2283
+ "wasmparser",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "wasm-metadata"
2288
+ version = "0.244.0"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2291
+ dependencies = [
2292
+ "anyhow",
2293
+ "indexmap 2.14.0",
2294
+ "wasm-encoder",
2295
+ "wasmparser",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "wasmparser"
2300
+ version = "0.244.0"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2303
+ dependencies = [
2304
+ "bitflags 2.11.1",
2305
+ "hashbrown 0.15.5",
2306
+ "indexmap 2.14.0",
2307
+ "semver",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "webpki-roots"
2312
+ version = "0.26.11"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
2315
+ dependencies = [
2316
+ "webpki-roots 1.0.7",
2317
+ ]
2318
+
2319
+ [[package]]
2320
+ name = "webpki-roots"
2321
+ version = "1.0.7"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
2324
+ dependencies = [
2325
+ "rustls-pki-types",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "whelk"
2330
+ version = "0.1.0"
2331
+ source = "git+https://github.com/INCATools/whelk-rs#701710d58b6039794bc5a4348880d813eecf2bbb"
2332
+ dependencies = [
2333
+ "clap",
2334
+ "env_logger",
2335
+ "horned-owl",
2336
+ "humantime",
2337
+ "im",
2338
+ "itertools",
2339
+ "log",
2340
+ "rustc-hash",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "winapi"
2345
+ version = "0.3.9"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2348
+ dependencies = [
2349
+ "winapi-i686-pc-windows-gnu",
2350
+ "winapi-x86_64-pc-windows-gnu",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "winapi-i686-pc-windows-gnu"
2355
+ version = "0.4.0"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2358
+
2359
+ [[package]]
2360
+ name = "winapi-util"
2361
+ version = "0.1.11"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2364
+ dependencies = [
2365
+ "windows-sys 0.61.2",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "winapi-x86_64-pc-windows-gnu"
2370
+ version = "0.4.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2373
+
2374
+ [[package]]
2375
+ name = "windows-link"
2376
+ version = "0.2.1"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2379
+
2380
+ [[package]]
2381
+ name = "windows-sys"
2382
+ version = "0.52.0"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2385
+ dependencies = [
2386
+ "windows-targets",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "windows-sys"
2391
+ version = "0.61.2"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2394
+ dependencies = [
2395
+ "windows-link",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "windows-targets"
2400
+ version = "0.52.6"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2403
+ dependencies = [
2404
+ "windows_aarch64_gnullvm",
2405
+ "windows_aarch64_msvc",
2406
+ "windows_i686_gnu",
2407
+ "windows_i686_gnullvm",
2408
+ "windows_i686_msvc",
2409
+ "windows_x86_64_gnu",
2410
+ "windows_x86_64_gnullvm",
2411
+ "windows_x86_64_msvc",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "windows_aarch64_gnullvm"
2416
+ version = "0.52.6"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2419
+
2420
+ [[package]]
2421
+ name = "windows_aarch64_msvc"
2422
+ version = "0.52.6"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2425
+
2426
+ [[package]]
2427
+ name = "windows_i686_gnu"
2428
+ version = "0.52.6"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2431
+
2432
+ [[package]]
2433
+ name = "windows_i686_gnullvm"
2434
+ version = "0.52.6"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2437
+
2438
+ [[package]]
2439
+ name = "windows_i686_msvc"
2440
+ version = "0.52.6"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2443
+
2444
+ [[package]]
2445
+ name = "windows_x86_64_gnu"
2446
+ version = "0.52.6"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2449
+
2450
+ [[package]]
2451
+ name = "windows_x86_64_gnullvm"
2452
+ version = "0.52.6"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2455
+
2456
+ [[package]]
2457
+ name = "windows_x86_64_msvc"
2458
+ version = "0.52.6"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2461
+
2462
+ [[package]]
2463
+ name = "wit-bindgen"
2464
+ version = "0.51.0"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2467
+ dependencies = [
2468
+ "wit-bindgen-rust-macro",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "wit-bindgen"
2473
+ version = "0.57.1"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2476
+
2477
+ [[package]]
2478
+ name = "wit-bindgen-core"
2479
+ version = "0.51.0"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2482
+ dependencies = [
2483
+ "anyhow",
2484
+ "heck",
2485
+ "wit-parser",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "wit-bindgen-rust"
2490
+ version = "0.51.0"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2493
+ dependencies = [
2494
+ "anyhow",
2495
+ "heck",
2496
+ "indexmap 2.14.0",
2497
+ "prettyplease",
2498
+ "syn",
2499
+ "wasm-metadata",
2500
+ "wit-bindgen-core",
2501
+ "wit-component",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "wit-bindgen-rust-macro"
2506
+ version = "0.51.0"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2509
+ dependencies = [
2510
+ "anyhow",
2511
+ "prettyplease",
2512
+ "proc-macro2",
2513
+ "quote",
2514
+ "syn",
2515
+ "wit-bindgen-core",
2516
+ "wit-bindgen-rust",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "wit-component"
2521
+ version = "0.244.0"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2524
+ dependencies = [
2525
+ "anyhow",
2526
+ "bitflags 2.11.1",
2527
+ "indexmap 2.14.0",
2528
+ "log",
2529
+ "serde",
2530
+ "serde_derive",
2531
+ "serde_json",
2532
+ "wasm-encoder",
2533
+ "wasm-metadata",
2534
+ "wasmparser",
2535
+ "wit-parser",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "wit-parser"
2540
+ version = "0.244.0"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2543
+ dependencies = [
2544
+ "anyhow",
2545
+ "id-arena",
2546
+ "indexmap 2.14.0",
2547
+ "log",
2548
+ "semver",
2549
+ "serde",
2550
+ "serde_derive",
2551
+ "serde_json",
2552
+ "unicode-xid",
2553
+ "wasmparser",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "writeable"
2558
+ version = "0.6.3"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2561
+
2562
+ [[package]]
2563
+ name = "wyz"
2564
+ version = "0.5.1"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2567
+ dependencies = [
2568
+ "tap",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "xtask"
2573
+ version = "0.2.0"
2574
+ dependencies = [
2575
+ "anyhow",
2576
+ "clap",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "yoke"
2581
+ version = "0.8.2"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2584
+ dependencies = [
2585
+ "stable_deref_trait",
2586
+ "yoke-derive",
2587
+ "zerofrom",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "yoke-derive"
2592
+ version = "0.8.2"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2595
+ dependencies = [
2596
+ "proc-macro2",
2597
+ "quote",
2598
+ "syn",
2599
+ "synstructure",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "zerocopy"
2604
+ version = "0.8.48"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2607
+ dependencies = [
2608
+ "zerocopy-derive",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "zerocopy-derive"
2613
+ version = "0.8.48"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2616
+ dependencies = [
2617
+ "proc-macro2",
2618
+ "quote",
2619
+ "syn",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "zerofrom"
2624
+ version = "0.1.8"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2627
+ dependencies = [
2628
+ "zerofrom-derive",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "zerofrom-derive"
2633
+ version = "0.1.7"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2636
+ dependencies = [
2637
+ "proc-macro2",
2638
+ "quote",
2639
+ "syn",
2640
+ "synstructure",
2641
+ ]
2642
+
2643
+ [[package]]
2644
+ name = "zeroize"
2645
+ version = "1.8.2"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2648
+
2649
+ [[package]]
2650
+ name = "zerotrie"
2651
+ version = "0.2.4"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2654
+ dependencies = [
2655
+ "displaydoc",
2656
+ "yoke",
2657
+ "zerofrom",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "zerovec"
2662
+ version = "0.11.6"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2665
+ dependencies = [
2666
+ "yoke",
2667
+ "zerofrom",
2668
+ "zerovec-derive",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "zerovec-derive"
2673
+ version = "0.11.3"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2676
+ dependencies = [
2677
+ "proc-macro2",
2678
+ "quote",
2679
+ "syn",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "zmij"
2684
+ version = "1.0.21"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"