contourrs 0.4.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.
- contourrs-0.4.0/Cargo.lock +1202 -0
- contourrs-0.4.0/Cargo.toml +8 -0
- contourrs-0.4.0/LICENSE +190 -0
- contourrs-0.4.0/PKG-INFO +25 -0
- contourrs-0.4.0/crates/contourrs/Cargo.toml +21 -0
- contourrs-0.4.0/crates/contourrs/src/arrow.rs +160 -0
- contourrs-0.4.0/crates/contourrs/src/connectivity.rs +8 -0
- contourrs-0.4.0/crates/contourrs/src/contour.rs +761 -0
- contourrs-0.4.0/crates/contourrs/src/cuda/kernel.rs +165 -0
- contourrs-0.4.0/crates/contourrs/src/cuda/mod.rs +60 -0
- contourrs-0.4.0/crates/contourrs/src/geometry.rs +108 -0
- contourrs-0.4.0/crates/contourrs/src/label.rs +202 -0
- contourrs-0.4.0/crates/contourrs/src/lib.rs +187 -0
- contourrs-0.4.0/crates/contourrs/src/polygon.rs +27 -0
- contourrs-0.4.0/crates/contourrs/src/raster.rs +73 -0
- contourrs-0.4.0/crates/contourrs/src/trace.rs +338 -0
- contourrs-0.4.0/crates/contourrs/src/transform.rs +66 -0
- contourrs-0.4.0/crates/contourrs/src/union_find.rs +84 -0
- contourrs-0.4.0/crates/contourrs-python/Cargo.toml +16 -0
- contourrs-0.4.0/crates/contourrs-python/src/lib.rs +392 -0
- contourrs-0.4.0/pyproject.toml +51 -0
- contourrs-0.4.0/python/contourrs/__init__.py +5 -0
- contourrs-0.4.0/python/contourrs/_contourrs.pyi +124 -0
- contourrs-0.4.0/python/contourrs/py.typed +0 -0
|
@@ -0,0 +1,1202 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"const-random",
|
|
13
|
+
"getrandom 0.3.4",
|
|
14
|
+
"once_cell",
|
|
15
|
+
"version_check",
|
|
16
|
+
"zerocopy",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[[package]]
|
|
20
|
+
name = "aho-corasick"
|
|
21
|
+
version = "1.1.4"
|
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"memchr",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "allocator-api2"
|
|
30
|
+
version = "0.2.21"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "android_system_properties"
|
|
36
|
+
version = "0.1.5"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"libc",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "approx"
|
|
45
|
+
version = "0.5.1"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"num-traits",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "arrow"
|
|
54
|
+
version = "54.3.1"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "b5ec52ba94edeed950e4a41f75d35376df196e8cb04437f7280a5aa49f20f796"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"arrow-arith",
|
|
59
|
+
"arrow-array",
|
|
60
|
+
"arrow-buffer",
|
|
61
|
+
"arrow-cast",
|
|
62
|
+
"arrow-data",
|
|
63
|
+
"arrow-ord",
|
|
64
|
+
"arrow-row",
|
|
65
|
+
"arrow-schema",
|
|
66
|
+
"arrow-select",
|
|
67
|
+
"arrow-string",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "arrow-arith"
|
|
72
|
+
version = "54.3.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "8fc766fdacaf804cb10c7c70580254fcdb5d55cdfda2bc57b02baf5223a3af9e"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"arrow-array",
|
|
77
|
+
"arrow-buffer",
|
|
78
|
+
"arrow-data",
|
|
79
|
+
"arrow-schema",
|
|
80
|
+
"chrono",
|
|
81
|
+
"num",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "arrow-array"
|
|
86
|
+
version = "54.3.1"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "a12fcdb3f1d03f69d3ec26ac67645a8fe3f878d77b5ebb0b15d64a116c212985"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"ahash",
|
|
91
|
+
"arrow-buffer",
|
|
92
|
+
"arrow-data",
|
|
93
|
+
"arrow-schema",
|
|
94
|
+
"chrono",
|
|
95
|
+
"half",
|
|
96
|
+
"hashbrown",
|
|
97
|
+
"num",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "arrow-buffer"
|
|
102
|
+
version = "54.3.1"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "263f4801ff1839ef53ebd06f99a56cecd1dbaf314ec893d93168e2e860e0291c"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"bytes",
|
|
107
|
+
"half",
|
|
108
|
+
"num",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "arrow-cast"
|
|
113
|
+
version = "54.3.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "ede6175fbc039dfc946a61c1b6d42fd682fcecf5ab5d148fbe7667705798cac9"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"arrow-array",
|
|
118
|
+
"arrow-buffer",
|
|
119
|
+
"arrow-data",
|
|
120
|
+
"arrow-schema",
|
|
121
|
+
"arrow-select",
|
|
122
|
+
"atoi",
|
|
123
|
+
"base64",
|
|
124
|
+
"chrono",
|
|
125
|
+
"half",
|
|
126
|
+
"lexical-core",
|
|
127
|
+
"num",
|
|
128
|
+
"ryu",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "arrow-data"
|
|
133
|
+
version = "54.3.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "61cfdd7d99b4ff618f167e548b2411e5dd2c98c0ddebedd7df433d34c20a4429"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"arrow-buffer",
|
|
138
|
+
"arrow-schema",
|
|
139
|
+
"half",
|
|
140
|
+
"num",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "arrow-ord"
|
|
145
|
+
version = "54.3.1"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "f0a3334a743bd2a1479dbc635540617a3923b4b2f6870f37357339e6b5363c21"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"arrow-array",
|
|
150
|
+
"arrow-buffer",
|
|
151
|
+
"arrow-data",
|
|
152
|
+
"arrow-schema",
|
|
153
|
+
"arrow-select",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "arrow-row"
|
|
158
|
+
version = "54.3.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "8d1d7a7291d2c5107e92140f75257a99343956871f3d3ab33a7b41532f79cb68"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"arrow-array",
|
|
163
|
+
"arrow-buffer",
|
|
164
|
+
"arrow-data",
|
|
165
|
+
"arrow-schema",
|
|
166
|
+
"half",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "arrow-schema"
|
|
171
|
+
version = "54.3.1"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "39cfaf5e440be44db5413b75b72c2a87c1f8f0627117d110264048f2969b99e9"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"bitflags",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "arrow-select"
|
|
180
|
+
version = "54.3.1"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "69efcd706420e52cd44f5c4358d279801993846d1c2a8e52111853d61d55a619"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"ahash",
|
|
185
|
+
"arrow-array",
|
|
186
|
+
"arrow-buffer",
|
|
187
|
+
"arrow-data",
|
|
188
|
+
"arrow-schema",
|
|
189
|
+
"num",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "arrow-string"
|
|
194
|
+
version = "54.3.1"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "a21546b337ab304a32cfc0770f671db7411787586b45b78b4593ae78e64e2b03"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"arrow-array",
|
|
199
|
+
"arrow-buffer",
|
|
200
|
+
"arrow-data",
|
|
201
|
+
"arrow-schema",
|
|
202
|
+
"arrow-select",
|
|
203
|
+
"memchr",
|
|
204
|
+
"num",
|
|
205
|
+
"regex",
|
|
206
|
+
"regex-syntax",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "atoi"
|
|
211
|
+
version = "2.0.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"num-traits",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "autocfg"
|
|
220
|
+
version = "1.5.0"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "base64"
|
|
226
|
+
version = "0.22.1"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "bitflags"
|
|
232
|
+
version = "2.11.0"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "bumpalo"
|
|
238
|
+
version = "3.20.2"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "byteorder"
|
|
244
|
+
version = "1.5.0"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "bytes"
|
|
250
|
+
version = "1.11.1"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "cc"
|
|
256
|
+
version = "1.2.56"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"find-msvc-tools",
|
|
261
|
+
"shlex",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "cfg-if"
|
|
266
|
+
version = "1.0.4"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "chrono"
|
|
272
|
+
version = "0.4.44"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"iana-time-zone",
|
|
277
|
+
"num-traits",
|
|
278
|
+
"windows-link",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "const-random"
|
|
283
|
+
version = "0.1.18"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"const-random-macro",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "const-random-macro"
|
|
292
|
+
version = "0.1.16"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"getrandom 0.2.17",
|
|
297
|
+
"once_cell",
|
|
298
|
+
"tiny-keccak",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "contourrs"
|
|
303
|
+
version = "0.4.0"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"arrow",
|
|
306
|
+
"cudarc",
|
|
307
|
+
"geo",
|
|
308
|
+
"geo-types",
|
|
309
|
+
"num-traits",
|
|
310
|
+
"rayon",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "contourrs-python"
|
|
315
|
+
version = "0.4.0"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"arrow",
|
|
318
|
+
"contourrs",
|
|
319
|
+
"geo-types",
|
|
320
|
+
"numpy",
|
|
321
|
+
"pyo3",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "core-foundation-sys"
|
|
326
|
+
version = "0.8.7"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "crossbeam-deque"
|
|
332
|
+
version = "0.8.6"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"crossbeam-epoch",
|
|
337
|
+
"crossbeam-utils",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "crossbeam-epoch"
|
|
342
|
+
version = "0.9.18"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"crossbeam-utils",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "crossbeam-utils"
|
|
351
|
+
version = "0.8.21"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "crunchy"
|
|
357
|
+
version = "0.2.4"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "cudarc"
|
|
363
|
+
version = "0.12.1"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "38cd60a9a42ec83a2ed7effb0b1f073270264ea99da7acfc44f7e8d74dee0384"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"libloading",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "earcutr"
|
|
372
|
+
version = "0.4.3"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"itertools",
|
|
377
|
+
"num-traits",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "either"
|
|
382
|
+
version = "1.15.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "equivalent"
|
|
388
|
+
version = "1.0.2"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "find-msvc-tools"
|
|
394
|
+
version = "0.1.9"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "float_next_after"
|
|
400
|
+
version = "1.0.0"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "foldhash"
|
|
406
|
+
version = "0.1.5"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "geo"
|
|
412
|
+
version = "0.28.0"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "f811f663912a69249fa620dcd2a005db7254529da2d8a0b23942e81f47084501"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"earcutr",
|
|
417
|
+
"float_next_after",
|
|
418
|
+
"geo-types",
|
|
419
|
+
"geographiclib-rs",
|
|
420
|
+
"log",
|
|
421
|
+
"num-traits",
|
|
422
|
+
"robust",
|
|
423
|
+
"rstar",
|
|
424
|
+
"spade",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "geo-types"
|
|
429
|
+
version = "0.7.18"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "24f8647af4005fa11da47cd56252c6ef030be8fa97bdbf355e7dfb6348f0a82c"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"approx",
|
|
434
|
+
"num-traits",
|
|
435
|
+
"rstar",
|
|
436
|
+
"serde",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "geographiclib-rs"
|
|
441
|
+
version = "0.2.7"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "c5a7f08910fd98737a6eda7568e7c5e645093e073328eeef49758cfe8b0489c7"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"libm",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "getrandom"
|
|
450
|
+
version = "0.2.17"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"cfg-if",
|
|
455
|
+
"libc",
|
|
456
|
+
"wasi",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "getrandom"
|
|
461
|
+
version = "0.3.4"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"cfg-if",
|
|
466
|
+
"libc",
|
|
467
|
+
"r-efi",
|
|
468
|
+
"wasip2",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "half"
|
|
473
|
+
version = "2.7.1"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"cfg-if",
|
|
478
|
+
"crunchy",
|
|
479
|
+
"num-traits",
|
|
480
|
+
"zerocopy",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "hash32"
|
|
485
|
+
version = "0.3.1"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"byteorder",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "hashbrown"
|
|
494
|
+
version = "0.15.5"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"allocator-api2",
|
|
499
|
+
"equivalent",
|
|
500
|
+
"foldhash",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "heapless"
|
|
505
|
+
version = "0.8.0"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"hash32",
|
|
510
|
+
"stable_deref_trait",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "heck"
|
|
515
|
+
version = "0.5.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "iana-time-zone"
|
|
521
|
+
version = "0.1.65"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"android_system_properties",
|
|
526
|
+
"core-foundation-sys",
|
|
527
|
+
"iana-time-zone-haiku",
|
|
528
|
+
"js-sys",
|
|
529
|
+
"log",
|
|
530
|
+
"wasm-bindgen",
|
|
531
|
+
"windows-core",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "iana-time-zone-haiku"
|
|
536
|
+
version = "0.1.2"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"cc",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "itertools"
|
|
545
|
+
version = "0.11.0"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"either",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "js-sys"
|
|
554
|
+
version = "0.3.91"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"once_cell",
|
|
559
|
+
"wasm-bindgen",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "lexical-core"
|
|
564
|
+
version = "1.0.6"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"lexical-parse-float",
|
|
569
|
+
"lexical-parse-integer",
|
|
570
|
+
"lexical-util",
|
|
571
|
+
"lexical-write-float",
|
|
572
|
+
"lexical-write-integer",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "lexical-parse-float"
|
|
577
|
+
version = "1.0.6"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"lexical-parse-integer",
|
|
582
|
+
"lexical-util",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "lexical-parse-integer"
|
|
587
|
+
version = "1.0.6"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"lexical-util",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "lexical-util"
|
|
596
|
+
version = "1.0.7"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "lexical-write-float"
|
|
602
|
+
version = "1.0.6"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"lexical-util",
|
|
607
|
+
"lexical-write-integer",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "lexical-write-integer"
|
|
612
|
+
version = "1.0.6"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"lexical-util",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "libc"
|
|
621
|
+
version = "0.2.182"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "libloading"
|
|
627
|
+
version = "0.8.9"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"cfg-if",
|
|
632
|
+
"windows-link",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "libm"
|
|
637
|
+
version = "0.2.16"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "log"
|
|
643
|
+
version = "0.4.29"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "matrixmultiply"
|
|
649
|
+
version = "0.3.10"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"autocfg",
|
|
654
|
+
"rawpointer",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "memchr"
|
|
659
|
+
version = "2.8.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "ndarray"
|
|
665
|
+
version = "0.17.2"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"matrixmultiply",
|
|
670
|
+
"num-complex",
|
|
671
|
+
"num-integer",
|
|
672
|
+
"num-traits",
|
|
673
|
+
"portable-atomic",
|
|
674
|
+
"portable-atomic-util",
|
|
675
|
+
"rawpointer",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "num"
|
|
680
|
+
version = "0.4.3"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"num-bigint",
|
|
685
|
+
"num-complex",
|
|
686
|
+
"num-integer",
|
|
687
|
+
"num-iter",
|
|
688
|
+
"num-rational",
|
|
689
|
+
"num-traits",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "num-bigint"
|
|
694
|
+
version = "0.4.6"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"num-integer",
|
|
699
|
+
"num-traits",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "num-complex"
|
|
704
|
+
version = "0.4.6"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"num-traits",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "num-integer"
|
|
713
|
+
version = "0.1.46"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"num-traits",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "num-iter"
|
|
722
|
+
version = "0.1.45"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"autocfg",
|
|
727
|
+
"num-integer",
|
|
728
|
+
"num-traits",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "num-rational"
|
|
733
|
+
version = "0.4.2"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"num-bigint",
|
|
738
|
+
"num-integer",
|
|
739
|
+
"num-traits",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "num-traits"
|
|
744
|
+
version = "0.2.19"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"autocfg",
|
|
749
|
+
"libm",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "numpy"
|
|
754
|
+
version = "0.28.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"libc",
|
|
759
|
+
"ndarray",
|
|
760
|
+
"num-complex",
|
|
761
|
+
"num-integer",
|
|
762
|
+
"num-traits",
|
|
763
|
+
"pyo3",
|
|
764
|
+
"pyo3-build-config",
|
|
765
|
+
"rustc-hash",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "once_cell"
|
|
770
|
+
version = "1.21.3"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "portable-atomic"
|
|
776
|
+
version = "1.13.1"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "portable-atomic-util"
|
|
782
|
+
version = "0.2.5"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"portable-atomic",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "proc-macro2"
|
|
791
|
+
version = "1.0.106"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"unicode-ident",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "pyo3"
|
|
800
|
+
version = "0.28.2"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"libc",
|
|
805
|
+
"once_cell",
|
|
806
|
+
"portable-atomic",
|
|
807
|
+
"pyo3-build-config",
|
|
808
|
+
"pyo3-ffi",
|
|
809
|
+
"pyo3-macros",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "pyo3-build-config"
|
|
814
|
+
version = "0.28.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"target-lexicon",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "pyo3-ffi"
|
|
823
|
+
version = "0.28.2"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"libc",
|
|
828
|
+
"pyo3-build-config",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "pyo3-macros"
|
|
833
|
+
version = "0.28.2"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"proc-macro2",
|
|
838
|
+
"pyo3-macros-backend",
|
|
839
|
+
"quote",
|
|
840
|
+
"syn",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "pyo3-macros-backend"
|
|
845
|
+
version = "0.28.2"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"heck",
|
|
850
|
+
"proc-macro2",
|
|
851
|
+
"pyo3-build-config",
|
|
852
|
+
"quote",
|
|
853
|
+
"syn",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "quote"
|
|
858
|
+
version = "1.0.45"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"proc-macro2",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "r-efi"
|
|
867
|
+
version = "5.3.0"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "rawpointer"
|
|
873
|
+
version = "0.2.1"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "rayon"
|
|
879
|
+
version = "1.11.0"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"either",
|
|
884
|
+
"rayon-core",
|
|
885
|
+
]
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "rayon-core"
|
|
889
|
+
version = "1.13.0"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"crossbeam-deque",
|
|
894
|
+
"crossbeam-utils",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "regex"
|
|
899
|
+
version = "1.12.3"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"aho-corasick",
|
|
904
|
+
"memchr",
|
|
905
|
+
"regex-automata",
|
|
906
|
+
"regex-syntax",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "regex-automata"
|
|
911
|
+
version = "0.4.14"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"aho-corasick",
|
|
916
|
+
"memchr",
|
|
917
|
+
"regex-syntax",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "regex-syntax"
|
|
922
|
+
version = "0.8.10"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "robust"
|
|
928
|
+
version = "1.2.0"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "rstar"
|
|
934
|
+
version = "0.12.2"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"heapless",
|
|
939
|
+
"num-traits",
|
|
940
|
+
"smallvec",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "rustc-hash"
|
|
945
|
+
version = "2.1.1"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "rustversion"
|
|
951
|
+
version = "1.0.22"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "ryu"
|
|
957
|
+
version = "1.0.23"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "serde"
|
|
963
|
+
version = "1.0.228"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"serde_core",
|
|
968
|
+
"serde_derive",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "serde_core"
|
|
973
|
+
version = "1.0.228"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"serde_derive",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "serde_derive"
|
|
982
|
+
version = "1.0.228"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"proc-macro2",
|
|
987
|
+
"quote",
|
|
988
|
+
"syn",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "shlex"
|
|
993
|
+
version = "1.3.0"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "smallvec"
|
|
999
|
+
version = "1.15.1"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "spade"
|
|
1005
|
+
version = "2.15.0"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "fb313e1c8afee5b5647e00ee0fe6855e3d529eb863a0fdae1d60006c4d1e9990"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"hashbrown",
|
|
1010
|
+
"num-traits",
|
|
1011
|
+
"robust",
|
|
1012
|
+
"smallvec",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "stable_deref_trait"
|
|
1017
|
+
version = "1.2.1"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "syn"
|
|
1023
|
+
version = "2.0.117"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"proc-macro2",
|
|
1028
|
+
"quote",
|
|
1029
|
+
"unicode-ident",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "target-lexicon"
|
|
1034
|
+
version = "0.13.5"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "tiny-keccak"
|
|
1040
|
+
version = "2.0.2"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"crunchy",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "unicode-ident"
|
|
1049
|
+
version = "1.0.24"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "version_check"
|
|
1055
|
+
version = "0.9.5"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "wasi"
|
|
1061
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "wasip2"
|
|
1067
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"wit-bindgen",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "wasm-bindgen"
|
|
1076
|
+
version = "0.2.114"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"cfg-if",
|
|
1081
|
+
"once_cell",
|
|
1082
|
+
"rustversion",
|
|
1083
|
+
"wasm-bindgen-macro",
|
|
1084
|
+
"wasm-bindgen-shared",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "wasm-bindgen-macro"
|
|
1089
|
+
version = "0.2.114"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"quote",
|
|
1094
|
+
"wasm-bindgen-macro-support",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "wasm-bindgen-macro-support"
|
|
1099
|
+
version = "0.2.114"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"bumpalo",
|
|
1104
|
+
"proc-macro2",
|
|
1105
|
+
"quote",
|
|
1106
|
+
"syn",
|
|
1107
|
+
"wasm-bindgen-shared",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "wasm-bindgen-shared"
|
|
1112
|
+
version = "0.2.114"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"unicode-ident",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "windows-core"
|
|
1121
|
+
version = "0.62.2"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"windows-implement",
|
|
1126
|
+
"windows-interface",
|
|
1127
|
+
"windows-link",
|
|
1128
|
+
"windows-result",
|
|
1129
|
+
"windows-strings",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "windows-implement"
|
|
1134
|
+
version = "0.60.2"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"proc-macro2",
|
|
1139
|
+
"quote",
|
|
1140
|
+
"syn",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "windows-interface"
|
|
1145
|
+
version = "0.59.3"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"proc-macro2",
|
|
1150
|
+
"quote",
|
|
1151
|
+
"syn",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "windows-link"
|
|
1156
|
+
version = "0.2.1"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "windows-result"
|
|
1162
|
+
version = "0.4.1"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"windows-link",
|
|
1167
|
+
]
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "windows-strings"
|
|
1171
|
+
version = "0.5.1"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"windows-link",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "wit-bindgen"
|
|
1180
|
+
version = "0.51.0"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "zerocopy"
|
|
1186
|
+
version = "0.8.40"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"zerocopy-derive",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "zerocopy-derive"
|
|
1195
|
+
version = "0.8.40"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
|
|
1198
|
+
dependencies = [
|
|
1199
|
+
"proc-macro2",
|
|
1200
|
+
"quote",
|
|
1201
|
+
"syn",
|
|
1202
|
+
]
|