openmobisim 0.1.0a1__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 (140) hide show
  1. openmobisim-0.1.0a1/Cargo.lock +1549 -0
  2. openmobisim-0.1.0a1/Cargo.toml +77 -0
  3. openmobisim-0.1.0a1/LICENSE +201 -0
  4. openmobisim-0.1.0a1/PKG-INFO +43 -0
  5. openmobisim-0.1.0a1/README.md +10 -0
  6. openmobisim-0.1.0a1/crates/core-choice/Cargo.toml +17 -0
  7. openmobisim-0.1.0a1/crates/core-choice/src/batch.rs +260 -0
  8. openmobisim-0.1.0a1/crates/core-choice/src/builtin.rs +222 -0
  9. openmobisim-0.1.0a1/crates/core-choice/src/lib.rs +35 -0
  10. openmobisim-0.1.0a1/crates/core-choice/src/model.rs +348 -0
  11. openmobisim-0.1.0a1/crates/core-choice/tests/choice.rs +388 -0
  12. openmobisim-0.1.0a1/crates/core-demand/Cargo.toml +42 -0
  13. openmobisim-0.1.0a1/crates/core-demand/src/columns.rs +160 -0
  14. openmobisim-0.1.0a1/crates/core-demand/src/lib.rs +98 -0
  15. openmobisim-0.1.0a1/crates/core-demand/src/persons.rs +57 -0
  16. openmobisim-0.1.0a1/crates/core-demand/src/travellers.rs +438 -0
  17. openmobisim-0.1.0a1/crates/core-demand/src/trips.rs +83 -0
  18. openmobisim-0.1.0a1/crates/core-demand/src/vehicles.rs +113 -0
  19. openmobisim-0.1.0a1/crates/core-demand/tests/demand.rs +360 -0
  20. openmobisim-0.1.0a1/crates/core-graph/Cargo.toml +20 -0
  21. openmobisim-0.1.0a1/crates/core-graph/src/connectivity.rs +395 -0
  22. openmobisim-0.1.0a1/crates/core-graph/src/csr.rs +197 -0
  23. openmobisim-0.1.0a1/crates/core-graph/src/defaults.rs +572 -0
  24. openmobisim-0.1.0a1/crates/core-graph/src/examples.rs +216 -0
  25. openmobisim-0.1.0a1/crates/core-graph/src/geometry.rs +543 -0
  26. openmobisim-0.1.0a1/crates/core-graph/src/lib.rs +46 -0
  27. openmobisim-0.1.0a1/crates/core-graph/src/link_geometry.rs +269 -0
  28. openmobisim-0.1.0a1/crates/core-graph/src/network.rs +550 -0
  29. openmobisim-0.1.0a1/crates/core-graph/src/turns.rs +233 -0
  30. openmobisim-0.1.0a1/crates/core-graph/tests/common/mod.rs +40 -0
  31. openmobisim-0.1.0a1/crates/core-graph/tests/connectivity.rs +342 -0
  32. openmobisim-0.1.0a1/crates/core-graph/tests/defaults.rs +302 -0
  33. openmobisim-0.1.0a1/crates/core-graph/tests/examples.rs +48 -0
  34. openmobisim-0.1.0a1/crates/core-graph/tests/geometry.rs +313 -0
  35. openmobisim-0.1.0a1/crates/core-graph/tests/layout.rs +36 -0
  36. openmobisim-0.1.0a1/crates/core-graph/tests/network.rs +241 -0
  37. openmobisim-0.1.0a1/crates/core-graph/tests/perf.rs +119 -0
  38. openmobisim-0.1.0a1/crates/core-graph/tests/toy_network.rs +64 -0
  39. openmobisim-0.1.0a1/crates/core-graph/tests/turns.rs +196 -0
  40. openmobisim-0.1.0a1/crates/core-loading/Cargo.toml +23 -0
  41. openmobisim-0.1.0a1/crates/core-loading/examples/extract_benchmark.rs +215 -0
  42. openmobisim-0.1.0a1/crates/core-loading/examples/n3_ltm_benchmark.rs +116 -0
  43. openmobisim-0.1.0a1/crates/core-loading/src/curves.rs +242 -0
  44. openmobisim-0.1.0a1/crates/core-loading/src/level0.rs +216 -0
  45. openmobisim-0.1.0a1/crates/core-loading/src/lib.rs +39 -0
  46. openmobisim-0.1.0a1/crates/core-loading/src/link_bins.rs +370 -0
  47. openmobisim-0.1.0a1/crates/core-loading/src/ltm.rs +1455 -0
  48. openmobisim-0.1.0a1/crates/core-loading/src/node_model.rs +193 -0
  49. openmobisim-0.1.0a1/crates/core-loading/src/vehicle.rs +49 -0
  50. openmobisim-0.1.0a1/crates/core-loading/tests/level0.rs +146 -0
  51. openmobisim-0.1.0a1/crates/core-loading/tests/link_bins.rs +337 -0
  52. openmobisim-0.1.0a1/crates/core-loading/tests/ltm_invariants.rs +925 -0
  53. openmobisim-0.1.0a1/crates/core-loading/tests/perf.rs +68 -0
  54. openmobisim-0.1.0a1/crates/core-loading/tests/toy_network.rs +513 -0
  55. openmobisim-0.1.0a1/crates/core-routes/Cargo.toml +25 -0
  56. openmobisim-0.1.0a1/crates/core-routes/src/attributes.rs +72 -0
  57. openmobisim-0.1.0a1/crates/core-routes/src/generate.rs +374 -0
  58. openmobisim-0.1.0a1/crates/core-routes/src/lib.rs +35 -0
  59. openmobisim-0.1.0a1/crates/core-routes/src/search.rs +400 -0
  60. openmobisim-0.1.0a1/crates/core-routes/src/snap.rs +207 -0
  61. openmobisim-0.1.0a1/crates/core-routes/src/store.rs +339 -0
  62. openmobisim-0.1.0a1/crates/core-routes/tests/routes.rs +589 -0
  63. openmobisim-0.1.0a1/crates/core-sim/Cargo.toml +25 -0
  64. openmobisim-0.1.0a1/crates/core-sim/src/equilibration.rs +496 -0
  65. openmobisim-0.1.0a1/crates/core-sim/src/events.rs +61 -0
  66. openmobisim-0.1.0a1/crates/core-sim/src/identity.rs +221 -0
  67. openmobisim-0.1.0a1/crates/core-sim/src/lib.rs +44 -0
  68. openmobisim-0.1.0a1/crates/core-sim/src/link_times.rs +204 -0
  69. openmobisim-0.1.0a1/crates/core-sim/src/route_choice.rs +513 -0
  70. openmobisim-0.1.0a1/crates/core-sim/src/run.rs +801 -0
  71. openmobisim-0.1.0a1/crates/core-sim/tests/equilibration.rs +711 -0
  72. openmobisim-0.1.0a1/crates/core-sim/tests/ltm.rs +279 -0
  73. openmobisim-0.1.0a1/crates/core-sim/tests/run.rs +760 -0
  74. openmobisim-0.1.0a1/crates/core-types/Cargo.toml +31 -0
  75. openmobisim-0.1.0a1/crates/core-types/examples/determinism_probe.rs +123 -0
  76. openmobisim-0.1.0a1/crates/core-types/src/diagnostics.rs +382 -0
  77. openmobisim-0.1.0a1/crates/core-types/src/hash.rs +134 -0
  78. openmobisim-0.1.0a1/crates/core-types/src/ids.rs +537 -0
  79. openmobisim-0.1.0a1/crates/core-types/src/lib.rs +86 -0
  80. openmobisim-0.1.0a1/crates/core-types/src/reduce.rs +200 -0
  81. openmobisim-0.1.0a1/crates/core-types/src/registry.rs +234 -0
  82. openmobisim-0.1.0a1/crates/core-types/src/rng.rs +557 -0
  83. openmobisim-0.1.0a1/crates/core-types/src/time.rs +487 -0
  84. openmobisim-0.1.0a1/crates/core-types/src/units.rs +459 -0
  85. openmobisim-0.1.0a1/crates/core-types/tests/determinism.rs +121 -0
  86. openmobisim-0.1.0a1/crates/core-types/tests/diagnostics.rs +140 -0
  87. openmobisim-0.1.0a1/crates/core-types/tests/ids.rs +142 -0
  88. openmobisim-0.1.0a1/crates/core-types/tests/layout.rs +84 -0
  89. openmobisim-0.1.0a1/crates/core-types/tests/perf.rs +174 -0
  90. openmobisim-0.1.0a1/crates/core-types/tests/registry.rs +106 -0
  91. openmobisim-0.1.0a1/crates/core-types/tests/rng.rs +232 -0
  92. openmobisim-0.1.0a1/crates/core-types/tests/time.rs +154 -0
  93. openmobisim-0.1.0a1/crates/io-osm/Cargo.toml +32 -0
  94. openmobisim-0.1.0a1/crates/io-osm/src/import.rs +843 -0
  95. openmobisim-0.1.0a1/crates/io-osm/src/lib.rs +46 -0
  96. openmobisim-0.1.0a1/crates/io-osm/src/pbf.rs +133 -0
  97. openmobisim-0.1.0a1/crates/io-osm/src/region.rs +226 -0
  98. openmobisim-0.1.0a1/crates/io-osm/src/source.rs +265 -0
  99. openmobisim-0.1.0a1/crates/io-osm/src/tags.rs +305 -0
  100. openmobisim-0.1.0a1/crates/io-osm/tests/connectivity.rs +581 -0
  101. openmobisim-0.1.0a1/crates/io-osm/tests/geometry.rs +157 -0
  102. openmobisim-0.1.0a1/crates/io-osm/tests/import.rs +460 -0
  103. openmobisim-0.1.0a1/crates/io-osm/tests/pbf.rs +165 -0
  104. openmobisim-0.1.0a1/crates/io-osm/tests/perf.rs +165 -0
  105. openmobisim-0.1.0a1/crates/io-osm/tests/tags.rs +208 -0
  106. openmobisim-0.1.0a1/crates/io-parquet/Cargo.toml +39 -0
  107. openmobisim-0.1.0a1/crates/io-parquet/build.rs +8 -0
  108. openmobisim-0.1.0a1/crates/io-parquet/examples/kpis_determinism_probe.rs +254 -0
  109. openmobisim-0.1.0a1/crates/io-parquet/src/diagnostics.rs +77 -0
  110. openmobisim-0.1.0a1/crates/io-parquet/src/events.rs +85 -0
  111. openmobisim-0.1.0a1/crates/io-parquet/src/io.rs +48 -0
  112. openmobisim-0.1.0a1/crates/io-parquet/src/kpis.rs +136 -0
  113. openmobisim-0.1.0a1/crates/io-parquet/src/lib.rs +107 -0
  114. openmobisim-0.1.0a1/crates/io-parquet/src/link_bins.rs +106 -0
  115. openmobisim-0.1.0a1/crates/io-parquet/src/manifest.rs +211 -0
  116. openmobisim-0.1.0a1/crates/io-parquet/tests/writers.rs +417 -0
  117. openmobisim-0.1.0a1/crates/py-bindings/Cargo.toml +40 -0
  118. openmobisim-0.1.0a1/crates/py-bindings/build.rs +9 -0
  119. openmobisim-0.1.0a1/crates/py-bindings/src/choice.rs +391 -0
  120. openmobisim-0.1.0a1/crates/py-bindings/src/lib.rs +165 -0
  121. openmobisim-0.1.0a1/crates/py-bindings/src/network.rs +531 -0
  122. openmobisim-0.1.0a1/crates/py-bindings/src/pipeline.rs +455 -0
  123. openmobisim-0.1.0a1/crates/py-bindings/src/routes.rs +222 -0
  124. openmobisim-0.1.0a1/pyproject.toml +78 -0
  125. openmobisim-0.1.0a1/python/openmobisim/__init__.py +52 -0
  126. openmobisim-0.1.0a1/python/openmobisim/_core.pyi +596 -0
  127. openmobisim-0.1.0a1/python/openmobisim/choice.py +151 -0
  128. openmobisim-0.1.0a1/python/openmobisim/examples.py +177 -0
  129. openmobisim-0.1.0a1/python/openmobisim/py.typed +0 -0
  130. openmobisim-0.1.0a1/python/openmobisim/scenario.py +546 -0
  131. openmobisim-0.1.0a1/python/openmobisim/viz/__init__.py +24 -0
  132. openmobisim-0.1.0a1/python/openmobisim/viz/_demand.py +349 -0
  133. openmobisim-0.1.0a1/python/openmobisim/viz/_figure.py +375 -0
  134. openmobisim-0.1.0a1/python/openmobisim/viz/_geometry.py +124 -0
  135. openmobisim-0.1.0a1/python/openmobisim/viz/_interactive.py +302 -0
  136. openmobisim-0.1.0a1/python/openmobisim/viz/_interactive_page.py +581 -0
  137. openmobisim-0.1.0a1/python/openmobisim/viz/_link.py +332 -0
  138. openmobisim-0.1.0a1/python/openmobisim/viz/_provenance.py +27 -0
  139. openmobisim-0.1.0a1/python/openmobisim/viz/_route.py +239 -0
  140. openmobisim-0.1.0a1/python/openmobisim/viz/_style.py +144 -0
