shacl 0.1.3__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.
- shacl-0.1.3/Cargo.lock +1218 -0
- shacl-0.1.3/Cargo.toml +41 -0
- shacl-0.1.3/LICENSE-APACHE +202 -0
- shacl-0.1.3/LICENSE-MIT +21 -0
- shacl-0.1.3/PKG-INFO +136 -0
- shacl-0.1.3/README.md +113 -0
- shacl-0.1.3/crates/shacl/Cargo.toml +27 -0
- shacl-0.1.3/crates/shacl/examples/parseprof.rs +118 -0
- shacl-0.1.3/crates/shacl/examples/profile.rs +233 -0
- shacl-0.1.3/crates/shacl/src/datatypes.rs +610 -0
- shacl-0.1.3/crates/shacl/src/error.rs +37 -0
- shacl-0.1.3/crates/shacl/src/inference.rs +396 -0
- shacl-0.1.3/crates/shacl/src/lib.rs +25 -0
- shacl-0.1.3/crates/shacl/src/model/graph.rs +235 -0
- shacl-0.1.3/crates/shacl/src/model/interner.rs +144 -0
- shacl-0.1.3/crates/shacl/src/model/loader.rs +799 -0
- shacl-0.1.3/crates/shacl/src/model/mod.rs +120 -0
- shacl-0.1.3/crates/shacl/src/model/term.rs +582 -0
- shacl-0.1.3/crates/shacl/src/model/vocab.rs +364 -0
- shacl-0.1.3/crates/shacl/src/nodeexpr.rs +897 -0
- shacl-0.1.3/crates/shacl/src/path.rs +587 -0
- shacl-0.1.3/crates/shacl/src/report.rs +718 -0
- shacl-0.1.3/crates/shacl/src/shapes.rs +1233 -0
- shacl-0.1.3/crates/shacl/src/sparql.rs +834 -0
- shacl-0.1.3/crates/shacl/src/validate.rs +1308 -0
- shacl-0.1.3/crates/shacl/src/valueset.rs +295 -0
- shacl-0.1.3/crates/shacl/tests/limits.rs +185 -0
- shacl-0.1.3/crates/shacl/tests/recursion.rs +167 -0
- shacl-0.1.3/crates/shacl/tests/w3c.rs +671 -0
- shacl-0.1.3/crates/shacl-python/Cargo.toml +26 -0
- shacl-0.1.3/crates/shacl-python/LICENSE-APACHE +202 -0
- shacl-0.1.3/crates/shacl-python/LICENSE-MIT +21 -0
- shacl-0.1.3/crates/shacl-python/README.md +113 -0
- shacl-0.1.3/crates/shacl-python/shacl.pyi +137 -0
- shacl-0.1.3/crates/shacl-python/src/lib.rs +443 -0
- shacl-0.1.3/crates/shacl-python/tests/test_shacl.py +382 -0
- shacl-0.1.3/pyproject.toml +33 -0
shacl-0.1.3/Cargo.lock
ADDED
|
@@ -0,0 +1,1218 @@
|
|
|
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 = "anstream"
|
|
28
|
+
version = "1.0.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"anstyle",
|
|
33
|
+
"anstyle-parse",
|
|
34
|
+
"anstyle-query",
|
|
35
|
+
"anstyle-wincon",
|
|
36
|
+
"colorchoice",
|
|
37
|
+
"is_terminal_polyfill",
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle"
|
|
43
|
+
version = "1.0.14"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "anstyle-parse"
|
|
49
|
+
version = "1.0.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"utf8parse",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-query"
|
|
58
|
+
version = "1.1.5"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"windows-sys 0.61.2",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-wincon"
|
|
67
|
+
version = "3.0.11"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"anstyle",
|
|
72
|
+
"once_cell_polyfill",
|
|
73
|
+
"windows-sys 0.61.2",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "anyhow"
|
|
78
|
+
version = "1.0.104"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "base64"
|
|
84
|
+
version = "0.23.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "block-buffer"
|
|
90
|
+
version = "0.10.4"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"generic-array",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "bytes"
|
|
99
|
+
version = "1.12.1"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "cc"
|
|
105
|
+
version = "1.4.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "9066c49992464636f92905fa096ec58baaa4d57ec19a5c096c68d3e25ef3d136"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"find-msvc-tools",
|
|
110
|
+
"shlex",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "cfg-if"
|
|
115
|
+
version = "1.0.4"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "clap"
|
|
121
|
+
version = "4.6.6"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"clap_builder",
|
|
126
|
+
"clap_derive",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "clap_builder"
|
|
131
|
+
version = "4.6.6"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"anstream",
|
|
136
|
+
"anstyle",
|
|
137
|
+
"clap_lex",
|
|
138
|
+
"strsim",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "clap_derive"
|
|
143
|
+
version = "4.6.4"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"heck",
|
|
148
|
+
"proc-macro2",
|
|
149
|
+
"quote",
|
|
150
|
+
"syn 3.0.3",
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "clap_lex"
|
|
155
|
+
version = "1.1.0"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "colorchoice"
|
|
161
|
+
version = "1.0.5"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "cpufeatures"
|
|
167
|
+
version = "0.2.17"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"libc",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "crc32fast"
|
|
176
|
+
version = "1.5.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"cfg-if",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "crossbeam-deque"
|
|
185
|
+
version = "0.8.7"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"crossbeam-epoch",
|
|
190
|
+
"crossbeam-utils",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "crossbeam-epoch"
|
|
195
|
+
version = "0.9.20"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"crossbeam-utils",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "crossbeam-utils"
|
|
204
|
+
version = "0.8.22"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "crypto-common"
|
|
210
|
+
version = "0.1.7"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"generic-array",
|
|
215
|
+
"typenum",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "digest"
|
|
220
|
+
version = "0.10.7"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"block-buffer",
|
|
225
|
+
"crypto-common",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "either"
|
|
230
|
+
version = "1.17.0"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "equivalent"
|
|
236
|
+
version = "1.0.2"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "find-msvc-tools"
|
|
242
|
+
version = "0.1.10"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "flate2"
|
|
248
|
+
version = "1.1.9"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"crc32fast",
|
|
253
|
+
"miniz_oxide",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "foldhash"
|
|
258
|
+
version = "0.2.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "generic-array"
|
|
264
|
+
version = "0.14.7"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"typenum",
|
|
269
|
+
"version_check",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "getrandom"
|
|
274
|
+
version = "0.2.17"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"cfg-if",
|
|
279
|
+
"libc",
|
|
280
|
+
"wasi",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "getrandom"
|
|
285
|
+
version = "0.3.4"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"cfg-if",
|
|
290
|
+
"libc",
|
|
291
|
+
"r-efi",
|
|
292
|
+
"wasip2",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "hashbrown"
|
|
297
|
+
version = "0.16.1"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"allocator-api2",
|
|
302
|
+
"equivalent",
|
|
303
|
+
"foldhash",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "heck"
|
|
308
|
+
version = "0.5.0"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "hex"
|
|
314
|
+
version = "0.4.3"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "http"
|
|
320
|
+
version = "1.5.0"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"bytes",
|
|
325
|
+
"itoa",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "httparse"
|
|
330
|
+
version = "1.10.1"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "is_terminal_polyfill"
|
|
336
|
+
version = "1.70.2"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "itoa"
|
|
342
|
+
version = "1.0.18"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "json-event-parser"
|
|
348
|
+
version = "0.2.3"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "574b0cd5e90ee2ba03a66d0611fc9a09c9a0c28b2ecc2dc8a181dd31a53ca5d7"
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "libc"
|
|
354
|
+
version = "0.2.189"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "libmimalloc-sys"
|
|
360
|
+
version = "0.1.49"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"cc",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "log"
|
|
369
|
+
version = "0.4.33"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "md-5"
|
|
375
|
+
version = "0.10.6"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"cfg-if",
|
|
380
|
+
"digest",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "memchr"
|
|
385
|
+
version = "2.8.3"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "mimalloc"
|
|
391
|
+
version = "0.1.52"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"libmimalloc-sys",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "miniz_oxide"
|
|
400
|
+
version = "0.8.9"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"adler2",
|
|
405
|
+
"simd-adler32",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "once_cell"
|
|
410
|
+
version = "1.21.4"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "once_cell_polyfill"
|
|
416
|
+
version = "1.70.2"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "oxilangtag"
|
|
422
|
+
version = "0.1.6"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "5d3b4eb570abd4a1dcb062c31fd37b832264d9dc7292c3e69acfe926c87b063f"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"serde",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "oxiri"
|
|
431
|
+
version = "0.2.11"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "oxjsonld"
|
|
437
|
+
version = "0.2.5"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "f6e1380a504a8571763f13b8bcad629ff90d0300d47d8a519f3c6c599625840e"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"json-event-parser",
|
|
442
|
+
"oxiri",
|
|
443
|
+
"oxrdf",
|
|
444
|
+
"ryu-js",
|
|
445
|
+
"thiserror",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "oxrdf"
|
|
450
|
+
version = "0.3.3"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "0afd5c28e4a399c57ee2bc3accd40c7b671fdc7b6537499f14e95b265af7d7e0"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"hex",
|
|
455
|
+
"oxilangtag",
|
|
456
|
+
"oxiri",
|
|
457
|
+
"oxsdatatypes",
|
|
458
|
+
"rand",
|
|
459
|
+
"sha2",
|
|
460
|
+
"thiserror",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "oxrdfio"
|
|
465
|
+
version = "0.2.5"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "696223589ecbcab06b1a5df9b527dc25b0c656160cca38752fdb3878a5d3dd03"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"oxjsonld",
|
|
470
|
+
"oxrdf",
|
|
471
|
+
"oxrdfxml",
|
|
472
|
+
"oxttl",
|
|
473
|
+
"thiserror",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "oxrdfxml"
|
|
478
|
+
version = "0.2.3"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "cd5516ae083d09bc57ec65ed5ee97701481725de6ffaa83d968ab42a96157ba1"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"oxilangtag",
|
|
483
|
+
"oxiri",
|
|
484
|
+
"oxrdf",
|
|
485
|
+
"quick-xml",
|
|
486
|
+
"thiserror",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "oxsdatatypes"
|
|
491
|
+
version = "0.2.2"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "06fa874d87eae638daae9b4e3198864fe2cce68589f227c0b2cf5b62b1530516"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"thiserror",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "oxttl"
|
|
500
|
+
version = "0.2.3"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "f03fd471bd54c23d76631c0a2677aa4bb308d905f6e491ee35dcb0732b7c5c6c"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"memchr",
|
|
505
|
+
"oxilangtag",
|
|
506
|
+
"oxiri",
|
|
507
|
+
"oxrdf",
|
|
508
|
+
"thiserror",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "peg"
|
|
513
|
+
version = "0.8.6"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "0aad070be5b63aa72103f2fcdd70a83adbd5e90112ce5b574171ff1c65501773"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"peg-macros",
|
|
518
|
+
"peg-runtime",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "peg-macros"
|
|
523
|
+
version = "0.8.6"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "ddd8ef6825cae95355031ae26a99b616a2a21f22ba2de0197c43dfb05acbe7ee"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"peg-runtime",
|
|
528
|
+
"proc-macro2",
|
|
529
|
+
"quote",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "peg-runtime"
|
|
534
|
+
version = "0.8.6"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "7011d97b484a5ebdc4b1fdb3b12d5e4bbbea56e9d22b688f2e79e04b65a7d8a6"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "percent-encoding"
|
|
540
|
+
version = "2.3.2"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "portable-atomic"
|
|
546
|
+
version = "1.14.0"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "ppv-lite86"
|
|
552
|
+
version = "0.2.21"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"zerocopy",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "proc-macro2"
|
|
561
|
+
version = "1.0.107"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"unicode-ident",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "pyo3"
|
|
570
|
+
version = "0.29.2"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"libc",
|
|
575
|
+
"once_cell",
|
|
576
|
+
"portable-atomic",
|
|
577
|
+
"pyo3-build-config",
|
|
578
|
+
"pyo3-ffi",
|
|
579
|
+
"pyo3-macros",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "pyo3-build-config"
|
|
584
|
+
version = "0.29.2"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"target-lexicon",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "pyo3-ffi"
|
|
593
|
+
version = "0.29.2"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"libc",
|
|
598
|
+
"pyo3-build-config",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "pyo3-macros"
|
|
603
|
+
version = "0.29.2"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"proc-macro2",
|
|
608
|
+
"pyo3-macros-backend",
|
|
609
|
+
"quote",
|
|
610
|
+
"syn 2.0.119",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "pyo3-macros-backend"
|
|
615
|
+
version = "0.29.2"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"heck",
|
|
620
|
+
"proc-macro2",
|
|
621
|
+
"quote",
|
|
622
|
+
"syn 2.0.119",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "quick-xml"
|
|
627
|
+
version = "0.37.5"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"memchr",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "quote"
|
|
636
|
+
version = "1.0.47"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"proc-macro2",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "r-efi"
|
|
645
|
+
version = "5.3.0"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "rand"
|
|
651
|
+
version = "0.9.5"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"rand_chacha",
|
|
656
|
+
"rand_core",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "rand_chacha"
|
|
661
|
+
version = "0.9.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"ppv-lite86",
|
|
666
|
+
"rand_core",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "rand_core"
|
|
671
|
+
version = "0.9.5"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"getrandom 0.3.4",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "rayon"
|
|
680
|
+
version = "1.12.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"either",
|
|
685
|
+
"rayon-core",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "rayon-core"
|
|
690
|
+
version = "1.13.0"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"crossbeam-deque",
|
|
695
|
+
"crossbeam-utils",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "regex"
|
|
700
|
+
version = "1.13.1"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"aho-corasick",
|
|
705
|
+
"memchr",
|
|
706
|
+
"regex-automata",
|
|
707
|
+
"regex-syntax",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "regex-automata"
|
|
712
|
+
version = "0.4.18"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"aho-corasick",
|
|
717
|
+
"memchr",
|
|
718
|
+
"regex-syntax",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "regex-syntax"
|
|
723
|
+
version = "0.8.11"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "ring"
|
|
729
|
+
version = "0.17.14"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"cc",
|
|
734
|
+
"cfg-if",
|
|
735
|
+
"getrandom 0.2.17",
|
|
736
|
+
"libc",
|
|
737
|
+
"untrusted",
|
|
738
|
+
"windows-sys 0.52.0",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "rustc-hash"
|
|
743
|
+
version = "2.1.3"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "rustls"
|
|
749
|
+
version = "0.23.43"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"log",
|
|
754
|
+
"once_cell",
|
|
755
|
+
"ring",
|
|
756
|
+
"rustls-pki-types",
|
|
757
|
+
"rustls-webpki",
|
|
758
|
+
"subtle",
|
|
759
|
+
"zeroize",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "rustls-pki-types"
|
|
764
|
+
version = "1.15.1"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"zeroize",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "rustls-webpki"
|
|
773
|
+
version = "0.103.13"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"ring",
|
|
778
|
+
"rustls-pki-types",
|
|
779
|
+
"untrusted",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "ryu-js"
|
|
784
|
+
version = "1.0.3"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "04d056b875a9d2e6cb9a61d127afee9ac5999b9f87bcb32079d1318e505be714"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "serde"
|
|
790
|
+
version = "1.0.229"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"serde_core",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "serde_core"
|
|
799
|
+
version = "1.0.229"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"serde_derive",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "serde_derive"
|
|
808
|
+
version = "1.0.229"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"proc-macro2",
|
|
813
|
+
"quote",
|
|
814
|
+
"syn 3.0.3",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "sha1"
|
|
819
|
+
version = "0.10.7"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"cfg-if",
|
|
824
|
+
"cpufeatures",
|
|
825
|
+
"digest",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "sha2"
|
|
830
|
+
version = "0.10.9"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"cfg-if",
|
|
835
|
+
"cpufeatures",
|
|
836
|
+
"digest",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "shacl"
|
|
841
|
+
version = "0.1.3"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"anyhow",
|
|
844
|
+
"flate2",
|
|
845
|
+
"foldhash",
|
|
846
|
+
"hashbrown",
|
|
847
|
+
"mimalloc",
|
|
848
|
+
"oxrdf",
|
|
849
|
+
"oxrdfio",
|
|
850
|
+
"oxsdatatypes",
|
|
851
|
+
"oxttl",
|
|
852
|
+
"rayon",
|
|
853
|
+
"regex",
|
|
854
|
+
"spareval",
|
|
855
|
+
"spargebra",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "shacl-cli"
|
|
860
|
+
version = "0.1.3"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"anyhow",
|
|
863
|
+
"clap",
|
|
864
|
+
"flate2",
|
|
865
|
+
"mimalloc",
|
|
866
|
+
"shacl",
|
|
867
|
+
"ureq",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "shacl-python"
|
|
872
|
+
version = "0.1.3"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"pyo3",
|
|
875
|
+
"shacl",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "shlex"
|
|
880
|
+
version = "2.0.1"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "simd-adler32"
|
|
886
|
+
version = "0.3.10"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "sparesults"
|
|
892
|
+
version = "0.3.3"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "7e13362decdcbeb3fefadff1631238c835c112027221e83d217cc5779f5a81c2"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"json-event-parser",
|
|
897
|
+
"memchr",
|
|
898
|
+
"oxrdf",
|
|
899
|
+
"quick-xml",
|
|
900
|
+
"thiserror",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "spareval"
|
|
905
|
+
version = "0.2.6"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "c8eab80b96dc836e4cf8fda72daa67ccc0244dc5303be5d4566e8fd04adbdde5"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"hex",
|
|
910
|
+
"json-event-parser",
|
|
911
|
+
"md-5",
|
|
912
|
+
"oxiri",
|
|
913
|
+
"oxrdf",
|
|
914
|
+
"oxsdatatypes",
|
|
915
|
+
"rand",
|
|
916
|
+
"regex",
|
|
917
|
+
"rustc-hash",
|
|
918
|
+
"sha1",
|
|
919
|
+
"sha2",
|
|
920
|
+
"sparesults",
|
|
921
|
+
"spargebra",
|
|
922
|
+
"sparopt",
|
|
923
|
+
"thiserror",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "spargebra"
|
|
928
|
+
version = "0.4.6"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "46715eb957d1fe960cbbc0b713da8f78e2cb19df315b48fb09c9467a1c84f656"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"oxilangtag",
|
|
933
|
+
"oxiri",
|
|
934
|
+
"oxrdf",
|
|
935
|
+
"peg",
|
|
936
|
+
"rand",
|
|
937
|
+
"thiserror",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "sparopt"
|
|
942
|
+
version = "0.3.6"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "aed7a854b8ea67618f8ce69aabb0e904d7704226060e9d5a2930eb3136c3fa3b"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"oxrdf",
|
|
947
|
+
"rand",
|
|
948
|
+
"spargebra",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "strsim"
|
|
953
|
+
version = "0.11.1"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "subtle"
|
|
959
|
+
version = "2.6.1"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "syn"
|
|
965
|
+
version = "2.0.119"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"proc-macro2",
|
|
970
|
+
"quote",
|
|
971
|
+
"unicode-ident",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "syn"
|
|
976
|
+
version = "3.0.3"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"proc-macro2",
|
|
981
|
+
"quote",
|
|
982
|
+
"unicode-ident",
|
|
983
|
+
]
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "target-lexicon"
|
|
987
|
+
version = "0.13.5"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "thiserror"
|
|
993
|
+
version = "2.0.19"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"thiserror-impl",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "thiserror-impl"
|
|
1002
|
+
version = "2.0.19"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"proc-macro2",
|
|
1007
|
+
"quote",
|
|
1008
|
+
"syn 3.0.3",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "typenum"
|
|
1013
|
+
version = "1.20.1"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "unicode-ident"
|
|
1019
|
+
version = "1.0.24"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "untrusted"
|
|
1025
|
+
version = "0.9.0"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "ureq"
|
|
1031
|
+
version = "3.4.0"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "972d7902c8735f2695410b8aed7df6ed12a47394aa1c8d7af49f0497b731a94d"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"base64",
|
|
1036
|
+
"flate2",
|
|
1037
|
+
"log",
|
|
1038
|
+
"percent-encoding",
|
|
1039
|
+
"rustls",
|
|
1040
|
+
"rustls-pki-types",
|
|
1041
|
+
"ureq-proto",
|
|
1042
|
+
"utf8-zero",
|
|
1043
|
+
"webpki-roots",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "ureq-proto"
|
|
1048
|
+
version = "0.6.1"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "da5f78b09e6941e1a0f2e30e695e4b120377b54d5e0aec11b594bb57b3971613"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"base64",
|
|
1053
|
+
"http",
|
|
1054
|
+
"httparse",
|
|
1055
|
+
"log",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "utf8-zero"
|
|
1060
|
+
version = "0.8.1"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "utf8parse"
|
|
1066
|
+
version = "0.2.2"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "version_check"
|
|
1072
|
+
version = "0.9.5"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "wasi"
|
|
1078
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "wasip2"
|
|
1084
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1087
|
+
dependencies = [
|
|
1088
|
+
"wit-bindgen",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "webpki-roots"
|
|
1093
|
+
version = "1.0.9"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"rustls-pki-types",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "windows-link"
|
|
1102
|
+
version = "0.2.1"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "windows-sys"
|
|
1108
|
+
version = "0.52.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"windows-targets",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "windows-sys"
|
|
1117
|
+
version = "0.61.2"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"windows-link",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "windows-targets"
|
|
1126
|
+
version = "0.52.6"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"windows_aarch64_gnullvm",
|
|
1131
|
+
"windows_aarch64_msvc",
|
|
1132
|
+
"windows_i686_gnu",
|
|
1133
|
+
"windows_i686_gnullvm",
|
|
1134
|
+
"windows_i686_msvc",
|
|
1135
|
+
"windows_x86_64_gnu",
|
|
1136
|
+
"windows_x86_64_gnullvm",
|
|
1137
|
+
"windows_x86_64_msvc",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "windows_aarch64_gnullvm"
|
|
1142
|
+
version = "0.52.6"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "windows_aarch64_msvc"
|
|
1148
|
+
version = "0.52.6"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "windows_i686_gnu"
|
|
1154
|
+
version = "0.52.6"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "windows_i686_gnullvm"
|
|
1160
|
+
version = "0.52.6"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "windows_i686_msvc"
|
|
1166
|
+
version = "0.52.6"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "windows_x86_64_gnu"
|
|
1172
|
+
version = "0.52.6"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "windows_x86_64_gnullvm"
|
|
1178
|
+
version = "0.52.6"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "windows_x86_64_msvc"
|
|
1184
|
+
version = "0.52.6"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "wit-bindgen"
|
|
1190
|
+
version = "0.57.1"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "zerocopy"
|
|
1196
|
+
version = "0.8.56"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"zerocopy-derive",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "zerocopy-derive"
|
|
1205
|
+
version = "0.8.56"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1208
|
+
dependencies = [
|
|
1209
|
+
"proc-macro2",
|
|
1210
|
+
"quote",
|
|
1211
|
+
"syn 2.0.119",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "zeroize"
|
|
1216
|
+
version = "1.9.0"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|