pointslicer 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pointslicer-0.1.0/Cargo.lock +1328 -0
- pointslicer-0.1.0/Cargo.toml +40 -0
- pointslicer-0.1.0/PKG-INFO +129 -0
- pointslicer-0.1.0/README.md +110 -0
- pointslicer-0.1.0/crates/pointslicer-core/Cargo.toml +35 -0
- pointslicer-0.1.0/crates/pointslicer-core/README.md +101 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/error.rs +79 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/geometry/bbox.rs +224 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/geometry/cylinder.rs +173 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/geometry/mod.rs +108 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/geometry/traits.rs +112 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/index/mod.rs +57 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/index/reader.rs +296 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/index/tile.rs +100 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/lib.rs +95 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/pipeline/executor.rs +206 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/pipeline/mod.rs +51 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/pointcloud/filter.rs +196 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/pointcloud/mod.rs +53 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/pointcloud/reader.rs +110 -0
- pointslicer-0.1.0/crates/pointslicer-core/src/pointcloud/writer.rs +248 -0
- pointslicer-0.1.0/crates/pointslicer-python/Cargo.toml +21 -0
- pointslicer-0.1.0/crates/pointslicer-python/README.md +110 -0
- pointslicer-0.1.0/crates/pointslicer-python/example.py +79 -0
- pointslicer-0.1.0/crates/pointslicer-python/src/lib.rs +400 -0
- pointslicer-0.1.0/pyproject.toml +31 -0
|
@@ -0,0 +1,1328 @@
|
|
|
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.7.8"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"getrandom 0.2.16",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "aho-corasick"
|
|
18
|
+
version = "1.1.4"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"memchr",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "allocator-api2"
|
|
27
|
+
version = "0.2.21"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "android_system_properties"
|
|
33
|
+
version = "0.1.5"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"libc",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "anstream"
|
|
42
|
+
version = "0.6.21"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"anstyle",
|
|
47
|
+
"anstyle-parse",
|
|
48
|
+
"anstyle-query",
|
|
49
|
+
"anstyle-wincon",
|
|
50
|
+
"colorchoice",
|
|
51
|
+
"is_terminal_polyfill",
|
|
52
|
+
"utf8parse",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anstyle"
|
|
57
|
+
version = "1.0.13"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anstyle-parse"
|
|
63
|
+
version = "0.2.7"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"utf8parse",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anstyle-query"
|
|
72
|
+
version = "1.1.5"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"windows-sys",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle-wincon"
|
|
81
|
+
version = "3.0.11"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"anstyle",
|
|
86
|
+
"once_cell_polyfill",
|
|
87
|
+
"windows-sys",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "anyhow"
|
|
92
|
+
version = "1.0.100"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "approx"
|
|
98
|
+
version = "0.5.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"num-traits",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "assert_cmd"
|
|
107
|
+
version = "2.1.1"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"anstyle",
|
|
112
|
+
"bstr",
|
|
113
|
+
"libc",
|
|
114
|
+
"predicates",
|
|
115
|
+
"predicates-core",
|
|
116
|
+
"predicates-tree",
|
|
117
|
+
"wait-timeout",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "autocfg"
|
|
122
|
+
version = "1.5.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "bitflags"
|
|
128
|
+
version = "1.3.2"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "bitflags"
|
|
134
|
+
version = "2.10.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "bstr"
|
|
140
|
+
version = "1.12.1"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"memchr",
|
|
145
|
+
"regex-automata",
|
|
146
|
+
"serde",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "bumpalo"
|
|
151
|
+
version = "3.19.1"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "byteorder"
|
|
157
|
+
version = "1.5.0"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "cc"
|
|
163
|
+
version = "1.2.51"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"find-msvc-tools",
|
|
168
|
+
"shlex",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "cfg-if"
|
|
173
|
+
version = "1.0.4"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "chrono"
|
|
179
|
+
version = "0.4.42"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"iana-time-zone",
|
|
184
|
+
"js-sys",
|
|
185
|
+
"num-traits",
|
|
186
|
+
"wasm-bindgen",
|
|
187
|
+
"windows-link",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "clap"
|
|
192
|
+
version = "4.5.54"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"clap_builder",
|
|
197
|
+
"clap_derive",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "clap_builder"
|
|
202
|
+
version = "4.5.54"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"anstream",
|
|
207
|
+
"anstyle",
|
|
208
|
+
"clap_lex",
|
|
209
|
+
"strsim",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "clap_derive"
|
|
214
|
+
version = "4.5.49"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"heck",
|
|
219
|
+
"proc-macro2",
|
|
220
|
+
"quote",
|
|
221
|
+
"syn 2.0.114",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "clap_lex"
|
|
226
|
+
version = "0.7.6"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "colorchoice"
|
|
232
|
+
version = "1.0.4"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "core-foundation-sys"
|
|
238
|
+
version = "0.8.7"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "crossbeam-deque"
|
|
244
|
+
version = "0.8.6"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"crossbeam-epoch",
|
|
249
|
+
"crossbeam-utils",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "crossbeam-epoch"
|
|
254
|
+
version = "0.9.18"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"crossbeam-utils",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "crossbeam-utils"
|
|
263
|
+
version = "0.8.21"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "difflib"
|
|
269
|
+
version = "0.4.0"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "earcutr"
|
|
275
|
+
version = "0.4.3"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"itertools",
|
|
280
|
+
"num-traits",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "either"
|
|
285
|
+
version = "1.15.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "env_filter"
|
|
291
|
+
version = "0.1.4"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"log",
|
|
296
|
+
"regex",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "env_logger"
|
|
301
|
+
version = "0.11.8"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"anstream",
|
|
306
|
+
"anstyle",
|
|
307
|
+
"env_filter",
|
|
308
|
+
"jiff",
|
|
309
|
+
"log",
|
|
310
|
+
]
|
|
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",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "fallible-iterator"
|
|
330
|
+
version = "0.2.0"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "fallible-streaming-iterator"
|
|
336
|
+
version = "0.1.9"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "fastrand"
|
|
342
|
+
version = "2.3.0"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "find-msvc-tools"
|
|
348
|
+
version = "0.1.6"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "float_next_after"
|
|
354
|
+
version = "1.0.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "foldhash"
|
|
360
|
+
version = "0.1.5"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "geo"
|
|
366
|
+
version = "0.29.3"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "34f0e6e028c581e82e6822a68869514e94c25e7f8ea669a2d8595bdf7461ccc5"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"earcutr",
|
|
371
|
+
"float_next_after",
|
|
372
|
+
"geo-types",
|
|
373
|
+
"geographiclib-rs",
|
|
374
|
+
"i_overlay",
|
|
375
|
+
"log",
|
|
376
|
+
"num-traits",
|
|
377
|
+
"robust",
|
|
378
|
+
"rstar",
|
|
379
|
+
"spade",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "geo-types"
|
|
384
|
+
version = "0.7.18"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "24f8647af4005fa11da47cd56252c6ef030be8fa97bdbf355e7dfb6348f0a82c"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"approx",
|
|
389
|
+
"num-traits",
|
|
390
|
+
"rayon",
|
|
391
|
+
"rstar",
|
|
392
|
+
"serde",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "geographiclib-rs"
|
|
397
|
+
version = "0.2.5"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "f611040a2bb37eaa29a78a128d1e92a378a03e0b6e66ae27398d42b1ba9a7841"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"libm",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "getrandom"
|
|
406
|
+
version = "0.2.16"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"cfg-if",
|
|
411
|
+
"libc",
|
|
412
|
+
"wasi",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "getrandom"
|
|
417
|
+
version = "0.3.4"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"cfg-if",
|
|
422
|
+
"libc",
|
|
423
|
+
"r-efi",
|
|
424
|
+
"wasip2",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "gpkg"
|
|
429
|
+
version = "0.1.0"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "6af16e6da765ae2b07ffd0037d36fc3614747000eae16fd5359ed60eb333d5fb"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"byteorder",
|
|
434
|
+
"geo-types",
|
|
435
|
+
"gpkg-derive",
|
|
436
|
+
"rusqlite",
|
|
437
|
+
"thiserror",
|
|
438
|
+
"wkb",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "gpkg-derive"
|
|
443
|
+
version = "0.1.0"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "724d7f3adefda96f123c080c56cb9571cf31337f612c5ea4e5aed4615bfa43e0"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"proc-macro2",
|
|
448
|
+
"quote",
|
|
449
|
+
"syn 1.0.109",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "hash32"
|
|
454
|
+
version = "0.3.1"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"byteorder",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "hashbrown"
|
|
463
|
+
version = "0.11.2"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"ahash",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "hashbrown"
|
|
472
|
+
version = "0.15.5"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"allocator-api2",
|
|
477
|
+
"equivalent",
|
|
478
|
+
"foldhash",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "hashlink"
|
|
483
|
+
version = "0.7.0"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"hashbrown 0.11.2",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "heapless"
|
|
492
|
+
version = "0.8.0"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"hash32",
|
|
497
|
+
"stable_deref_trait",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "heck"
|
|
502
|
+
version = "0.5.0"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "i_float"
|
|
508
|
+
version = "1.6.0"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "775f9961a8d2f879725da8aff789bb20a3ddf297473e0c90af75e69313919490"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"serde",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "i_key_sort"
|
|
517
|
+
version = "0.2.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "347c253b4748a1a28baf94c9ce133b6b166f08573157e05afe718812bc599fcd"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "i_overlay"
|
|
523
|
+
version = "1.9.4"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "01882ce5ed786bf6e8f5167f171a4026cd129ce17d9ff5cbf1e6749b98628ece"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"i_float",
|
|
528
|
+
"i_key_sort",
|
|
529
|
+
"i_shape",
|
|
530
|
+
"i_tree",
|
|
531
|
+
"rayon",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "i_shape"
|
|
536
|
+
version = "1.6.0"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "27dbe9e5238d6b9c694c08415bf00fb370b089949bd818ab01f41f8927b8774c"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"i_float",
|
|
541
|
+
"serde",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "i_tree"
|
|
546
|
+
version = "0.8.3"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "155181bc97d770181cf9477da51218a19ee92a8e5be642e796661aee2b601139"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "iana-time-zone"
|
|
552
|
+
version = "0.1.64"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"android_system_properties",
|
|
557
|
+
"core-foundation-sys",
|
|
558
|
+
"iana-time-zone-haiku",
|
|
559
|
+
"js-sys",
|
|
560
|
+
"log",
|
|
561
|
+
"wasm-bindgen",
|
|
562
|
+
"windows-core",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "iana-time-zone-haiku"
|
|
567
|
+
version = "0.1.2"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"cc",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "indoc"
|
|
576
|
+
version = "2.0.7"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"rustversion",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "is_terminal_polyfill"
|
|
585
|
+
version = "1.70.2"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "itertools"
|
|
591
|
+
version = "0.11.0"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"either",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "jiff"
|
|
600
|
+
version = "0.2.18"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "e67e8da4c49d6d9909fe03361f9b620f58898859f5c7aded68351e85e71ecf50"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"jiff-static",
|
|
605
|
+
"log",
|
|
606
|
+
"portable-atomic",
|
|
607
|
+
"portable-atomic-util",
|
|
608
|
+
"serde_core",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "jiff-static"
|
|
613
|
+
version = "0.2.18"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78"
|
|
616
|
+
dependencies = [
|
|
617
|
+
"proc-macro2",
|
|
618
|
+
"quote",
|
|
619
|
+
"syn 2.0.114",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "js-sys"
|
|
624
|
+
version = "0.3.83"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"once_cell",
|
|
629
|
+
"wasm-bindgen",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "las"
|
|
634
|
+
version = "0.8.8"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "bc1269d29c76146444ebfef86b78644e5507a5c7a98bc8fb4e60ddf255044ad7"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"byteorder",
|
|
639
|
+
"chrono",
|
|
640
|
+
"laz",
|
|
641
|
+
"log",
|
|
642
|
+
"num-traits",
|
|
643
|
+
"thiserror",
|
|
644
|
+
"uuid",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "laz"
|
|
649
|
+
version = "0.9.3"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "5e9be1582ff02cb56b08a4d273cc5f77eacd89d33a0c682ede9d0912e1c17773"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"byteorder",
|
|
654
|
+
"num-traits",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "libc"
|
|
659
|
+
version = "0.2.179"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "libm"
|
|
665
|
+
version = "0.2.15"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "libsqlite3-sys"
|
|
671
|
+
version = "0.24.2"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"cc",
|
|
676
|
+
"pkg-config",
|
|
677
|
+
"vcpkg",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "linux-raw-sys"
|
|
682
|
+
version = "0.11.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "log"
|
|
688
|
+
version = "0.4.29"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "memchr"
|
|
694
|
+
version = "2.7.6"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "memoffset"
|
|
700
|
+
version = "0.9.1"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"autocfg",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "num-traits"
|
|
709
|
+
version = "0.2.19"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"autocfg",
|
|
714
|
+
"libm",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "once_cell"
|
|
719
|
+
version = "1.21.3"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "once_cell_polyfill"
|
|
725
|
+
version = "1.70.2"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "pkg-config"
|
|
731
|
+
version = "0.3.32"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "pointslicer"
|
|
737
|
+
version = "0.1.0"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"anyhow",
|
|
740
|
+
"assert_cmd",
|
|
741
|
+
"clap",
|
|
742
|
+
"env_logger",
|
|
743
|
+
"geo",
|
|
744
|
+
"las",
|
|
745
|
+
"log",
|
|
746
|
+
"pointslicer-core",
|
|
747
|
+
"rusqlite",
|
|
748
|
+
"tempfile",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "pointslicer-core"
|
|
753
|
+
version = "0.1.0"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"anyhow",
|
|
756
|
+
"geo",
|
|
757
|
+
"geo-types",
|
|
758
|
+
"gpkg",
|
|
759
|
+
"las",
|
|
760
|
+
"log",
|
|
761
|
+
"rayon",
|
|
762
|
+
"rusqlite",
|
|
763
|
+
"tempfile",
|
|
764
|
+
"thiserror",
|
|
765
|
+
"wkb",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "pointslicer-python"
|
|
770
|
+
version = "0.1.0"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"pointslicer-core",
|
|
773
|
+
"pyo3",
|
|
774
|
+
"pyo3-build-config",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "portable-atomic"
|
|
779
|
+
version = "1.13.0"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "portable-atomic-util"
|
|
785
|
+
version = "0.2.4"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"portable-atomic",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "predicates"
|
|
794
|
+
version = "3.1.3"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"anstyle",
|
|
799
|
+
"difflib",
|
|
800
|
+
"predicates-core",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "predicates-core"
|
|
805
|
+
version = "1.0.9"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "predicates-tree"
|
|
811
|
+
version = "1.0.12"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"predicates-core",
|
|
816
|
+
"termtree",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "proc-macro2"
|
|
821
|
+
version = "1.0.105"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"unicode-ident",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "pyo3"
|
|
830
|
+
version = "0.27.2"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"indoc",
|
|
835
|
+
"libc",
|
|
836
|
+
"memoffset",
|
|
837
|
+
"once_cell",
|
|
838
|
+
"portable-atomic",
|
|
839
|
+
"pyo3-build-config",
|
|
840
|
+
"pyo3-ffi",
|
|
841
|
+
"pyo3-macros",
|
|
842
|
+
"unindent",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "pyo3-build-config"
|
|
847
|
+
version = "0.27.2"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"target-lexicon",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "pyo3-ffi"
|
|
856
|
+
version = "0.27.2"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"libc",
|
|
861
|
+
"pyo3-build-config",
|
|
862
|
+
]
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "pyo3-macros"
|
|
866
|
+
version = "0.27.2"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"proc-macro2",
|
|
871
|
+
"pyo3-macros-backend",
|
|
872
|
+
"quote",
|
|
873
|
+
"syn 2.0.114",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "pyo3-macros-backend"
|
|
878
|
+
version = "0.27.2"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"heck",
|
|
883
|
+
"proc-macro2",
|
|
884
|
+
"pyo3-build-config",
|
|
885
|
+
"quote",
|
|
886
|
+
"syn 2.0.114",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "quote"
|
|
891
|
+
version = "1.0.43"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"proc-macro2",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "r-efi"
|
|
900
|
+
version = "5.3.0"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "rayon"
|
|
906
|
+
version = "1.11.0"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"either",
|
|
911
|
+
"rayon-core",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "rayon-core"
|
|
916
|
+
version = "1.13.0"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"crossbeam-deque",
|
|
921
|
+
"crossbeam-utils",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "regex"
|
|
926
|
+
version = "1.12.2"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"aho-corasick",
|
|
931
|
+
"memchr",
|
|
932
|
+
"regex-automata",
|
|
933
|
+
"regex-syntax",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "regex-automata"
|
|
938
|
+
version = "0.4.13"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"aho-corasick",
|
|
943
|
+
"memchr",
|
|
944
|
+
"regex-syntax",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "regex-syntax"
|
|
949
|
+
version = "0.8.8"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "robust"
|
|
955
|
+
version = "1.2.0"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "rstar"
|
|
961
|
+
version = "0.12.2"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"heapless",
|
|
966
|
+
"num-traits",
|
|
967
|
+
"smallvec",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "rusqlite"
|
|
972
|
+
version = "0.27.0"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "85127183a999f7db96d1a976a309eebbfb6ea3b0b400ddd8340190129de6eb7a"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"bitflags 1.3.2",
|
|
977
|
+
"fallible-iterator",
|
|
978
|
+
"fallible-streaming-iterator",
|
|
979
|
+
"hashlink",
|
|
980
|
+
"libsqlite3-sys",
|
|
981
|
+
"memchr",
|
|
982
|
+
"smallvec",
|
|
983
|
+
]
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "rustix"
|
|
987
|
+
version = "1.1.3"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"bitflags 2.10.0",
|
|
992
|
+
"errno",
|
|
993
|
+
"libc",
|
|
994
|
+
"linux-raw-sys",
|
|
995
|
+
"windows-sys",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "rustversion"
|
|
1000
|
+
version = "1.0.22"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "serde"
|
|
1006
|
+
version = "1.0.228"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"serde_core",
|
|
1011
|
+
"serde_derive",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "serde_core"
|
|
1016
|
+
version = "1.0.228"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"serde_derive",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "serde_derive"
|
|
1025
|
+
version = "1.0.228"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"proc-macro2",
|
|
1030
|
+
"quote",
|
|
1031
|
+
"syn 2.0.114",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "shlex"
|
|
1036
|
+
version = "1.3.0"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "smallvec"
|
|
1042
|
+
version = "1.15.1"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "spade"
|
|
1048
|
+
version = "2.15.0"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "fb313e1c8afee5b5647e00ee0fe6855e3d529eb863a0fdae1d60006c4d1e9990"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"hashbrown 0.15.5",
|
|
1053
|
+
"num-traits",
|
|
1054
|
+
"robust",
|
|
1055
|
+
"smallvec",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "stable_deref_trait"
|
|
1060
|
+
version = "1.2.1"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "strsim"
|
|
1066
|
+
version = "0.11.1"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "syn"
|
|
1072
|
+
version = "1.0.109"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"proc-macro2",
|
|
1077
|
+
"quote",
|
|
1078
|
+
"unicode-ident",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "syn"
|
|
1083
|
+
version = "2.0.114"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"proc-macro2",
|
|
1088
|
+
"quote",
|
|
1089
|
+
"unicode-ident",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "target-lexicon"
|
|
1094
|
+
version = "0.13.4"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "tempfile"
|
|
1100
|
+
version = "3.24.0"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"fastrand",
|
|
1105
|
+
"getrandom 0.3.4",
|
|
1106
|
+
"once_cell",
|
|
1107
|
+
"rustix",
|
|
1108
|
+
"windows-sys",
|
|
1109
|
+
]
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "termtree"
|
|
1113
|
+
version = "0.5.1"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "thiserror"
|
|
1119
|
+
version = "1.0.69"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"thiserror-impl",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "thiserror-impl"
|
|
1128
|
+
version = "1.0.69"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"proc-macro2",
|
|
1133
|
+
"quote",
|
|
1134
|
+
"syn 2.0.114",
|
|
1135
|
+
]
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "unicode-ident"
|
|
1139
|
+
version = "1.0.22"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "unindent"
|
|
1145
|
+
version = "0.2.4"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "utf8parse"
|
|
1151
|
+
version = "0.2.2"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "uuid"
|
|
1157
|
+
version = "1.19.0"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"js-sys",
|
|
1162
|
+
"wasm-bindgen",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "vcpkg"
|
|
1167
|
+
version = "0.2.15"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "version_check"
|
|
1173
|
+
version = "0.9.5"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "wait-timeout"
|
|
1179
|
+
version = "0.2.1"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"libc",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "wasi"
|
|
1188
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "wasip2"
|
|
1194
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"wit-bindgen",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "wasm-bindgen"
|
|
1203
|
+
version = "0.2.106"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"cfg-if",
|
|
1208
|
+
"once_cell",
|
|
1209
|
+
"rustversion",
|
|
1210
|
+
"wasm-bindgen-macro",
|
|
1211
|
+
"wasm-bindgen-shared",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "wasm-bindgen-macro"
|
|
1216
|
+
version = "0.2.106"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"quote",
|
|
1221
|
+
"wasm-bindgen-macro-support",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "wasm-bindgen-macro-support"
|
|
1226
|
+
version = "0.2.106"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"bumpalo",
|
|
1231
|
+
"proc-macro2",
|
|
1232
|
+
"quote",
|
|
1233
|
+
"syn 2.0.114",
|
|
1234
|
+
"wasm-bindgen-shared",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "wasm-bindgen-shared"
|
|
1239
|
+
version = "0.2.106"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"unicode-ident",
|
|
1244
|
+
]
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "windows-core"
|
|
1248
|
+
version = "0.62.2"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"windows-implement",
|
|
1253
|
+
"windows-interface",
|
|
1254
|
+
"windows-link",
|
|
1255
|
+
"windows-result",
|
|
1256
|
+
"windows-strings",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "windows-implement"
|
|
1261
|
+
version = "0.60.2"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"proc-macro2",
|
|
1266
|
+
"quote",
|
|
1267
|
+
"syn 2.0.114",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "windows-interface"
|
|
1272
|
+
version = "0.59.3"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"proc-macro2",
|
|
1277
|
+
"quote",
|
|
1278
|
+
"syn 2.0.114",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "windows-link"
|
|
1283
|
+
version = "0.2.1"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "windows-result"
|
|
1289
|
+
version = "0.4.1"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"windows-link",
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "windows-strings"
|
|
1298
|
+
version = "0.5.1"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"windows-link",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "windows-sys"
|
|
1307
|
+
version = "0.61.2"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"windows-link",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "wit-bindgen"
|
|
1316
|
+
version = "0.46.0"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "wkb"
|
|
1322
|
+
version = "0.7.1"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "66c806dac841607a62b0e8babf620fea51429f6ea005545491198fcbfd9004a2"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"geo-types",
|
|
1327
|
+
"num-traits",
|
|
1328
|
+
]
|