holosdb 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.
- holosdb-0.1.0/Cargo.lock +2728 -0
- holosdb-0.1.0/Cargo.toml +65 -0
- holosdb-0.1.0/PKG-INFO +119 -0
- holosdb-0.1.0/README.md +96 -0
- holosdb-0.1.0/crates/holos-core/Cargo.toml +16 -0
- holosdb-0.1.0/crates/holos-core/src/inline.rs +528 -0
- holosdb-0.1.0/crates/holos-core/src/lib.rs +43 -0
- holosdb-0.1.0/crates/holos-core/src/term_id.rs +209 -0
- holosdb-0.1.0/crates/holos-core/src/vocab.rs +320 -0
- holosdb-0.1.0/crates/holos-core/tests/codec_properties.rs +193 -0
- holosdb-0.1.0/crates/holos-engine/Cargo.toml +30 -0
- holosdb-0.1.0/crates/holos-engine/examples/surface.rs +559 -0
- holosdb-0.1.0/crates/holos-engine/src/functions.rs +714 -0
- holosdb-0.1.0/crates/holos-engine/src/geo_ext.rs +528 -0
- holosdb-0.1.0/crates/holos-engine/src/lib.rs +868 -0
- holosdb-0.1.0/crates/holos-engine/src/options.rs +249 -0
- holosdb-0.1.0/crates/holos-engine/src/service.rs +408 -0
- holosdb-0.1.0/crates/holos-engine/src/source.rs +185 -0
- holosdb-0.1.0/crates/holos-engine/src/update.rs +608 -0
- holosdb-0.1.0/crates/holos-engine/src/view.rs +284 -0
- holosdb-0.1.0/crates/holos-engine/tests/geosparql.rs +167 -0
- holosdb-0.1.0/crates/holos-engine/tests/gzip.rs +157 -0
- holosdb-0.1.0/crates/holos-engine/tests/options.rs +270 -0
- holosdb-0.1.0/crates/holos-engine/tests/update.rs +555 -0
- holosdb-0.1.0/crates/holos-python/Cargo.toml +38 -0
- holosdb-0.1.0/crates/holos-python/PACKAGING.md +160 -0
- holosdb-0.1.0/crates/holos-python/README.md +96 -0
- holosdb-0.1.0/crates/holos-python/src/lib.rs +889 -0
- holosdb-0.1.0/crates/holos-python/tests/test_holosdb.py +410 -0
- holosdb-0.1.0/crates/holos-security/Cargo.toml +14 -0
- holosdb-0.1.0/crates/holos-security/src/audit.rs +142 -0
- holosdb-0.1.0/crates/holos-security/src/lib.rs +176 -0
- holosdb-0.1.0/crates/holos-security/src/policy.rs +907 -0
- holosdb-0.1.0/crates/holos-security/src/principal.rs +383 -0
- holosdb-0.1.0/crates/holos-shacl/Cargo.toml +27 -0
- holosdb-0.1.0/crates/holos-shacl/examples/bridge_vs_load.rs +66 -0
- holosdb-0.1.0/crates/holos-shacl/examples/incremental.rs +100 -0
- holosdb-0.1.0/crates/holos-shacl/src/access.rs +172 -0
- holosdb-0.1.0/crates/holos-shacl/src/bridge.rs +260 -0
- holosdb-0.1.0/crates/holos-shacl/src/engine.rs +238 -0
- holosdb-0.1.0/crates/holos-shacl/src/incremental.rs +169 -0
- holosdb-0.1.0/crates/holos-shacl/src/ir.rs +870 -0
- holosdb-0.1.0/crates/holos-shacl/src/lib.rs +274 -0
- holosdb-0.1.0/crates/holos-shacl/src/report.rs +190 -0
- holosdb-0.1.0/crates/holos-shacl/src/validate.rs +774 -0
- holosdb-0.1.0/crates/holos-shacl/src/vocab.rs +217 -0
- holosdb-0.1.0/crates/holos-shacl/tests/incremental_is_safe.rs +206 -0
- holosdb-0.1.0/crates/holos-shacl-engine/Cargo.toml +34 -0
- holosdb-0.1.0/crates/holos-shacl-engine/LICENSE-APACHE +202 -0
- holosdb-0.1.0/crates/holos-shacl-engine/LICENSE-MIT +21 -0
- holosdb-0.1.0/crates/holos-shacl-engine/PROVENANCE.md +62 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/datatypes.rs +610 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/error.rs +37 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/inference.rs +396 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/lib.rs +26 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/model/graph.rs +239 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/model/interner.rs +144 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/model/loader.rs +826 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/model/mod.rs +120 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/model/term.rs +676 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/model/vocab.rs +378 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/nodeexpr.rs +986 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/path.rs +587 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/report.rs +742 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/rules.rs +285 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/shapes.rs +1391 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/sparql.rs +1086 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/validate.rs +1520 -0
- holosdb-0.1.0/crates/holos-shacl-engine/src/valueset.rs +295 -0
- holosdb-0.1.0/crates/holos-stats/Cargo.toml +21 -0
- holosdb-0.1.0/crates/holos-stats/examples/does_order_matter.rs +97 -0
- holosdb-0.1.0/crates/holos-stats/examples/estimator_accuracy.rs +221 -0
- holosdb-0.1.0/crates/holos-stats/src/baseline.rs +86 -0
- holosdb-0.1.0/crates/holos-stats/src/characteristic.rs +446 -0
- holosdb-0.1.0/crates/holos-stats/src/lib.rs +83 -0
- holosdb-0.1.0/crates/holos-stats/src/reorder.rs +456 -0
- holosdb-0.1.0/crates/holos-store/Cargo.toml +22 -0
- holosdb-0.1.0/crates/holos-store/src/dictionary.rs +359 -0
- holosdb-0.1.0/crates/holos-store/src/error.rs +32 -0
- holosdb-0.1.0/crates/holos-store/src/index.rs +614 -0
- holosdb-0.1.0/crates/holos-store/src/lib.rs +452 -0
- holosdb-0.1.0/crates/holos-store/src/memory.rs +164 -0
- holosdb-0.1.0/crates/holos-store/src/rocks/codec.rs +335 -0
- holosdb-0.1.0/crates/holos-store/src/rocks/mod.rs +1028 -0
- holosdb-0.1.0/crates/holos-store/src/storage.rs +125 -0
- holosdb-0.1.0/crates/holos-store/tests/backend_parity.rs +472 -0
- holosdb-0.1.0/pyproject.toml +54 -0
- holosdb-0.1.0/python/holosdb/__init__.py +49 -0
- holosdb-0.1.0/python/holosdb/_holosdb.pyi +87 -0
- holosdb-0.1.0/python/holosdb/py.typed +0 -0
holosdb-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,2728 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anyhow"
|
|
28
|
+
version = "1.0.104"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "approx"
|
|
34
|
+
version = "0.5.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"num-traits",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "ar_archive_writer"
|
|
43
|
+
version = "0.5.3"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "73cd58deff2140a0a8eae87e417bd01db68a33e148aa93d1e8cd837e55e312b6"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"object",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "argminmax"
|
|
52
|
+
version = "0.6.3"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"half",
|
|
57
|
+
"num-traits",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "as-slice"
|
|
62
|
+
version = "0.1.5"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "45403b49e3954a4b8428a0ac21a4b7afadccf92bfd96273f1a58cd4812496ae0"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"generic-array 0.12.4",
|
|
67
|
+
"generic-array 0.13.3",
|
|
68
|
+
"generic-array 0.14.7",
|
|
69
|
+
"stable_deref_trait",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "ascii"
|
|
74
|
+
version = "1.1.0"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "atoi_simd"
|
|
80
|
+
version = "0.18.1"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "f3cdb3708a128e559a30fb830e8a77a5022ee6902806925c216658652b452a44"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"debug_unsafe",
|
|
85
|
+
"rustversion",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "atomic-polyfill"
|
|
90
|
+
version = "1.0.3"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"critical-section",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "atomic-waker"
|
|
99
|
+
version = "1.1.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "autocfg"
|
|
105
|
+
version = "1.5.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "bindgen"
|
|
111
|
+
version = "0.72.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"bitflags",
|
|
116
|
+
"cexpr",
|
|
117
|
+
"clang-sys",
|
|
118
|
+
"itertools 0.13.0",
|
|
119
|
+
"proc-macro2",
|
|
120
|
+
"quote",
|
|
121
|
+
"regex",
|
|
122
|
+
"rustc-hash",
|
|
123
|
+
"shlex 1.3.0",
|
|
124
|
+
"syn 2.0.119",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "bit-set"
|
|
129
|
+
version = "0.8.0"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"bit-vec",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bit-vec"
|
|
138
|
+
version = "0.8.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "bitflags"
|
|
144
|
+
version = "2.13.1"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "block-buffer"
|
|
150
|
+
version = "0.10.4"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"generic-array 0.14.7",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "boxcar"
|
|
159
|
+
version = "0.2.14"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "bumpalo"
|
|
165
|
+
version = "3.20.3"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "bytemuck"
|
|
171
|
+
version = "1.25.2"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"bytemuck_derive",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "bytemuck_derive"
|
|
180
|
+
version = "1.12.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"proc-macro2",
|
|
185
|
+
"quote",
|
|
186
|
+
"syn 3.0.3",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "byteorder"
|
|
191
|
+
version = "1.5.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "bytes"
|
|
197
|
+
version = "1.12.1"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "bzip2-sys"
|
|
203
|
+
version = "0.1.13+1.0.8"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"cc",
|
|
208
|
+
"pkg-config",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "castaway"
|
|
213
|
+
version = "0.2.4"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"rustversion",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "cc"
|
|
222
|
+
version = "1.4.4"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"find-msvc-tools",
|
|
227
|
+
"jobserver",
|
|
228
|
+
"libc",
|
|
229
|
+
"shlex 2.0.1",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "cexpr"
|
|
234
|
+
version = "0.6.0"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"nom",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "cfg-if"
|
|
243
|
+
version = "1.0.4"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "chacha20"
|
|
249
|
+
version = "0.10.1"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"cfg-if",
|
|
254
|
+
"cpufeatures 0.3.0",
|
|
255
|
+
"rand_core 0.10.1",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "chrono"
|
|
260
|
+
version = "0.4.45"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"num-traits",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "chrono-tz"
|
|
269
|
+
version = "0.10.4"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"chrono",
|
|
274
|
+
"phf",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "chunked_transfer"
|
|
279
|
+
version = "1.5.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "clang-sys"
|
|
285
|
+
version = "1.9.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"glob",
|
|
290
|
+
"libc",
|
|
291
|
+
"libloading",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "compact_str"
|
|
296
|
+
version = "0.9.1"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"castaway",
|
|
301
|
+
"cfg-if",
|
|
302
|
+
"itoa",
|
|
303
|
+
"rustversion",
|
|
304
|
+
"ryu",
|
|
305
|
+
"serde",
|
|
306
|
+
"static_assertions",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "cpufeatures"
|
|
311
|
+
version = "0.2.17"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"libc",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "cpufeatures"
|
|
320
|
+
version = "0.3.0"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"libc",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "crc32fast"
|
|
329
|
+
version = "1.5.1"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"cfg-if",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "critical-section"
|
|
338
|
+
version = "1.2.0"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "crossbeam-channel"
|
|
344
|
+
version = "0.5.16"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"crossbeam-utils",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "crossbeam-deque"
|
|
353
|
+
version = "0.8.7"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"crossbeam-epoch",
|
|
358
|
+
"crossbeam-utils",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "crossbeam-epoch"
|
|
363
|
+
version = "0.9.20"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"crossbeam-utils",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "crossbeam-utils"
|
|
372
|
+
version = "0.8.22"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "crunchy"
|
|
378
|
+
version = "0.2.4"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "crypto-common"
|
|
384
|
+
version = "0.1.7"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"generic-array 0.14.7",
|
|
389
|
+
"typenum",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "csv"
|
|
394
|
+
version = "1.4.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"csv-core",
|
|
399
|
+
"itoa",
|
|
400
|
+
"ryu",
|
|
401
|
+
"serde_core",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "csv-core"
|
|
406
|
+
version = "0.1.13"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"memchr",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "debug_unsafe"
|
|
415
|
+
version = "0.1.4"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "digest"
|
|
421
|
+
version = "0.10.7"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"block-buffer",
|
|
426
|
+
"crypto-common",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "dyn-clone"
|
|
431
|
+
version = "1.0.20"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "earcutr"
|
|
437
|
+
version = "0.4.3"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"itertools 0.11.0",
|
|
442
|
+
"num-traits",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "either"
|
|
447
|
+
version = "1.18.0"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "equivalent"
|
|
453
|
+
version = "1.0.2"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "errno"
|
|
459
|
+
version = "0.3.14"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"libc",
|
|
464
|
+
"windows-sys",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "ethnum"
|
|
469
|
+
version = "1.5.3"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "fast-float2"
|
|
475
|
+
version = "0.2.4"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "c6e8948ce679d00a02a94739ea185595dca7118ed04feb991127e443bd3d761f"
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "fastrand"
|
|
481
|
+
version = "2.5.0"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "find-msvc-tools"
|
|
487
|
+
version = "0.1.11"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "flate2"
|
|
493
|
+
version = "1.1.9"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"crc32fast",
|
|
498
|
+
"miniz_oxide",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "float_next_after"
|
|
503
|
+
version = "1.0.0"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "fnv"
|
|
509
|
+
version = "1.0.7"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "foldhash"
|
|
515
|
+
version = "0.2.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "futures-core"
|
|
521
|
+
version = "0.3.34"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "futures-task"
|
|
527
|
+
version = "0.3.34"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "futures-util"
|
|
533
|
+
version = "0.3.34"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"futures-core",
|
|
538
|
+
"futures-task",
|
|
539
|
+
"pin-project-lite",
|
|
540
|
+
"slab",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "generic-array"
|
|
545
|
+
version = "0.12.4"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"typenum",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "generic-array"
|
|
554
|
+
version = "0.13.3"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "f797e67af32588215eaaab8327027ee8e71b9dd0b2b26996aedf20c030fce309"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"typenum",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "generic-array"
|
|
563
|
+
version = "0.14.7"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"typenum",
|
|
568
|
+
"version_check",
|
|
569
|
+
]
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "geo"
|
|
573
|
+
version = "0.31.0"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "2fc1a1678e54befc9b4bcab6cd43b8e7f834ae8ea121118b0fd8c42747675b4a"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"earcutr",
|
|
578
|
+
"float_next_after",
|
|
579
|
+
"geo-types",
|
|
580
|
+
"geographiclib-rs",
|
|
581
|
+
"i_overlay",
|
|
582
|
+
"log",
|
|
583
|
+
"num-traits",
|
|
584
|
+
"robust",
|
|
585
|
+
"rstar 0.12.2",
|
|
586
|
+
"spade",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "geo-traits"
|
|
591
|
+
version = "0.3.0"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "2e7c353d12a704ccfab1ba8bfb1a7fe6cb18b665bf89d37f4f7890edcd260206"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"geo-types",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "geo-types"
|
|
600
|
+
version = "0.7.20"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "777d18aa0f12f8b285331cd867133ee14422b3f023f6d388034c47d43e28786a"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"approx",
|
|
605
|
+
"num-traits",
|
|
606
|
+
"rayon",
|
|
607
|
+
"rstar 0.10.0",
|
|
608
|
+
"rstar 0.11.0",
|
|
609
|
+
"rstar 0.12.2",
|
|
610
|
+
"rstar 0.13.0",
|
|
611
|
+
"rstar 0.8.4",
|
|
612
|
+
"rstar 0.9.3",
|
|
613
|
+
"serde",
|
|
614
|
+
"thiserror 2.0.20",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "geographiclib-rs"
|
|
619
|
+
version = "0.2.7"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "c5a7f08910fd98737a6eda7568e7c5e645093e073328eeef49758cfe8b0489c7"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"libm",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "geojson"
|
|
628
|
+
version = "0.24.2"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "e26f3c45b36fccc9cf2805e61d4da6bc4bbd5a3a9589b01afa3a40eff703bd79"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"geo-types",
|
|
633
|
+
"log",
|
|
634
|
+
"serde",
|
|
635
|
+
"serde_json",
|
|
636
|
+
"thiserror 2.0.20",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "geojson"
|
|
641
|
+
version = "1.0.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "510c094bfc76ea34d02eee00833254945b70491d79a9c0b050abed6eaa799ffb"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"geo-types",
|
|
646
|
+
"log",
|
|
647
|
+
"serde",
|
|
648
|
+
"serde_json",
|
|
649
|
+
"thiserror 2.0.20",
|
|
650
|
+
"tinyvec",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "getrandom"
|
|
655
|
+
version = "0.2.17"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"cfg-if",
|
|
660
|
+
"js-sys",
|
|
661
|
+
"libc",
|
|
662
|
+
"wasi",
|
|
663
|
+
"wasm-bindgen",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "getrandom"
|
|
668
|
+
version = "0.3.4"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"cfg-if",
|
|
673
|
+
"libc",
|
|
674
|
+
"r-efi 5.3.0",
|
|
675
|
+
"wasip2",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "getrandom"
|
|
680
|
+
version = "0.4.3"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"cfg-if",
|
|
685
|
+
"js-sys",
|
|
686
|
+
"libc",
|
|
687
|
+
"r-efi 6.0.0",
|
|
688
|
+
"rand_core 0.10.1",
|
|
689
|
+
"wasm-bindgen",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "glob"
|
|
694
|
+
version = "0.3.4"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "half"
|
|
700
|
+
version = "2.7.1"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"bytemuck",
|
|
705
|
+
"cfg-if",
|
|
706
|
+
"crunchy",
|
|
707
|
+
"num-traits",
|
|
708
|
+
"zerocopy",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "hash32"
|
|
713
|
+
version = "0.1.1"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"byteorder",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "hash32"
|
|
722
|
+
version = "0.2.1"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"byteorder",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "hash32"
|
|
731
|
+
version = "0.3.1"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"byteorder",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "hashbrown"
|
|
740
|
+
version = "0.16.1"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"allocator-api2",
|
|
745
|
+
"equivalent",
|
|
746
|
+
"foldhash",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "hashbrown"
|
|
751
|
+
version = "0.17.1"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"allocator-api2",
|
|
756
|
+
"equivalent",
|
|
757
|
+
"foldhash",
|
|
758
|
+
"rayon",
|
|
759
|
+
"serde",
|
|
760
|
+
"serde_core",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "heapless"
|
|
765
|
+
version = "0.6.1"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "634bd4d29cbf24424d0a4bfcbf80c6960129dc24424752a7d1d1390607023422"
|
|
768
|
+
dependencies = [
|
|
769
|
+
"as-slice",
|
|
770
|
+
"generic-array 0.14.7",
|
|
771
|
+
"hash32 0.1.1",
|
|
772
|
+
"stable_deref_trait",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "heapless"
|
|
777
|
+
version = "0.7.17"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"atomic-polyfill",
|
|
782
|
+
"hash32 0.2.1",
|
|
783
|
+
"rustc_version",
|
|
784
|
+
"spin",
|
|
785
|
+
"stable_deref_trait",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "heapless"
|
|
790
|
+
version = "0.8.0"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"hash32 0.3.1",
|
|
795
|
+
"stable_deref_trait",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "heck"
|
|
800
|
+
version = "0.5.0"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "hex"
|
|
806
|
+
version = "0.4.3"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "holos-bench"
|
|
812
|
+
version = "0.1.0"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"anyhow",
|
|
815
|
+
"holos-core",
|
|
816
|
+
"holos-engine",
|
|
817
|
+
"holos-holon",
|
|
818
|
+
"holos-security",
|
|
819
|
+
"holos-shacl",
|
|
820
|
+
"holos-stats",
|
|
821
|
+
"holos-store",
|
|
822
|
+
"oxrdf",
|
|
823
|
+
"oxrdfio",
|
|
824
|
+
"spareval",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "holos-cli"
|
|
829
|
+
version = "0.1.0"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"anyhow",
|
|
832
|
+
"holos-core",
|
|
833
|
+
"holos-engine",
|
|
834
|
+
"holos-security",
|
|
835
|
+
"holos-shacl",
|
|
836
|
+
"holos-stats",
|
|
837
|
+
"holos-store",
|
|
838
|
+
"oxrdf",
|
|
839
|
+
"oxrdfio",
|
|
840
|
+
"sparesults",
|
|
841
|
+
"spareval",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "holos-conformance"
|
|
846
|
+
version = "0.1.0"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"anyhow",
|
|
849
|
+
"holos-core",
|
|
850
|
+
"holos-engine",
|
|
851
|
+
"holos-security",
|
|
852
|
+
"holos-shacl",
|
|
853
|
+
"holos-store",
|
|
854
|
+
"oxrdf",
|
|
855
|
+
"oxrdfio",
|
|
856
|
+
"sparesults",
|
|
857
|
+
"spareval",
|
|
858
|
+
"spargebra",
|
|
859
|
+
"tempfile",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "holos-core"
|
|
864
|
+
version = "0.1.0"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"oxrdf",
|
|
867
|
+
"oxsdatatypes",
|
|
868
|
+
"proptest",
|
|
869
|
+
"thiserror 2.0.20",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "holos-engine"
|
|
874
|
+
version = "0.1.0"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"flate2",
|
|
877
|
+
"geo",
|
|
878
|
+
"geojson 0.24.2",
|
|
879
|
+
"holos-core",
|
|
880
|
+
"holos-security",
|
|
881
|
+
"holos-stats",
|
|
882
|
+
"holos-store",
|
|
883
|
+
"oxiri",
|
|
884
|
+
"oxrdf",
|
|
885
|
+
"oxrdfio",
|
|
886
|
+
"rustc-hash",
|
|
887
|
+
"sparesults",
|
|
888
|
+
"spareval",
|
|
889
|
+
"spargebra",
|
|
890
|
+
"spargeo",
|
|
891
|
+
"thiserror 2.0.20",
|
|
892
|
+
"wkt",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "holos-holon"
|
|
897
|
+
version = "0.1.0"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"holos-core",
|
|
900
|
+
"holos-engine",
|
|
901
|
+
"holos-security",
|
|
902
|
+
"holos-shacl",
|
|
903
|
+
"holos-store",
|
|
904
|
+
"oxrdf",
|
|
905
|
+
"oxrdfio",
|
|
906
|
+
"rustc-hash",
|
|
907
|
+
"spareval",
|
|
908
|
+
"thiserror 2.0.20",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "holos-python"
|
|
913
|
+
version = "0.1.0"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"holos-core",
|
|
916
|
+
"holos-engine",
|
|
917
|
+
"holos-security",
|
|
918
|
+
"holos-shacl",
|
|
919
|
+
"holos-store",
|
|
920
|
+
"oxrdf",
|
|
921
|
+
"oxrdfio",
|
|
922
|
+
"pyo3",
|
|
923
|
+
"sparesults",
|
|
924
|
+
"spareval",
|
|
925
|
+
"spargeo",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "holos-security"
|
|
930
|
+
version = "0.1.0"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"holos-core",
|
|
933
|
+
"holos-store",
|
|
934
|
+
"oxrdf",
|
|
935
|
+
"rustc-hash",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "holos-server"
|
|
940
|
+
version = "0.1.0"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"anyhow",
|
|
943
|
+
"holos-core",
|
|
944
|
+
"holos-engine",
|
|
945
|
+
"holos-security",
|
|
946
|
+
"holos-shacl",
|
|
947
|
+
"holos-stats",
|
|
948
|
+
"holos-store",
|
|
949
|
+
"oxrdf",
|
|
950
|
+
"oxrdfio",
|
|
951
|
+
"sparesults",
|
|
952
|
+
"spareval",
|
|
953
|
+
"tiny_http",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "holos-shacl"
|
|
958
|
+
version = "0.1.0"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"holos-core",
|
|
961
|
+
"holos-shacl-engine",
|
|
962
|
+
"holos-store",
|
|
963
|
+
"oxrdf",
|
|
964
|
+
"oxrdfio",
|
|
965
|
+
"oxsdatatypes",
|
|
966
|
+
"regex",
|
|
967
|
+
"rustc-hash",
|
|
968
|
+
"thiserror 2.0.20",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "holos-shacl-engine"
|
|
973
|
+
version = "0.1.0"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"anyhow",
|
|
976
|
+
"flate2",
|
|
977
|
+
"foldhash",
|
|
978
|
+
"hashbrown 0.16.1",
|
|
979
|
+
"oxrdf",
|
|
980
|
+
"oxrdfio",
|
|
981
|
+
"oxsdatatypes",
|
|
982
|
+
"oxttl",
|
|
983
|
+
"rayon",
|
|
984
|
+
"regex",
|
|
985
|
+
"spareval",
|
|
986
|
+
"spargebra",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "holos-stats"
|
|
991
|
+
version = "0.1.0"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"holos-core",
|
|
994
|
+
"holos-engine",
|
|
995
|
+
"holos-security",
|
|
996
|
+
"holos-store",
|
|
997
|
+
"oxrdf",
|
|
998
|
+
"oxrdfio",
|
|
999
|
+
"rustc-hash",
|
|
1000
|
+
"spareval",
|
|
1001
|
+
"spargebra",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "holos-store"
|
|
1006
|
+
version = "0.1.0"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"holos-core",
|
|
1009
|
+
"oxrdf",
|
|
1010
|
+
"rocksdb",
|
|
1011
|
+
"rustc-hash",
|
|
1012
|
+
"tempfile",
|
|
1013
|
+
"thiserror 2.0.20",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "holos-tabular"
|
|
1018
|
+
version = "0.1.0"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"csv",
|
|
1021
|
+
"holos-core",
|
|
1022
|
+
"holos-engine",
|
|
1023
|
+
"holos-security",
|
|
1024
|
+
"holos-store",
|
|
1025
|
+
"oxrdf",
|
|
1026
|
+
"polars",
|
|
1027
|
+
"spareval",
|
|
1028
|
+
"spargebra",
|
|
1029
|
+
"thiserror 2.0.20",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "httpdate"
|
|
1034
|
+
version = "1.0.3"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "i_float"
|
|
1040
|
+
version = "1.15.0"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "010025c2c532c8d82e42d0b8bb5184afa449fa6f06c709ea9adcb16c49ae405b"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"libm",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "i_key_sort"
|
|
1049
|
+
version = "0.6.0"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "9190f86706ca38ac8add223b2aed8b1330002b5cdbbce28fb58b10914d38fc27"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "i_overlay"
|
|
1055
|
+
version = "4.0.7"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "413183068e6e0289e18d7d0a1f661b81546e6918d5453a44570b9ab30cbed1b3"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"i_float",
|
|
1060
|
+
"i_key_sort",
|
|
1061
|
+
"i_shape",
|
|
1062
|
+
"i_tree",
|
|
1063
|
+
"rayon",
|
|
1064
|
+
]
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "i_shape"
|
|
1068
|
+
version = "1.14.0"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "1ea154b742f7d43dae2897fcd5ead86bc7b5eefcedd305a7ebf9f69d44d61082"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"i_float",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "i_tree"
|
|
1077
|
+
version = "0.16.0"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "35e6d558e6d4c7b82bc51d9c771e7a927862a161a7d87bf2b0541450e0e20915"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "indexmap"
|
|
1083
|
+
version = "2.14.0"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"equivalent",
|
|
1088
|
+
"hashbrown 0.17.1",
|
|
1089
|
+
"serde",
|
|
1090
|
+
"serde_core",
|
|
1091
|
+
]
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "itertools"
|
|
1095
|
+
version = "0.11.0"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"either",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "itertools"
|
|
1104
|
+
version = "0.13.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"either",
|
|
1109
|
+
]
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "itoa"
|
|
1113
|
+
version = "1.0.18"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "jobserver"
|
|
1119
|
+
version = "0.1.35"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1122
|
+
dependencies = [
|
|
1123
|
+
"getrandom 0.4.3",
|
|
1124
|
+
"libc",
|
|
1125
|
+
]
|
|
1126
|
+
|
|
1127
|
+
[[package]]
|
|
1128
|
+
name = "js-sys"
|
|
1129
|
+
version = "0.3.104"
|
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1131
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
1132
|
+
dependencies = [
|
|
1133
|
+
"cfg-if",
|
|
1134
|
+
"futures-util",
|
|
1135
|
+
"wasm-bindgen",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "json-event-parser"
|
|
1140
|
+
version = "0.2.3"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "574b0cd5e90ee2ba03a66d0611fc9a09c9a0c28b2ecc2dc8a181dd31a53ca5d7"
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "libc"
|
|
1146
|
+
version = "0.2.189"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "libloading"
|
|
1152
|
+
version = "0.8.9"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"cfg-if",
|
|
1157
|
+
"windows-link",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "libm"
|
|
1162
|
+
version = "0.2.16"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "librocksdb-sys"
|
|
1168
|
+
version = "0.17.3+10.4.2"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"bindgen",
|
|
1173
|
+
"bzip2-sys",
|
|
1174
|
+
"cc",
|
|
1175
|
+
"libc",
|
|
1176
|
+
"libz-sys",
|
|
1177
|
+
"lz4-sys",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "libz-sys"
|
|
1182
|
+
version = "1.1.29"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"cc",
|
|
1187
|
+
"pkg-config",
|
|
1188
|
+
"vcpkg",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "linux-raw-sys"
|
|
1193
|
+
version = "0.12.1"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "lock_api"
|
|
1199
|
+
version = "0.4.14"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"scopeguard",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "log"
|
|
1208
|
+
version = "0.4.34"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "lz4-sys"
|
|
1214
|
+
version = "1.11.1+lz4-1.10.0"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
|
|
1217
|
+
dependencies = [
|
|
1218
|
+
"cc",
|
|
1219
|
+
"libc",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "md-5"
|
|
1224
|
+
version = "0.10.6"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"cfg-if",
|
|
1229
|
+
"digest",
|
|
1230
|
+
]
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "memchr"
|
|
1234
|
+
version = "2.8.3"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "minimal-lexical"
|
|
1240
|
+
version = "0.2.1"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "miniz_oxide"
|
|
1246
|
+
version = "0.8.9"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"adler2",
|
|
1251
|
+
"simd-adler32",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "mio"
|
|
1256
|
+
version = "1.2.2"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"libc",
|
|
1261
|
+
"wasi",
|
|
1262
|
+
"windows-sys",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "nom"
|
|
1267
|
+
version = "7.1.3"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"memchr",
|
|
1272
|
+
"minimal-lexical",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "num-derive"
|
|
1277
|
+
version = "0.4.2"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"proc-macro2",
|
|
1282
|
+
"quote",
|
|
1283
|
+
"syn 2.0.119",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "num-traits"
|
|
1288
|
+
version = "0.2.19"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"autocfg",
|
|
1293
|
+
"libm",
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "object"
|
|
1298
|
+
version = "0.39.1"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"memchr",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "once_cell"
|
|
1307
|
+
version = "1.21.4"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "oxilangtag"
|
|
1313
|
+
version = "0.1.6"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "5d3b4eb570abd4a1dcb062c31fd37b832264d9dc7292c3e69acfe926c87b063f"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"serde",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "oxiri"
|
|
1322
|
+
version = "0.2.11"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "oxjsonld"
|
|
1328
|
+
version = "0.2.5"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "f6e1380a504a8571763f13b8bcad629ff90d0300d47d8a519f3c6c599625840e"
|
|
1331
|
+
dependencies = [
|
|
1332
|
+
"json-event-parser",
|
|
1333
|
+
"oxiri",
|
|
1334
|
+
"oxrdf",
|
|
1335
|
+
"ryu-js",
|
|
1336
|
+
"thiserror 2.0.20",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "oxrdf"
|
|
1341
|
+
version = "0.3.3"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "0afd5c28e4a399c57ee2bc3accd40c7b671fdc7b6537499f14e95b265af7d7e0"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"hex",
|
|
1346
|
+
"oxilangtag",
|
|
1347
|
+
"oxiri",
|
|
1348
|
+
"oxsdatatypes",
|
|
1349
|
+
"rand 0.9.5",
|
|
1350
|
+
"sha2",
|
|
1351
|
+
"thiserror 2.0.20",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "oxrdfio"
|
|
1356
|
+
version = "0.2.5"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "696223589ecbcab06b1a5df9b527dc25b0c656160cca38752fdb3878a5d3dd03"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"oxjsonld",
|
|
1361
|
+
"oxrdf",
|
|
1362
|
+
"oxrdfxml",
|
|
1363
|
+
"oxttl",
|
|
1364
|
+
"thiserror 2.0.20",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "oxrdfxml"
|
|
1369
|
+
version = "0.2.3"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "cd5516ae083d09bc57ec65ed5ee97701481725de6ffaa83d968ab42a96157ba1"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"oxilangtag",
|
|
1374
|
+
"oxiri",
|
|
1375
|
+
"oxrdf",
|
|
1376
|
+
"quick-xml",
|
|
1377
|
+
"thiserror 2.0.20",
|
|
1378
|
+
]
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "oxsdatatypes"
|
|
1382
|
+
version = "0.2.2"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "06fa874d87eae638daae9b4e3198864fe2cce68589f227c0b2cf5b62b1530516"
|
|
1385
|
+
dependencies = [
|
|
1386
|
+
"thiserror 2.0.20",
|
|
1387
|
+
]
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "oxttl"
|
|
1391
|
+
version = "0.2.3"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "f03fd471bd54c23d76631c0a2677aa4bb308d905f6e491ee35dcb0732b7c5c6c"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"memchr",
|
|
1396
|
+
"oxilangtag",
|
|
1397
|
+
"oxiri",
|
|
1398
|
+
"oxrdf",
|
|
1399
|
+
"thiserror 2.0.20",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "parking_lot"
|
|
1404
|
+
version = "0.12.5"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"lock_api",
|
|
1409
|
+
"parking_lot_core",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "parking_lot_core"
|
|
1414
|
+
version = "0.9.12"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1417
|
+
dependencies = [
|
|
1418
|
+
"cfg-if",
|
|
1419
|
+
"libc",
|
|
1420
|
+
"redox_syscall",
|
|
1421
|
+
"smallvec",
|
|
1422
|
+
"windows-link",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "pdqselect"
|
|
1427
|
+
version = "0.1.0"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "peg"
|
|
1433
|
+
version = "0.8.6"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "0aad070be5b63aa72103f2fcdd70a83adbd5e90112ce5b574171ff1c65501773"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"peg-macros",
|
|
1438
|
+
"peg-runtime",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "peg-macros"
|
|
1443
|
+
version = "0.8.6"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "ddd8ef6825cae95355031ae26a99b616a2a21f22ba2de0197c43dfb05acbe7ee"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"peg-runtime",
|
|
1448
|
+
"proc-macro2",
|
|
1449
|
+
"quote",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "peg-runtime"
|
|
1454
|
+
version = "0.8.6"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "7011d97b484a5ebdc4b1fdb3b12d5e4bbbea56e9d22b688f2e79e04b65a7d8a6"
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "phf"
|
|
1460
|
+
version = "0.12.1"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"phf_shared",
|
|
1465
|
+
]
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "phf_shared"
|
|
1469
|
+
version = "0.12.1"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"siphasher",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "pin-project-lite"
|
|
1478
|
+
version = "0.2.17"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "pkg-config"
|
|
1484
|
+
version = "0.3.34"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
1487
|
+
|
|
1488
|
+
[[package]]
|
|
1489
|
+
name = "polars"
|
|
1490
|
+
version = "0.55.2"
|
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
+
checksum = "d52d3ed4e6b3917427f6d3c43edbd2740babe228bb4ccfa3431eac105844045d"
|
|
1493
|
+
dependencies = [
|
|
1494
|
+
"getrandom 0.2.17",
|
|
1495
|
+
"getrandom 0.4.3",
|
|
1496
|
+
"polars-arrow",
|
|
1497
|
+
"polars-buffer",
|
|
1498
|
+
"polars-compute",
|
|
1499
|
+
"polars-core",
|
|
1500
|
+
"polars-error",
|
|
1501
|
+
"polars-utils",
|
|
1502
|
+
"version_check",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "polars-arrow"
|
|
1507
|
+
version = "0.55.2"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "c5ab55460ca2553d1a2bbaf2046998cfbbb685bc18d1e168b4367b63301eb271"
|
|
1510
|
+
dependencies = [
|
|
1511
|
+
"bitflags",
|
|
1512
|
+
"bytemuck",
|
|
1513
|
+
"bytes",
|
|
1514
|
+
"chrono",
|
|
1515
|
+
"chrono-tz",
|
|
1516
|
+
"dyn-clone",
|
|
1517
|
+
"either",
|
|
1518
|
+
"ethnum",
|
|
1519
|
+
"getrandom 0.2.17",
|
|
1520
|
+
"getrandom 0.4.3",
|
|
1521
|
+
"half",
|
|
1522
|
+
"hashbrown 0.17.1",
|
|
1523
|
+
"num-traits",
|
|
1524
|
+
"polars-buffer",
|
|
1525
|
+
"polars-error",
|
|
1526
|
+
"polars-schema",
|
|
1527
|
+
"polars-utils",
|
|
1528
|
+
"simdutf8",
|
|
1529
|
+
"streaming-iterator",
|
|
1530
|
+
"strum_macros",
|
|
1531
|
+
"version_check",
|
|
1532
|
+
]
|
|
1533
|
+
|
|
1534
|
+
[[package]]
|
|
1535
|
+
name = "polars-async"
|
|
1536
|
+
version = "0.55.2"
|
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
+
checksum = "e8f484cb2db25ff605107a9f8dca8d5a47d25770cf5e04ceb75c0ef4d6bc2418"
|
|
1539
|
+
dependencies = [
|
|
1540
|
+
"atomic-waker",
|
|
1541
|
+
"crossbeam-channel",
|
|
1542
|
+
"crossbeam-deque",
|
|
1543
|
+
"crossbeam-utils",
|
|
1544
|
+
"parking_lot",
|
|
1545
|
+
"pin-project-lite",
|
|
1546
|
+
"polars-config",
|
|
1547
|
+
"polars-error",
|
|
1548
|
+
"polars-utils",
|
|
1549
|
+
"rand 0.10.2",
|
|
1550
|
+
"slotmap",
|
|
1551
|
+
"tokio",
|
|
1552
|
+
]
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "polars-buffer"
|
|
1556
|
+
version = "0.55.2"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "485320cdb93ad4b4725fea30e5d4e59c32c8ad62420dbda7830eb96080e47363"
|
|
1559
|
+
dependencies = [
|
|
1560
|
+
"bytemuck",
|
|
1561
|
+
"either",
|
|
1562
|
+
"polars-utils",
|
|
1563
|
+
"version_check",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "polars-compute"
|
|
1568
|
+
version = "0.55.2"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "0b54be44ceacf1028fd8219b34c791ed4e1db852950f3eb7e10ba9bf63bbdb50"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"atoi_simd",
|
|
1573
|
+
"bytemuck",
|
|
1574
|
+
"chrono",
|
|
1575
|
+
"either",
|
|
1576
|
+
"fast-float2",
|
|
1577
|
+
"hashbrown 0.17.1",
|
|
1578
|
+
"itoa",
|
|
1579
|
+
"num-traits",
|
|
1580
|
+
"polars-arrow",
|
|
1581
|
+
"polars-buffer",
|
|
1582
|
+
"polars-error",
|
|
1583
|
+
"polars-utils",
|
|
1584
|
+
"rand 0.10.2",
|
|
1585
|
+
"strength_reduce",
|
|
1586
|
+
"strum_macros",
|
|
1587
|
+
"version_check",
|
|
1588
|
+
"zmij",
|
|
1589
|
+
]
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "polars-config"
|
|
1593
|
+
version = "0.55.2"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "13dcd35a686654570d9642ed4f3c55eccad75911024c95d6b1459663cfb83bc1"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"polars-error",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "polars-core"
|
|
1602
|
+
version = "0.55.2"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "ac24a25f4c2696089bb9059e4b45338ea74833a79b9552fef066d6f2cfb3aaed"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"bitflags",
|
|
1607
|
+
"boxcar",
|
|
1608
|
+
"bytemuck",
|
|
1609
|
+
"either",
|
|
1610
|
+
"getrandom 0.4.3",
|
|
1611
|
+
"hashbrown 0.17.1",
|
|
1612
|
+
"indexmap",
|
|
1613
|
+
"itoa",
|
|
1614
|
+
"num-traits",
|
|
1615
|
+
"polars-arrow",
|
|
1616
|
+
"polars-async",
|
|
1617
|
+
"polars-buffer",
|
|
1618
|
+
"polars-compute",
|
|
1619
|
+
"polars-config",
|
|
1620
|
+
"polars-dtype",
|
|
1621
|
+
"polars-error",
|
|
1622
|
+
"polars-row",
|
|
1623
|
+
"polars-schema",
|
|
1624
|
+
"polars-utils",
|
|
1625
|
+
"rayon",
|
|
1626
|
+
"strum_macros",
|
|
1627
|
+
"tokio",
|
|
1628
|
+
"uuid",
|
|
1629
|
+
"version_check",
|
|
1630
|
+
"xxhash-rust",
|
|
1631
|
+
]
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "polars-dtype"
|
|
1635
|
+
version = "0.55.2"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "768f9d1f996eebc7f9b0d7686d9147cf4b4f217fd907c4b90f4448dcee01ea05"
|
|
1638
|
+
dependencies = [
|
|
1639
|
+
"boxcar",
|
|
1640
|
+
"hashbrown 0.17.1",
|
|
1641
|
+
"polars-arrow",
|
|
1642
|
+
"polars-error",
|
|
1643
|
+
"polars-utils",
|
|
1644
|
+
"uuid",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "polars-error"
|
|
1649
|
+
version = "0.55.2"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "8f6995c2121c31687704fae5281517e29bbd34838fcf8dd15c8e8ae526bb6624"
|
|
1652
|
+
dependencies = [
|
|
1653
|
+
"parking_lot",
|
|
1654
|
+
"signal-hook",
|
|
1655
|
+
"simdutf8",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "polars-row"
|
|
1660
|
+
version = "0.55.2"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "71ac05187ac33abcfe9b7c997f0cd2ea9bfe8e04e9018d343e16fb2b64e2f5bb"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"bitflags",
|
|
1665
|
+
"bytemuck",
|
|
1666
|
+
"polars-arrow",
|
|
1667
|
+
"polars-buffer",
|
|
1668
|
+
"polars-compute",
|
|
1669
|
+
"polars-dtype",
|
|
1670
|
+
"polars-error",
|
|
1671
|
+
"polars-utils",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "polars-schema"
|
|
1676
|
+
version = "0.55.2"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "dacc161d9b647e4b936836a07d731cec06e2ed2c7d51a7f7565b5ce7767dcf40"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"indexmap",
|
|
1681
|
+
"polars-error",
|
|
1682
|
+
"polars-utils",
|
|
1683
|
+
"version_check",
|
|
1684
|
+
]
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "polars-utils"
|
|
1688
|
+
version = "0.55.2"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "88aa5ed59ba6f52190b3368d3d9536f95c8c2ab161ee08a22bb3f4319a11a9bd"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"argminmax",
|
|
1693
|
+
"bytemuck",
|
|
1694
|
+
"bytes",
|
|
1695
|
+
"compact_str",
|
|
1696
|
+
"either",
|
|
1697
|
+
"foldhash",
|
|
1698
|
+
"half",
|
|
1699
|
+
"hashbrown 0.17.1",
|
|
1700
|
+
"indexmap",
|
|
1701
|
+
"libc",
|
|
1702
|
+
"num-derive",
|
|
1703
|
+
"num-traits",
|
|
1704
|
+
"polars-config",
|
|
1705
|
+
"polars-error",
|
|
1706
|
+
"rand 0.10.2",
|
|
1707
|
+
"raw-cpuid",
|
|
1708
|
+
"rayon",
|
|
1709
|
+
"regex",
|
|
1710
|
+
"slotmap",
|
|
1711
|
+
"stacker",
|
|
1712
|
+
"uuid",
|
|
1713
|
+
"version_check",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "portable-atomic"
|
|
1718
|
+
version = "1.15.0"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "ppv-lite86"
|
|
1724
|
+
version = "0.2.21"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"zerocopy",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "proc-macro2"
|
|
1733
|
+
version = "1.0.107"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"unicode-ident",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "proptest"
|
|
1742
|
+
version = "1.11.0"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
1745
|
+
dependencies = [
|
|
1746
|
+
"bit-set",
|
|
1747
|
+
"bit-vec",
|
|
1748
|
+
"bitflags",
|
|
1749
|
+
"num-traits",
|
|
1750
|
+
"rand 0.9.5",
|
|
1751
|
+
"rand_chacha",
|
|
1752
|
+
"rand_xorshift",
|
|
1753
|
+
"regex-syntax",
|
|
1754
|
+
"rusty-fork",
|
|
1755
|
+
"tempfile",
|
|
1756
|
+
"unarray",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "psm"
|
|
1761
|
+
version = "0.1.32"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "4dcd034599e63b970727f70d79e02d62390a4a84f7c6b827c27c46d5ac3fa622"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"ar_archive_writer",
|
|
1766
|
+
"cc",
|
|
1767
|
+
]
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "pyo3"
|
|
1771
|
+
version = "0.29.2"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"libc",
|
|
1776
|
+
"once_cell",
|
|
1777
|
+
"portable-atomic",
|
|
1778
|
+
"pyo3-build-config",
|
|
1779
|
+
"pyo3-ffi",
|
|
1780
|
+
"pyo3-macros",
|
|
1781
|
+
]
|
|
1782
|
+
|
|
1783
|
+
[[package]]
|
|
1784
|
+
name = "pyo3-build-config"
|
|
1785
|
+
version = "0.29.2"
|
|
1786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
1788
|
+
dependencies = [
|
|
1789
|
+
"target-lexicon",
|
|
1790
|
+
]
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "pyo3-ffi"
|
|
1794
|
+
version = "0.29.2"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"libc",
|
|
1799
|
+
"pyo3-build-config",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "pyo3-macros"
|
|
1804
|
+
version = "0.29.2"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"proc-macro2",
|
|
1809
|
+
"pyo3-macros-backend",
|
|
1810
|
+
"quote",
|
|
1811
|
+
"syn 2.0.119",
|
|
1812
|
+
]
|
|
1813
|
+
|
|
1814
|
+
[[package]]
|
|
1815
|
+
name = "pyo3-macros-backend"
|
|
1816
|
+
version = "0.29.2"
|
|
1817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
1819
|
+
dependencies = [
|
|
1820
|
+
"heck",
|
|
1821
|
+
"proc-macro2",
|
|
1822
|
+
"quote",
|
|
1823
|
+
"syn 2.0.119",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "quick-error"
|
|
1828
|
+
version = "1.2.3"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "quick-xml"
|
|
1834
|
+
version = "0.37.5"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"memchr",
|
|
1839
|
+
]
|
|
1840
|
+
|
|
1841
|
+
[[package]]
|
|
1842
|
+
name = "quote"
|
|
1843
|
+
version = "1.0.47"
|
|
1844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1845
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1846
|
+
dependencies = [
|
|
1847
|
+
"proc-macro2",
|
|
1848
|
+
]
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "r-efi"
|
|
1852
|
+
version = "5.3.0"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "r-efi"
|
|
1858
|
+
version = "6.0.0"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "rand"
|
|
1864
|
+
version = "0.9.5"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"rand_chacha",
|
|
1869
|
+
"rand_core 0.9.5",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "rand"
|
|
1874
|
+
version = "0.10.2"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1877
|
+
dependencies = [
|
|
1878
|
+
"chacha20",
|
|
1879
|
+
"getrandom 0.4.3",
|
|
1880
|
+
"rand_core 0.10.1",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "rand_chacha"
|
|
1885
|
+
version = "0.9.0"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1888
|
+
dependencies = [
|
|
1889
|
+
"ppv-lite86",
|
|
1890
|
+
"rand_core 0.9.5",
|
|
1891
|
+
]
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "rand_core"
|
|
1895
|
+
version = "0.9.5"
|
|
1896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1898
|
+
dependencies = [
|
|
1899
|
+
"getrandom 0.3.4",
|
|
1900
|
+
]
|
|
1901
|
+
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "rand_core"
|
|
1904
|
+
version = "0.10.1"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1907
|
+
|
|
1908
|
+
[[package]]
|
|
1909
|
+
name = "rand_xorshift"
|
|
1910
|
+
version = "0.4.0"
|
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
1913
|
+
dependencies = [
|
|
1914
|
+
"rand_core 0.9.5",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "raw-cpuid"
|
|
1919
|
+
version = "11.6.0"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"bitflags",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "rayon"
|
|
1928
|
+
version = "1.12.0"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"either",
|
|
1933
|
+
"rayon-core",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "rayon-core"
|
|
1938
|
+
version = "1.13.0"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1941
|
+
dependencies = [
|
|
1942
|
+
"crossbeam-deque",
|
|
1943
|
+
"crossbeam-utils",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "redox_syscall"
|
|
1948
|
+
version = "0.5.18"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"bitflags",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "regex"
|
|
1957
|
+
version = "1.13.1"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"aho-corasick",
|
|
1962
|
+
"memchr",
|
|
1963
|
+
"regex-automata",
|
|
1964
|
+
"regex-syntax",
|
|
1965
|
+
]
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "regex-automata"
|
|
1969
|
+
version = "0.4.18"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"aho-corasick",
|
|
1974
|
+
"memchr",
|
|
1975
|
+
"regex-syntax",
|
|
1976
|
+
]
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "regex-syntax"
|
|
1980
|
+
version = "0.8.11"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "robust"
|
|
1986
|
+
version = "1.2.0"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
|
|
1989
|
+
|
|
1990
|
+
[[package]]
|
|
1991
|
+
name = "rocksdb"
|
|
1992
|
+
version = "0.24.0"
|
|
1993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
+
checksum = "ddb7af00d2b17dbd07d82c0063e25411959748ff03e8d4f96134c2ff41fce34f"
|
|
1995
|
+
dependencies = [
|
|
1996
|
+
"libc",
|
|
1997
|
+
"librocksdb-sys",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "rstar"
|
|
2002
|
+
version = "0.8.4"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "3a45c0e8804d37e4d97e55c6f258bc9ad9c5ee7b07437009dd152d764949a27c"
|
|
2005
|
+
dependencies = [
|
|
2006
|
+
"heapless 0.6.1",
|
|
2007
|
+
"num-traits",
|
|
2008
|
+
"pdqselect",
|
|
2009
|
+
"serde",
|
|
2010
|
+
"smallvec",
|
|
2011
|
+
]
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "rstar"
|
|
2015
|
+
version = "0.9.3"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "b40f1bfe5acdab44bc63e6699c28b74f75ec43afb59f3eda01e145aff86a25fa"
|
|
2018
|
+
dependencies = [
|
|
2019
|
+
"heapless 0.7.17",
|
|
2020
|
+
"num-traits",
|
|
2021
|
+
"serde",
|
|
2022
|
+
"smallvec",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "rstar"
|
|
2027
|
+
version = "0.10.0"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "1f39465655a1e3d8ae79c6d9e007f4953bfc5d55297602df9dc38f9ae9f1359a"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"heapless 0.7.17",
|
|
2032
|
+
"num-traits",
|
|
2033
|
+
"serde",
|
|
2034
|
+
"smallvec",
|
|
2035
|
+
]
|
|
2036
|
+
|
|
2037
|
+
[[package]]
|
|
2038
|
+
name = "rstar"
|
|
2039
|
+
version = "0.11.0"
|
|
2040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
+
checksum = "73111312eb7a2287d229f06c00ff35b51ddee180f017ab6dec1f69d62ac098d6"
|
|
2042
|
+
dependencies = [
|
|
2043
|
+
"heapless 0.7.17",
|
|
2044
|
+
"num-traits",
|
|
2045
|
+
"serde",
|
|
2046
|
+
"smallvec",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "rstar"
|
|
2051
|
+
version = "0.12.2"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"heapless 0.8.0",
|
|
2056
|
+
"num-traits",
|
|
2057
|
+
"serde",
|
|
2058
|
+
"smallvec",
|
|
2059
|
+
]
|
|
2060
|
+
|
|
2061
|
+
[[package]]
|
|
2062
|
+
name = "rstar"
|
|
2063
|
+
version = "0.13.0"
|
|
2064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
|
+
checksum = "5912b862fa5ffb462607bfd1e35036c458c537921f508c8235a83d5f3987edfe"
|
|
2066
|
+
dependencies = [
|
|
2067
|
+
"heapless 0.8.0",
|
|
2068
|
+
"num-traits",
|
|
2069
|
+
"serde",
|
|
2070
|
+
"smallvec",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "rustc-hash"
|
|
2075
|
+
version = "2.1.3"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "rustc_version"
|
|
2081
|
+
version = "0.4.1"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2084
|
+
dependencies = [
|
|
2085
|
+
"semver",
|
|
2086
|
+
]
|
|
2087
|
+
|
|
2088
|
+
[[package]]
|
|
2089
|
+
name = "rustix"
|
|
2090
|
+
version = "1.1.4"
|
|
2091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2092
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2093
|
+
dependencies = [
|
|
2094
|
+
"bitflags",
|
|
2095
|
+
"errno",
|
|
2096
|
+
"libc",
|
|
2097
|
+
"linux-raw-sys",
|
|
2098
|
+
"windows-sys",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "rustversion"
|
|
2103
|
+
version = "1.0.23"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "rusty-fork"
|
|
2109
|
+
version = "0.3.1"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"fnv",
|
|
2114
|
+
"quick-error",
|
|
2115
|
+
"tempfile",
|
|
2116
|
+
"wait-timeout",
|
|
2117
|
+
]
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "ryu"
|
|
2121
|
+
version = "1.0.23"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2124
|
+
|
|
2125
|
+
[[package]]
|
|
2126
|
+
name = "ryu-js"
|
|
2127
|
+
version = "1.0.3"
|
|
2128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
+
checksum = "04d056b875a9d2e6cb9a61d127afee9ac5999b9f87bcb32079d1318e505be714"
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "scopeguard"
|
|
2133
|
+
version = "1.2.0"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "semver"
|
|
2139
|
+
version = "1.0.28"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "serde"
|
|
2145
|
+
version = "1.0.229"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2148
|
+
dependencies = [
|
|
2149
|
+
"serde_core",
|
|
2150
|
+
"serde_derive",
|
|
2151
|
+
]
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "serde_core"
|
|
2155
|
+
version = "1.0.229"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"serde_derive",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "serde_derive"
|
|
2164
|
+
version = "1.0.229"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"proc-macro2",
|
|
2169
|
+
"quote",
|
|
2170
|
+
"syn 3.0.3",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "serde_json"
|
|
2175
|
+
version = "1.0.151"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"itoa",
|
|
2180
|
+
"memchr",
|
|
2181
|
+
"serde",
|
|
2182
|
+
"serde_core",
|
|
2183
|
+
"zmij",
|
|
2184
|
+
]
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "sha1"
|
|
2188
|
+
version = "0.10.7"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
2191
|
+
dependencies = [
|
|
2192
|
+
"cfg-if",
|
|
2193
|
+
"cpufeatures 0.2.17",
|
|
2194
|
+
"digest",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "sha2"
|
|
2199
|
+
version = "0.10.9"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"cfg-if",
|
|
2204
|
+
"cpufeatures 0.2.17",
|
|
2205
|
+
"digest",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "shlex"
|
|
2210
|
+
version = "1.3.0"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2213
|
+
|
|
2214
|
+
[[package]]
|
|
2215
|
+
name = "shlex"
|
|
2216
|
+
version = "2.0.1"
|
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "signal-hook"
|
|
2222
|
+
version = "0.4.4"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"libc",
|
|
2227
|
+
"signal-hook-registry",
|
|
2228
|
+
]
|
|
2229
|
+
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "signal-hook-registry"
|
|
2232
|
+
version = "1.4.8"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2235
|
+
dependencies = [
|
|
2236
|
+
"errno",
|
|
2237
|
+
"libc",
|
|
2238
|
+
]
|
|
2239
|
+
|
|
2240
|
+
[[package]]
|
|
2241
|
+
name = "simd-adler32"
|
|
2242
|
+
version = "0.3.10"
|
|
2243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "simdutf8"
|
|
2248
|
+
version = "0.1.5"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "siphasher"
|
|
2254
|
+
version = "1.0.3"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "slab"
|
|
2260
|
+
version = "0.4.12"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "slotmap"
|
|
2266
|
+
version = "1.1.1"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
2269
|
+
dependencies = [
|
|
2270
|
+
"version_check",
|
|
2271
|
+
]
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "smallvec"
|
|
2275
|
+
version = "1.15.2"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "socket2"
|
|
2281
|
+
version = "0.6.5"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"libc",
|
|
2286
|
+
"windows-sys",
|
|
2287
|
+
]
|
|
2288
|
+
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "spade"
|
|
2291
|
+
version = "2.15.1"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "9699399fd9349b00b184f5635b074f9ec93afffef30c853f8c875b32c0f8c7fa"
|
|
2294
|
+
dependencies = [
|
|
2295
|
+
"hashbrown 0.16.1",
|
|
2296
|
+
"num-traits",
|
|
2297
|
+
"robust",
|
|
2298
|
+
"smallvec",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "sparesults"
|
|
2303
|
+
version = "0.3.3"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "7e13362decdcbeb3fefadff1631238c835c112027221e83d217cc5779f5a81c2"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"json-event-parser",
|
|
2308
|
+
"memchr",
|
|
2309
|
+
"oxrdf",
|
|
2310
|
+
"quick-xml",
|
|
2311
|
+
"thiserror 2.0.20",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "spareval"
|
|
2316
|
+
version = "0.2.6"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "c8eab80b96dc836e4cf8fda72daa67ccc0244dc5303be5d4566e8fd04adbdde5"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"hex",
|
|
2321
|
+
"json-event-parser",
|
|
2322
|
+
"md-5",
|
|
2323
|
+
"oxiri",
|
|
2324
|
+
"oxrdf",
|
|
2325
|
+
"oxsdatatypes",
|
|
2326
|
+
"rand 0.9.5",
|
|
2327
|
+
"regex",
|
|
2328
|
+
"rustc-hash",
|
|
2329
|
+
"sha1",
|
|
2330
|
+
"sha2",
|
|
2331
|
+
"sparesults",
|
|
2332
|
+
"spargebra",
|
|
2333
|
+
"sparopt",
|
|
2334
|
+
"thiserror 2.0.20",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "spargebra"
|
|
2339
|
+
version = "0.4.6"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "46715eb957d1fe960cbbc0b713da8f78e2cb19df315b48fb09c9467a1c84f656"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"oxilangtag",
|
|
2344
|
+
"oxiri",
|
|
2345
|
+
"oxrdf",
|
|
2346
|
+
"peg",
|
|
2347
|
+
"rand 0.9.5",
|
|
2348
|
+
"thiserror 2.0.20",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "spargeo"
|
|
2353
|
+
version = "0.5.5"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "0df30107640c38a3fb894fce2274edb3df2396f16f5a4ae7282fb5935a74350a"
|
|
2356
|
+
dependencies = [
|
|
2357
|
+
"geo",
|
|
2358
|
+
"geojson 1.0.0",
|
|
2359
|
+
"oxrdf",
|
|
2360
|
+
"wkt",
|
|
2361
|
+
]
|
|
2362
|
+
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "sparopt"
|
|
2365
|
+
version = "0.3.6"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "aed7a854b8ea67618f8ce69aabb0e904d7704226060e9d5a2930eb3136c3fa3b"
|
|
2368
|
+
dependencies = [
|
|
2369
|
+
"oxrdf",
|
|
2370
|
+
"rand 0.9.5",
|
|
2371
|
+
"spargebra",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "spin"
|
|
2376
|
+
version = "0.9.9"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"lock_api",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "stable_deref_trait"
|
|
2385
|
+
version = "1.2.1"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "stacker"
|
|
2391
|
+
version = "0.1.25"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "707f49d46706bacf8a2b00d51dace3f9de527c13eec3778f570c411f89e69967"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"cc",
|
|
2396
|
+
"cfg-if",
|
|
2397
|
+
"libc",
|
|
2398
|
+
"psm",
|
|
2399
|
+
"windows-sys",
|
|
2400
|
+
]
|
|
2401
|
+
|
|
2402
|
+
[[package]]
|
|
2403
|
+
name = "static_assertions"
|
|
2404
|
+
version = "1.1.0"
|
|
2405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2406
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2407
|
+
|
|
2408
|
+
[[package]]
|
|
2409
|
+
name = "streaming-iterator"
|
|
2410
|
+
version = "0.1.9"
|
|
2411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
2413
|
+
|
|
2414
|
+
[[package]]
|
|
2415
|
+
name = "strength_reduce"
|
|
2416
|
+
version = "0.2.4"
|
|
2417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "strum_macros"
|
|
2422
|
+
version = "0.28.0"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"heck",
|
|
2427
|
+
"proc-macro2",
|
|
2428
|
+
"quote",
|
|
2429
|
+
"syn 2.0.119",
|
|
2430
|
+
]
|
|
2431
|
+
|
|
2432
|
+
[[package]]
|
|
2433
|
+
name = "syn"
|
|
2434
|
+
version = "2.0.119"
|
|
2435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
2437
|
+
dependencies = [
|
|
2438
|
+
"proc-macro2",
|
|
2439
|
+
"quote",
|
|
2440
|
+
"unicode-ident",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "syn"
|
|
2445
|
+
version = "3.0.3"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"proc-macro2",
|
|
2450
|
+
"quote",
|
|
2451
|
+
"unicode-ident",
|
|
2452
|
+
]
|
|
2453
|
+
|
|
2454
|
+
[[package]]
|
|
2455
|
+
name = "target-lexicon"
|
|
2456
|
+
version = "0.13.5"
|
|
2457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2458
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2459
|
+
|
|
2460
|
+
[[package]]
|
|
2461
|
+
name = "tempfile"
|
|
2462
|
+
version = "3.27.0"
|
|
2463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2465
|
+
dependencies = [
|
|
2466
|
+
"fastrand",
|
|
2467
|
+
"getrandom 0.4.3",
|
|
2468
|
+
"once_cell",
|
|
2469
|
+
"rustix",
|
|
2470
|
+
"windows-sys",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "thiserror"
|
|
2475
|
+
version = "1.0.69"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"thiserror-impl 1.0.69",
|
|
2480
|
+
]
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "thiserror"
|
|
2484
|
+
version = "2.0.20"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
2487
|
+
dependencies = [
|
|
2488
|
+
"thiserror-impl 2.0.20",
|
|
2489
|
+
]
|
|
2490
|
+
|
|
2491
|
+
[[package]]
|
|
2492
|
+
name = "thiserror-impl"
|
|
2493
|
+
version = "1.0.69"
|
|
2494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2496
|
+
dependencies = [
|
|
2497
|
+
"proc-macro2",
|
|
2498
|
+
"quote",
|
|
2499
|
+
"syn 2.0.119",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "thiserror-impl"
|
|
2504
|
+
version = "2.0.20"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"proc-macro2",
|
|
2509
|
+
"quote",
|
|
2510
|
+
"syn 3.0.3",
|
|
2511
|
+
]
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "tiny_http"
|
|
2515
|
+
version = "0.12.0"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
|
|
2518
|
+
dependencies = [
|
|
2519
|
+
"ascii",
|
|
2520
|
+
"chunked_transfer",
|
|
2521
|
+
"httpdate",
|
|
2522
|
+
"log",
|
|
2523
|
+
]
|
|
2524
|
+
|
|
2525
|
+
[[package]]
|
|
2526
|
+
name = "tinyvec"
|
|
2527
|
+
version = "1.12.0"
|
|
2528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2529
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
2530
|
+
dependencies = [
|
|
2531
|
+
"serde_core",
|
|
2532
|
+
"tinyvec_macros",
|
|
2533
|
+
]
|
|
2534
|
+
|
|
2535
|
+
[[package]]
|
|
2536
|
+
name = "tinyvec_macros"
|
|
2537
|
+
version = "0.1.1"
|
|
2538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2540
|
+
|
|
2541
|
+
[[package]]
|
|
2542
|
+
name = "tokio"
|
|
2543
|
+
version = "1.53.1"
|
|
2544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
2546
|
+
dependencies = [
|
|
2547
|
+
"libc",
|
|
2548
|
+
"mio",
|
|
2549
|
+
"pin-project-lite",
|
|
2550
|
+
"socket2",
|
|
2551
|
+
"windows-sys",
|
|
2552
|
+
]
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "typenum"
|
|
2556
|
+
version = "1.20.1"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "unarray"
|
|
2562
|
+
version = "0.1.4"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "unicode-ident"
|
|
2568
|
+
version = "1.0.24"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2571
|
+
|
|
2572
|
+
[[package]]
|
|
2573
|
+
name = "uuid"
|
|
2574
|
+
version = "1.25.0"
|
|
2575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
+
checksum = "f053576934f05a761a402421fbbe3d425d9366f75f978806a037b3ca481abecc"
|
|
2577
|
+
dependencies = [
|
|
2578
|
+
"getrandom 0.4.3",
|
|
2579
|
+
"js-sys",
|
|
2580
|
+
"wasm-bindgen",
|
|
2581
|
+
]
|
|
2582
|
+
|
|
2583
|
+
[[package]]
|
|
2584
|
+
name = "vcpkg"
|
|
2585
|
+
version = "0.2.15"
|
|
2586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "version_check"
|
|
2591
|
+
version = "0.9.5"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2594
|
+
|
|
2595
|
+
[[package]]
|
|
2596
|
+
name = "wait-timeout"
|
|
2597
|
+
version = "0.2.1"
|
|
2598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2600
|
+
dependencies = [
|
|
2601
|
+
"libc",
|
|
2602
|
+
]
|
|
2603
|
+
|
|
2604
|
+
[[package]]
|
|
2605
|
+
name = "wasi"
|
|
2606
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "wasip2"
|
|
2612
|
+
version = "1.0.4+wasi-0.2.12"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"wit-bindgen",
|
|
2617
|
+
]
|
|
2618
|
+
|
|
2619
|
+
[[package]]
|
|
2620
|
+
name = "wasm-bindgen"
|
|
2621
|
+
version = "0.2.127"
|
|
2622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
2624
|
+
dependencies = [
|
|
2625
|
+
"cfg-if",
|
|
2626
|
+
"once_cell",
|
|
2627
|
+
"rustversion",
|
|
2628
|
+
"wasm-bindgen-macro",
|
|
2629
|
+
"wasm-bindgen-shared",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "wasm-bindgen-macro"
|
|
2634
|
+
version = "0.2.127"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"quote",
|
|
2639
|
+
"wasm-bindgen-macro-support",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "wasm-bindgen-macro-support"
|
|
2644
|
+
version = "0.2.127"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"bumpalo",
|
|
2649
|
+
"proc-macro2",
|
|
2650
|
+
"quote",
|
|
2651
|
+
"syn 2.0.119",
|
|
2652
|
+
"wasm-bindgen-shared",
|
|
2653
|
+
]
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "wasm-bindgen-shared"
|
|
2657
|
+
version = "0.2.127"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"unicode-ident",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "windows-link"
|
|
2666
|
+
version = "0.2.1"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "windows-sys"
|
|
2672
|
+
version = "0.61.2"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"windows-link",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "wit-bindgen"
|
|
2681
|
+
version = "0.57.1"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "wkt"
|
|
2687
|
+
version = "0.14.0"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "efb2b923ccc882312e559ffaa832a055ba9d1ac0cc8e86b3e25453247e4b81d7"
|
|
2690
|
+
dependencies = [
|
|
2691
|
+
"geo-traits",
|
|
2692
|
+
"geo-types",
|
|
2693
|
+
"log",
|
|
2694
|
+
"num-traits",
|
|
2695
|
+
"thiserror 1.0.69",
|
|
2696
|
+
]
|
|
2697
|
+
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "xxhash-rust"
|
|
2700
|
+
version = "0.8.18"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "aee1b19627c7c60102ab80d3a9cbe18de90bfe03bfa6c3715447681f0e8c8af6"
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "zerocopy"
|
|
2706
|
+
version = "0.8.56"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
2709
|
+
dependencies = [
|
|
2710
|
+
"zerocopy-derive",
|
|
2711
|
+
]
|
|
2712
|
+
|
|
2713
|
+
[[package]]
|
|
2714
|
+
name = "zerocopy-derive"
|
|
2715
|
+
version = "0.8.56"
|
|
2716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
2718
|
+
dependencies = [
|
|
2719
|
+
"proc-macro2",
|
|
2720
|
+
"quote",
|
|
2721
|
+
"syn 2.0.119",
|
|
2722
|
+
]
|
|
2723
|
+
|
|
2724
|
+
[[package]]
|
|
2725
|
+
name = "zmij"
|
|
2726
|
+
version = "1.0.23"
|
|
2727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|