@@ -0,0 +1,1549 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.5"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloc-no-stdlib"
36
+ version = "2.0.4"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
39
+
40
+ [[package]]
41
+ name = "alloc-stdlib"
42
+ version = "0.2.4"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "android_system_properties"
51
+ version = "0.1.6"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
54
+ dependencies = [
55
+ "libc",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "anyhow"
60
+ version = "1.0.104"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
63
+
64
+ [[package]]
65
+ name = "arrow-array"
66
+ version = "59.3.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "1e5f6adeffdf587d7a31db5d2266189624b526730cd3627f9ff9fedae97ad584"
69
+ dependencies = [
70
+ "ahash",
71
+ "arrow-buffer",
72
+ "arrow-data",
73
+ "arrow-schema",
74
+ "chrono",
75
+ "half",
76
+ "hashbrown",
77
+ "num-complex",
78
+ "num-integer",
79
+ "num-traits",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "arrow-buffer"
84
+ version = "59.3.0"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "097d193003ce7995d5d087089069ec2a6e0187faf5a6f8c9f38af2645d987182"
87
+ dependencies = [
88
+ "bytes",
89
+ "half",
90
+ "num-bigint",
91
+ "num-traits",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "arrow-data"
96
+ version = "59.3.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "9ba2f832eaeca24b8f26143dba750e42ee4ab51cf7d65e701ca9607cfda9f358"
99
+ dependencies = [
100
+ "arrow-buffer",
101
+ "arrow-schema",
102
+ "half",
103
+ "num-integer",
104
+ "num-traits",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "arrow-ipc"
109
+ version = "59.3.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "dcc41681ea80f521df14c36725b74d4c60702c47f0793af2be469c04527e2599"
112
+ dependencies = [
113
+ "arrow-array",
114
+ "arrow-buffer",
115
+ "arrow-data",
116
+ "arrow-schema",
117
+ "arrow-select",
118
+ "flatbuffers",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "arrow-schema"
123
+ version = "59.3.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "10fab8d4563491417ba801fab29d205104d20d4bdf37bda6cd1cf425cff598cd"
126
+
127
+ [[package]]
128
+ name = "arrow-select"
129
+ version = "59.3.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "fc58569193c2525915f3cc6310edba3792f1200f65d6e9ed330aa33e691493b8"
132
+ dependencies = [
133
+ "ahash",
134
+ "arrow-array",
135
+ "arrow-buffer",
136
+ "arrow-data",
137
+ "arrow-schema",
138
+ "num-traits",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "autocfg"
143
+ version = "1.5.1"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
146
+
147
+ [[package]]
148
+ name = "base64"
149
+ version = "0.23.1"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
152
+
153
+ [[package]]
154
+ name = "bit-set"
155
+ version = "0.8.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
158
+ dependencies = [
159
+ "bit-vec",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "bit-vec"
164
+ version = "0.8.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
167
+
168
+ [[package]]
169
+ name = "bitflags"
170
+ version = "2.13.2"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
173
+
174
+ [[package]]
175
+ name = "brotli"
176
+ version = "8.0.4"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
179
+ dependencies = [
180
+ "alloc-no-stdlib",
181
+ "alloc-stdlib",
182
+ "brotli-decompressor",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "brotli-decompressor"
187
+ version = "5.0.3"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
190
+ dependencies = [
191
+ "alloc-no-stdlib",
192
+ "alloc-stdlib",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "bumpalo"
197
+ version = "3.20.3"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
200
+
201
+ [[package]]
202
+ name = "byteorder"
203
+ version = "1.5.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
206
+
207
+ [[package]]
208
+ name = "bytes"
209
+ version = "1.12.1"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
212
+
213
+ [[package]]
214
+ name = "cc"
215
+ version = "1.4.6"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "a3eb0f42d6c360dc3f8a821f6bf2fdea7f72bfd36b3076eb0e6d1e9e0752fff4"
218
+ dependencies = [
219
+ "find-msvc-tools",
220
+ "shlex",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "cfg-if"
225
+ version = "1.0.4"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
228
+
229
+ [[package]]
230
+ name = "chrono"
231
+ version = "0.4.45"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
234
+ dependencies = [
235
+ "iana-time-zone",
236
+ "num-traits",
237
+ "windows-link",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "const-random"
242
+ version = "0.1.18"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
245
+ dependencies = [
246
+ "const-random-macro",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "const-random-macro"
251
+ version = "0.1.16"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
254
+ dependencies = [
255
+ "getrandom 0.2.17",
256
+ "once_cell",
257
+ "tiny-keccak",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "core-foundation-sys"
262
+ version = "0.8.7"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
265
+
266
+ [[package]]
267
+ name = "crc32fast"
268
+ version = "1.5.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
271
+ dependencies = [
272
+ "cfg-if",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "crossbeam-deque"
277
+ version = "0.8.8"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
280
+ dependencies = [
281
+ "crossbeam-epoch",
282
+ "crossbeam-utils",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "crossbeam-epoch"
287
+ version = "0.9.21"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
290
+ dependencies = [
291
+ "crossbeam-utils",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "crossbeam-utils"
296
+ version = "0.8.23"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
299
+
300
+ [[package]]
301
+ name = "crunchy"
302
+ version = "0.2.4"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
305
+
306
+ [[package]]
307
+ name = "either"
308
+ version = "1.18.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
311
+
312
+ [[package]]
313
+ name = "equivalent"
314
+ version = "1.0.2"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
317
+
318
+ [[package]]
319
+ name = "errno"
320
+ version = "0.3.14"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
323
+ dependencies = [
324
+ "libc",
325
+ "windows-sys 0.61.2",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "fastrand"
330
+ version = "2.5.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
333
+
334
+ [[package]]
335
+ name = "find-msvc-tools"
336
+ version = "0.1.12"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
339
+
340
+ [[package]]
341
+ name = "flatbuffers"
342
+ version = "25.12.19"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
345
+ dependencies = [
346
+ "bitflags",
347
+ "rustc_version",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "flate2"
352
+ version = "1.1.10"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
355
+ dependencies = [
356
+ "crc32fast",
357
+ "miniz_oxide",
358
+ "zlib-rs",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "fnv"
363
+ version = "1.0.7"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
366
+
367
+ [[package]]
368
+ name = "futures-core"
369
+ version = "0.3.34"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
372
+
373
+ [[package]]
374
+ name = "futures-task"
375
+ version = "0.3.34"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
378
+
379
+ [[package]]
380
+ name = "futures-util"
381
+ version = "0.3.34"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
384
+ dependencies = [
385
+ "futures-core",
386
+ "futures-task",
387
+ "pin-project-lite",
388
+ "slab",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "getrandom"
393
+ version = "0.2.17"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
396
+ dependencies = [
397
+ "cfg-if",
398
+ "libc",
399
+ "wasi",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "getrandom"
404
+ version = "0.3.4"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
407
+ dependencies = [
408
+ "cfg-if",
409
+ "libc",
410
+ "r-efi 5.3.0",
411
+ "wasip2",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "getrandom"
416
+ version = "0.4.3"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
419
+ dependencies = [
420
+ "cfg-if",
421
+ "libc",
422
+ "r-efi 6.0.0",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "half"
427
+ version = "2.7.1"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
430
+ dependencies = [
431
+ "cfg-if",
432
+ "crunchy",
433
+ "num-traits",
434
+ "zerocopy",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "hashbrown"
439
+ version = "0.17.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
442
+
443
+ [[package]]
444
+ name = "heck"
445
+ version = "0.5.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
448
+
449
+ [[package]]
450
+ name = "home"
451
+ version = "0.5.11"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
454
+ dependencies = [
455
+ "windows-sys 0.59.0",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "iana-time-zone"
460
+ version = "0.1.65"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
463
+ dependencies = [
464
+ "android_system_properties",
465
+ "core-foundation-sys",
466
+ "iana-time-zone-haiku",
467
+ "js-sys",
468
+ "log",
469
+ "wasm-bindgen",
470
+ "windows-core",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "iana-time-zone-haiku"
475
+ version = "0.1.2"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
478
+ dependencies = [
479
+ "cc",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "indexmap"
484
+ version = "2.14.2"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
487
+ dependencies = [
488
+ "equivalent",
489
+ "hashbrown",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "js-sys"
494
+ version = "0.3.105"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
497
+ dependencies = [
498
+ "cfg-if",
499
+ "futures-util",
500
+ "wasm-bindgen",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "libc"
505
+ version = "0.2.189"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
508
+
509
+ [[package]]
510
+ name = "libm"
511
+ version = "0.2.16"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
514
+
515
+ [[package]]
516
+ name = "linux-raw-sys"
517
+ version = "0.4.15"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
520
+
521
+ [[package]]
522
+ name = "linux-raw-sys"
523
+ version = "0.12.1"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
526
+
527
+ [[package]]
528
+ name = "log"
529
+ version = "0.4.34"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
532
+
533
+ [[package]]
534
+ name = "lz4_flex"
535
+ version = "0.14.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "ecbdfe44b1bd960b68170b417450a628c43f7cf56bb3c5317e61cb230ee7f226"
538
+ dependencies = [
539
+ "twox-hash",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "matrixmultiply"
544
+ version = "0.3.11"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
547
+ dependencies = [
548
+ "autocfg",
549
+ "rawpointer",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "memchr"
554
+ version = "2.8.3"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
557
+
558
+ [[package]]
559
+ name = "memmap2"
560
+ version = "0.5.10"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
563
+ dependencies = [
564
+ "libc",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "miniz_oxide"
569
+ version = "0.9.1"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
572
+ dependencies = [
573
+ "adler2",
574
+ "simd-adler32",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "ndarray"
579
+ version = "0.17.2"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
582
+ dependencies = [
583
+ "matrixmultiply",
584
+ "num-complex",
585
+ "num-integer",
586
+ "num-traits",
587
+ "portable-atomic",
588
+ "portable-atomic-util",
589
+ "rawpointer",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "num-bigint"
594
+ version = "0.5.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
597
+ dependencies = [
598
+ "num-integer",
599
+ "num-traits",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "num-complex"
604
+ version = "0.4.6"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
607
+ dependencies = [
608
+ "num-traits",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "num-integer"
613
+ version = "0.1.47"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
616
+ dependencies = [
617
+ "num-traits",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "num-traits"
622
+ version = "0.2.19"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
625
+ dependencies = [
626
+ "autocfg",
627
+ "libm",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "numpy"
632
+ version = "0.29.0"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
635
+ dependencies = [
636
+ "libc",
637
+ "ndarray",
638
+ "num-complex",
639
+ "num-integer",
640
+ "num-traits",
641
+ "pyo3",
642
+ "pyo3-build-config",
643
+ "rustc-hash",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "once_cell"
648
+ version = "1.21.4"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
651
+
652
+ [[package]]
653
+ name = "openmobisim-core-choice"
654
+ version = "0.1.0-alpha.1"
655
+ dependencies = [
656
+ "openmobisim-core-types",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "openmobisim-core-demand"
661
+ version = "0.1.0-alpha.1"
662
+ dependencies = [
663
+ "arrow-array",
664
+ "arrow-schema",
665
+ "openmobisim-core-graph",
666
+ "openmobisim-core-types",
667
+ "parquet",
668
+ "proptest",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "openmobisim-core-graph"
673
+ version = "0.1.0-alpha.1"
674
+ dependencies = [
675
+ "openmobisim-core-types",
676
+ "proptest",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "openmobisim-core-loading"
681
+ version = "0.1.0-alpha.1"
682
+ dependencies = [
683
+ "openmobisim-core-graph",
684
+ "openmobisim-core-types",
685
+ "openmobisim-io-osm",
686
+ "proptest",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "openmobisim-core-routes"
691
+ version = "0.1.0-alpha.1"
692
+ dependencies = [
693
+ "openmobisim-core-graph",
694
+ "openmobisim-core-types",
695
+ "rayon",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "openmobisim-core-sim"
700
+ version = "0.1.0-alpha.1"
701
+ dependencies = [
702
+ "openmobisim-core-choice",
703
+ "openmobisim-core-demand",
704
+ "openmobisim-core-graph",
705
+ "openmobisim-core-loading",
706
+ "openmobisim-core-routes",
707
+ "openmobisim-core-types",
708
+ "proptest",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "openmobisim-core-types"
713
+ version = "0.1.0-alpha.1"
714
+ dependencies = [
715
+ "proptest",
716
+ "rand_chacha 0.10.0",
717
+ "rayon",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "openmobisim-io-osm"
722
+ version = "0.1.0-alpha.1"
723
+ dependencies = [
724
+ "openmobisim-core-graph",
725
+ "openmobisim-core-types",
726
+ "osmpbf",
727
+ "proptest",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "openmobisim-io-parquet"
732
+ version = "0.1.0-alpha.1"
733
+ dependencies = [
734
+ "arrow-array",
735
+ "arrow-schema",
736
+ "openmobisim-core-choice",
737
+ "openmobisim-core-demand",
738
+ "openmobisim-core-graph",
739
+ "openmobisim-core-loading",
740
+ "openmobisim-core-sim",
741
+ "openmobisim-core-types",
742
+ "parquet",
743
+ "proptest",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "openmobisim-py-bindings"
748
+ version = "0.1.0-alpha.1"
749
+ dependencies = [
750
+ "numpy",
751
+ "openmobisim-core-choice",
752
+ "openmobisim-core-demand",
753
+ "openmobisim-core-graph",
754
+ "openmobisim-core-loading",
755
+ "openmobisim-core-routes",
756
+ "openmobisim-core-sim",
757
+ "openmobisim-core-types",
758
+ "openmobisim-io-osm",
759
+ "openmobisim-io-parquet",
760
+ "pyo3",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "osmpbf"
765
+ version = "0.3.7"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "51b6d8d4418d577b7a07c2113955cf1aec96d8b528ddbeaeb2e6299b9691d712"
768
+ dependencies = [
769
+ "byteorder",
770
+ "flate2",
771
+ "memmap2",
772
+ "protobuf",
773
+ "protobuf-codegen",
774
+ "rayon",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "parquet"
779
+ version = "59.3.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "ff322f54b1a0f9288e614ed1f2d329b380af5476420db19f46ffb865e1163d73"
782
+ dependencies = [
783
+ "ahash",
784
+ "arrow-array",
785
+ "arrow-buffer",
786
+ "arrow-data",
787
+ "arrow-ipc",
788
+ "arrow-schema",
789
+ "arrow-select",
790
+ "base64",
791
+ "brotli",
792
+ "bytes",
793
+ "chrono",
794
+ "flate2",
795
+ "half",
796
+ "hashbrown",
797
+ "lz4_flex",
798
+ "num-bigint",
799
+ "num-integer",
800
+ "num-traits",
801
+ "seq-macro",
802
+ "snap",
803
+ "twox-hash",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "pin-project-lite"
808
+ version = "0.2.17"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
811
+
812
+ [[package]]
813
+ name = "portable-atomic"
814
+ version = "1.15.0"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
817
+
818
+ [[package]]
819
+ name = "portable-atomic-util"
820
+ version = "0.2.8"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "10ab3eb7f3becc3a1cbc4f2c6f20267996cfc1a6467a873763411b136a122715"
823
+ dependencies = [
824
+ "portable-atomic",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "ppv-lite86"
829
+ version = "0.2.21"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
832
+ dependencies = [
833
+ "zerocopy",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "proc-macro2"
838
+ version = "1.0.107"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
841
+ dependencies = [
842
+ "unicode-ident",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "proptest"
847
+ version = "1.11.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
850
+ dependencies = [
851
+ "bit-set",
852
+ "bit-vec",
853
+ "bitflags",
854
+ "num-traits",
855
+ "rand",
856
+ "rand_chacha 0.9.0",
857
+ "rand_xorshift",
858
+ "regex-syntax",
859
+ "rusty-fork",
860
+ "tempfile",
861
+ "unarray",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "protobuf"
866
+ version = "3.7.2"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
869
+ dependencies = [
870
+ "once_cell",
871
+ "protobuf-support",
872
+ "thiserror",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "protobuf-codegen"
877
+ version = "3.7.2"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace"
880
+ dependencies = [
881
+ "anyhow",
882
+ "once_cell",
883
+ "protobuf",
884
+ "protobuf-parse",
885
+ "regex",
886
+ "tempfile",
887
+ "thiserror",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "protobuf-parse"
892
+ version = "3.7.2"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973"
895
+ dependencies = [
896
+ "anyhow",
897
+ "indexmap",
898
+ "log",
899
+ "protobuf",
900
+ "protobuf-support",
901
+ "tempfile",
902
+ "thiserror",
903
+ "which",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "protobuf-support"
908
+ version = "3.7.2"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
911
+ dependencies = [
912
+ "thiserror",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "pyo3"
917
+ version = "0.29.2"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
920
+ dependencies = [
921
+ "libc",
922
+ "once_cell",
923
+ "portable-atomic",
924
+ "pyo3-build-config",
925
+ "pyo3-ffi",
926
+ "pyo3-macros",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "pyo3-build-config"
931
+ version = "0.29.2"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
934
+ dependencies = [
935
+ "target-lexicon",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "pyo3-ffi"
940
+ version = "0.29.2"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
943
+ dependencies = [
944
+ "libc",
945
+ "pyo3-build-config",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "pyo3-macros"
950
+ version = "0.29.2"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
953
+ dependencies = [
954
+ "proc-macro2",
955
+ "pyo3-macros-backend",
956
+ "quote",
957
+ "syn 2.0.119",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "pyo3-macros-backend"
962
+ version = "0.29.2"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
965
+ dependencies = [
966
+ "heck",
967
+ "proc-macro2",
968
+ "quote",
969
+ "syn 2.0.119",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "quick-error"
974
+ version = "1.2.3"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
977
+
978
+ [[package]]
979
+ name = "quote"
980
+ version = "1.0.47"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
983
+ dependencies = [
984
+ "proc-macro2",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "r-efi"
989
+ version = "5.3.0"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
992
+
993
+ [[package]]
994
+ name = "r-efi"
995
+ version = "6.0.0"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
998
+
999
+ [[package]]
1000
+ name = "rand"
1001
+ version = "0.9.5"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1004
+ dependencies = [
1005
+ "rand_chacha 0.9.0",
1006
+ "rand_core 0.9.5",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "rand_chacha"
1011
+ version = "0.9.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1014
+ dependencies = [
1015
+ "ppv-lite86",
1016
+ "rand_core 0.9.5",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "rand_chacha"
1021
+ version = "0.10.0"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
1024
+ dependencies = [
1025
+ "ppv-lite86",
1026
+ "rand_core 0.10.1",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "rand_core"
1031
+ version = "0.9.5"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1034
+ dependencies = [
1035
+ "getrandom 0.3.4",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "rand_core"
1040
+ version = "0.10.1"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1043
+
1044
+ [[package]]
1045
+ name = "rand_xorshift"
1046
+ version = "0.4.0"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1049
+ dependencies = [
1050
+ "rand_core 0.9.5",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "rawpointer"
1055
+ version = "0.2.1"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1058
+
1059
+ [[package]]
1060
+ name = "rayon"
1061
+ version = "1.12.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1064
+ dependencies = [
1065
+ "either",
1066
+ "rayon-core",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "rayon-core"
1071
+ version = "1.13.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1074
+ dependencies = [
1075
+ "crossbeam-deque",
1076
+ "crossbeam-utils",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "regex"
1081
+ version = "1.13.1"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1084
+ dependencies = [
1085
+ "aho-corasick",
1086
+ "memchr",
1087
+ "regex-automata",
1088
+ "regex-syntax",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "regex-automata"
1093
+ version = "0.4.18"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1096
+ dependencies = [
1097
+ "aho-corasick",
1098
+ "memchr",
1099
+ "regex-syntax",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "regex-syntax"
1104
+ version = "0.8.11"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1107
+
1108
+ [[package]]
1109
+ name = "rustc-hash"
1110
+ version = "2.1.3"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1113
+
1114
+ [[package]]
1115
+ name = "rustc_version"
1116
+ version = "0.4.1"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1119
+ dependencies = [
1120
+ "semver",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "rustix"
1125
+ version = "0.38.44"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1128
+ dependencies = [
1129
+ "bitflags",
1130
+ "errno",
1131
+ "libc",
1132
+ "linux-raw-sys 0.4.15",
1133
+ "windows-sys 0.59.0",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "rustix"
1138
+ version = "1.1.4"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1141
+ dependencies = [
1142
+ "bitflags",
1143
+ "errno",
1144
+ "libc",
1145
+ "linux-raw-sys 0.12.1",
1146
+ "windows-sys 0.61.2",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rustversion"
1151
+ version = "1.0.23"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1154
+
1155
+ [[package]]
1156
+ name = "rusty-fork"
1157
+ version = "0.3.1"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1160
+ dependencies = [
1161
+ "fnv",
1162
+ "quick-error",
1163
+ "tempfile",
1164
+ "wait-timeout",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "semver"
1169
+ version = "1.0.28"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1172
+
1173
+ [[package]]
1174
+ name = "seq-macro"
1175
+ version = "0.3.6"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1178
+
1179
+ [[package]]
1180
+ name = "shlex"
1181
+ version = "2.0.1"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1184
+
1185
+ [[package]]
1186
+ name = "simd-adler32"
1187
+ version = "0.3.10"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1190
+
1191
+ [[package]]
1192
+ name = "slab"
1193
+ version = "0.4.12"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1196
+
1197
+ [[package]]
1198
+ name = "snap"
1199
+ version = "1.1.2"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
1202
+
1203
+ [[package]]
1204
+ name = "syn"
1205
+ version = "2.0.119"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1208
+ dependencies = [
1209
+ "proc-macro2",
1210
+ "quote",
1211
+ "unicode-ident",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "syn"
1216
+ version = "3.0.5"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
1219
+ dependencies = [
1220
+ "proc-macro2",
1221
+ "quote",
1222
+ "unicode-ident",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "target-lexicon"
1227
+ version = "0.13.5"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1230
+
1231
+ [[package]]
1232
+ name = "tempfile"
1233
+ version = "3.27.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1236
+ dependencies = [
1237
+ "fastrand",
1238
+ "getrandom 0.4.3",
1239
+ "once_cell",
1240
+ "rustix 1.1.4",
1241
+ "windows-sys 0.61.2",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "thiserror"
1246
+ version = "1.0.69"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1249
+ dependencies = [
1250
+ "thiserror-impl",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "thiserror-impl"
1255
+ version = "1.0.69"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1258
+ dependencies = [
1259
+ "proc-macro2",
1260
+ "quote",
1261
+ "syn 2.0.119",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "tiny-keccak"
1266
+ version = "2.0.2"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1269
+ dependencies = [
1270
+ "crunchy",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "twox-hash"
1275
+ version = "2.1.4"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a"
1278
+
1279
+ [[package]]
1280
+ name = "unarray"
1281
+ version = "0.1.4"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1284
+
1285
+ [[package]]
1286
+ name = "unicode-ident"
1287
+ version = "1.0.24"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1290
+
1291
+ [[package]]
1292
+ name = "version_check"
1293
+ version = "0.9.5"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1296
+
1297
+ [[package]]
1298
+ name = "wait-timeout"
1299
+ version = "0.2.1"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1302
+ dependencies = [
1303
+ "libc",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "wasi"
1308
+ version = "0.11.1+wasi-snapshot-preview1"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1311
+
1312
+ [[package]]
1313
+ name = "wasip2"
1314
+ version = "1.0.1+wasi-0.2.4"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1317
+ dependencies = [
1318
+ "wit-bindgen",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "wasm-bindgen"
1323
+ version = "0.2.128"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
1326
+ dependencies = [
1327
+ "cfg-if",
1328
+ "once_cell",
1329
+ "rustversion",
1330
+ "wasm-bindgen-macro",
1331
+ "wasm-bindgen-shared",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "wasm-bindgen-macro"
1336
+ version = "0.2.128"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
1339
+ dependencies = [
1340
+ "quote",
1341
+ "wasm-bindgen-macro-support",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "wasm-bindgen-macro-support"
1346
+ version = "0.2.128"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
1349
+ dependencies = [
1350
+ "bumpalo",
1351
+ "proc-macro2",
1352
+ "quote",
1353
+ "syn 3.0.5",
1354
+ "wasm-bindgen-shared",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "wasm-bindgen-shared"
1359
+ version = "0.2.128"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
1362
+ dependencies = [
1363
+ "unicode-ident",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "which"
1368
+ version = "4.4.2"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
1371
+ dependencies = [
1372
+ "either",
1373
+ "home",
1374
+ "once_cell",
1375
+ "rustix 0.38.44",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "windows-core"
1380
+ version = "0.62.2"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1383
+ dependencies = [
1384
+ "windows-implement",
1385
+ "windows-interface",
1386
+ "windows-link",
1387
+ "windows-result",
1388
+ "windows-strings",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "windows-implement"
1393
+ version = "0.60.2"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1396
+ dependencies = [
1397
+ "proc-macro2",
1398
+ "quote",
1399
+ "syn 2.0.119",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "windows-interface"
1404
+ version = "0.59.3"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1407
+ dependencies = [
1408
+ "proc-macro2",
1409
+ "quote",
1410
+ "syn 2.0.119",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "windows-link"
1415
+ version = "0.2.1"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1418
+
1419
+ [[package]]
1420
+ name = "windows-result"
1421
+ version = "0.4.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1424
+ dependencies = [
1425
+ "windows-link",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "windows-strings"
1430
+ version = "0.5.1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1433
+ dependencies = [
1434
+ "windows-link",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "windows-sys"
1439
+ version = "0.59.0"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1442
+ dependencies = [
1443
+ "windows-targets",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "windows-sys"
1448
+ version = "0.61.2"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1451
+ dependencies = [
1452
+ "windows-link",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "windows-targets"
1457
+ version = "0.52.6"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1460
+ dependencies = [
1461
+ "windows_aarch64_gnullvm",
1462
+ "windows_aarch64_msvc",
1463
+ "windows_i686_gnu",
1464
+ "windows_i686_gnullvm",
1465
+ "windows_i686_msvc",
1466
+ "windows_x86_64_gnu",
1467
+ "windows_x86_64_gnullvm",
1468
+ "windows_x86_64_msvc",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "windows_aarch64_gnullvm"
1473
+ version = "0.52.6"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1476
+
1477
+ [[package]]
1478
+ name = "windows_aarch64_msvc"
1479
+ version = "0.52.6"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1482
+
1483
+ [[package]]
1484
+ name = "windows_i686_gnu"
1485
+ version = "0.52.6"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1488
+
1489
+ [[package]]
1490
+ name = "windows_i686_gnullvm"
1491
+ version = "0.52.6"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1494
+
1495
+ [[package]]
1496
+ name = "windows_i686_msvc"
1497
+ version = "0.52.6"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1500
+
1501
+ [[package]]
1502
+ name = "windows_x86_64_gnu"
1503
+ version = "0.52.6"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1506
+
1507
+ [[package]]
1508
+ name = "windows_x86_64_gnullvm"
1509
+ version = "0.52.6"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1512
+
1513
+ [[package]]
1514
+ name = "windows_x86_64_msvc"
1515
+ version = "0.52.6"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1518
+
1519
+ [[package]]
1520
+ name = "wit-bindgen"
1521
+ version = "0.46.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1524
+
1525
+ [[package]]
1526
+ name = "zerocopy"
1527
+ version = "0.8.57"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
1530
+ dependencies = [
1531
+ "zerocopy-derive",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "zerocopy-derive"
1536
+ version = "0.8.57"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
1539
+ dependencies = [
1540
+ "proc-macro2",
1541
+ "quote",
1542
+ "syn 2.0.119",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "zlib-rs"
1547
+ version = "0.6.7"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"